diff --git a/src/components/combo_box/__snapshots__/combo_box.test.tsx.snap b/src/components/combo_box/__snapshots__/combo_box.test.tsx.snap index cd19e4e990d..01897461b0a 100644 --- a/src/components/combo_box/__snapshots__/combo_box.test.tsx.snap +++ b/src/components/combo_box/__snapshots__/combo_box.test.tsx.snap @@ -61,6 +61,7 @@ exports[`EuiComboBox is rendered 1`] = ` exports[`props aria-label attribute is rendered 1`] = `
extends Component< // Refs comboBoxRefInstance: RefInstance = null; comboBoxRefCallback: RefCallback = (ref) => { - // IE11 doesn't support the `relatedTarget` event property for blur events - // but does add it for focusout. React doesn't support `onFocusOut` so here we are. - if (this.comboBoxRefInstance) { - this.comboBoxRefInstance.removeEventListener( - 'focusout', - this.onContainerBlur - ); - } - this.comboBoxRefInstance = ref; if (this.comboBoxRefInstance) { - this.comboBoxRefInstance.addEventListener( - 'focusout', - this.onContainerBlur - ); const comboBoxBounds = this.comboBoxRefInstance.getBoundingClientRect(); this.setState({ width: comboBoxBounds.width, @@ -549,18 +536,9 @@ export class EuiComboBox extends Component< } }; - onContainerBlur: EventListener = (event) => { + onContainerBlur: FocusEventHandler = (event) => { // close the options list, unless the user clicked on an option - - /** - * FireFox returns `relatedTarget` as `null` for security reasons, but provides a proprietary `explicitOriginalTarget`. - * @see https://developer.mozilla.org/en-US/docs/Web/API/Event/explicitOriginalTarget - */ - const focusEvent = event as FocusEvent & { - explicitOriginalTarget: EventTarget; - }; - const relatedTarget = (focusEvent.relatedTarget || - focusEvent.explicitOriginalTarget) as Node | null; + const { relatedTarget } = event; const focusedInOptionsList = relatedTarget && @@ -575,9 +553,7 @@ export class EuiComboBox extends Component< this.closeList(); if (this.props.onBlur) { - this.props.onBlur( - (event as unknown) as React.FocusEvent - ); + this.props.onBlur(event); } this.setState({ hasFocus: false }); @@ -1046,6 +1022,7 @@ export class EuiComboBox extends Component< className={classes} data-test-subj={dataTestSubj} onKeyDown={this.onKeyDown} + onBlur={this.onContainerBlur} ref={this.comboBoxRefCallback} > = ({ autoSize = true, ...rest }) => { - // Chrome will properly size the input based on the max value, but FF & IE do not. + // Chrome will properly size the input based on the max value, but FF does not. // Calculate the width of the input based on highest number of characters. // Add 2 to accommodate for input stepper const widthStyle = autoSize diff --git a/src/components/icon/__snapshots__/icon.test.tsx.snap b/src/components/icon/__snapshots__/icon.test.tsx.snap index beef272277f..82b0fe2d19c 100644 --- a/src/components/icon/__snapshots__/icon.test.tsx.snap +++ b/src/components/icon/__snapshots__/icon.test.tsx.snap @@ -7,7 +7,6 @@ exports[`EuiIcon is rendered 1`] = ` data-icon-type="search" data-is-loaded="true" data-test-subj="test subject string" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -26,7 +25,6 @@ exports[`EuiIcon props color #885522 is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-customColor-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" style="color: rgb(136, 85, 34);" @@ -46,7 +44,6 @@ exports[`EuiIcon props color #fde is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-customColor-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" style="color: rgb(255, 221, 238);" @@ -66,7 +63,6 @@ exports[`EuiIcon props color accent is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-accent-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -85,7 +81,6 @@ exports[`EuiIcon props color danger is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-danger-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -104,7 +99,6 @@ exports[`EuiIcon props color default is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-default-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -123,7 +117,6 @@ exports[`EuiIcon props color ghost is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-ghost-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -142,7 +135,6 @@ exports[`EuiIcon props color hsla(270, 60%, 70%, 0.9) is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-customColor-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" style="color: hsla(270, 60%, 70%, 0.9);" @@ -162,7 +154,6 @@ exports[`EuiIcon props color inherit is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-inherit-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -181,7 +172,6 @@ exports[`EuiIcon props color primary is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-primary-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -200,7 +190,6 @@ exports[`EuiIcon props color rgb(100, 150, 200) is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-customColor-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" style="color: rgb(100, 150, 200);" @@ -220,7 +209,6 @@ exports[`EuiIcon props color subdued is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-subdued-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -239,7 +227,6 @@ exports[`EuiIcon props color success is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-success-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -258,7 +245,6 @@ exports[`EuiIcon props color text is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-text-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -277,7 +263,6 @@ exports[`EuiIcon props color warning is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-warning-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -296,7 +281,6 @@ exports[`EuiIcon props other props are passed through to the icon 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -318,7 +302,6 @@ exports[`EuiIcon props size \${size} is rendered 1`] = ` class="euiIcon emotion-euiIcon-original-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -337,7 +320,6 @@ exports[`EuiIcon props size \${size} is rendered 2`] = ` class="euiIcon emotion-euiIcon-s-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -356,7 +338,6 @@ exports[`EuiIcon props size \${size} is rendered 3`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -375,7 +356,6 @@ exports[`EuiIcon props size \${size} is rendered 4`] = ` class="euiIcon emotion-euiIcon-l-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -394,7 +374,6 @@ exports[`EuiIcon props size \${size} is rendered 5`] = ` class="euiIcon emotion-euiIcon-xl-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -413,7 +392,6 @@ exports[`EuiIcon props size \${size} is rendered 6`] = ` class="euiIcon emotion-euiIcon-xxl-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -432,7 +410,6 @@ exports[`EuiIcon props tabIndex renders focusable="false" when -1 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" tabindex="-1" @@ -452,7 +429,6 @@ exports[`EuiIcon props tabIndex renders focusable="false" when not provided 1`] class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -471,7 +447,6 @@ exports[`EuiIcon props tabIndex renders focusable="true" when 0 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="true" height="16" role="img" tabindex="0" @@ -491,7 +466,6 @@ exports[`EuiIcon props title and titleId are passed and generate an aria-labelle class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -515,7 +489,6 @@ exports[`EuiIcon props type accessibility is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="accessibility" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -534,7 +507,6 @@ exports[`EuiIcon props type addDataApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="addDataApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -557,7 +529,6 @@ exports[`EuiIcon props type advancedSettingsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="advancedSettingsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -594,7 +565,6 @@ exports[`EuiIcon props type agentApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="agentApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -617,7 +587,6 @@ exports[`EuiIcon props type aggregate is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="aggregate" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -637,7 +606,6 @@ exports[`EuiIcon props type alert is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="alert" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -658,7 +626,6 @@ exports[`EuiIcon props type analyzeEvent is rendered 1`] = ` data-icon-type="analyzeEvent" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -679,7 +646,6 @@ exports[`EuiIcon props type annotation is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="annotation" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -698,7 +664,6 @@ exports[`EuiIcon props type apmApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="apmApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -721,7 +686,6 @@ exports[`EuiIcon props type apmTrace is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="apmTrace" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -740,7 +704,6 @@ exports[`EuiIcon props type appSearchApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="appSearchApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -765,7 +728,6 @@ exports[`EuiIcon props type apps is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="apps" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -785,7 +747,6 @@ exports[`EuiIcon props type arrowDown is rendered 1`] = ` data-icon-type="arrowDown" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -806,7 +767,6 @@ exports[`EuiIcon props type arrowEnd is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="arrowEnd" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -831,7 +791,6 @@ exports[`EuiIcon props type arrowLeft is rendered 1`] = ` data-icon-type="arrowLeft" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -853,7 +812,6 @@ exports[`EuiIcon props type arrowRight is rendered 1`] = ` data-icon-type="arrowRight" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -874,7 +832,6 @@ exports[`EuiIcon props type arrowStart is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="arrowStart" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -899,7 +856,6 @@ exports[`EuiIcon props type arrowUp is rendered 1`] = ` data-icon-type="arrowUp" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -920,7 +876,6 @@ exports[`EuiIcon props type asterisk is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="asterisk" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -939,7 +894,6 @@ exports[`EuiIcon props type auditbeatApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="auditbeatApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -962,7 +916,6 @@ exports[`EuiIcon props type beaker is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="beaker" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -981,7 +934,6 @@ exports[`EuiIcon props type bell is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="bell" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1001,7 +953,6 @@ exports[`EuiIcon props type bellSlash is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="bellSlash" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1020,7 +971,6 @@ exports[`EuiIcon props type bolt is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="bolt" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1039,7 +989,6 @@ exports[`EuiIcon props type boxesHorizontal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="boxesHorizontal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1058,7 +1007,6 @@ exports[`EuiIcon props type boxesVertical is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="boxesVertical" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1077,7 +1025,6 @@ exports[`EuiIcon props type branch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="branch" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1096,7 +1043,6 @@ exports[`EuiIcon props type branchUser is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="branchUser" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1120,7 +1066,6 @@ exports[`EuiIcon props type broom is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="broom" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1139,7 +1084,6 @@ exports[`EuiIcon props type brush is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="brush" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1158,7 +1102,6 @@ exports[`EuiIcon props type bug is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="bug" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1177,7 +1120,6 @@ exports[`EuiIcon props type bullseye is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="bullseye" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1196,7 +1138,6 @@ exports[`EuiIcon props type calendar is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="calendar" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1216,7 +1157,6 @@ exports[`EuiIcon props type canvasApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="canvasApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1240,7 +1180,6 @@ exports[`EuiIcon props type casesApp is rendered 1`] = ` data-icon-type="casesApp" data-is-loaded="true" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1269,7 +1208,6 @@ exports[`EuiIcon props type check is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="check" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1289,7 +1227,6 @@ exports[`EuiIcon props type checkInCircleFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="checkInCircleFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1309,7 +1246,6 @@ exports[`EuiIcon props type cheer is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cheer" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1328,7 +1264,6 @@ exports[`EuiIcon props type classificationJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="classificationJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1351,7 +1286,6 @@ exports[`EuiIcon props type clock is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="clock" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1371,7 +1305,6 @@ exports[`EuiIcon props type cloudDrizzle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cloudDrizzle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1390,7 +1323,6 @@ exports[`EuiIcon props type cloudStormy is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cloudStormy" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1409,7 +1341,6 @@ exports[`EuiIcon props type cloudSunny is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cloudSunny" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1429,7 +1360,6 @@ exports[`EuiIcon props type cluster is rendered 1`] = ` data-icon-type="cluster" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1450,7 +1380,6 @@ exports[`EuiIcon props type codeApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="codeApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1473,7 +1402,6 @@ exports[`EuiIcon props type color is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="color" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1492,7 +1420,6 @@ exports[`EuiIcon props type compute is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="compute" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1518,7 +1445,6 @@ exports[`EuiIcon props type console is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="console" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1537,7 +1463,6 @@ exports[`EuiIcon props type consoleApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="consoleApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1564,7 +1489,6 @@ exports[`EuiIcon props type container is rendered 1`] = ` data-icon-type="container" data-is-loaded="true" fill="none" - focusable="false" role="img" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" @@ -1583,7 +1507,6 @@ exports[`EuiIcon props type continuityAbove is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="continuityAbove" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1602,7 +1525,6 @@ exports[`EuiIcon props type continuityAboveBelow is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="continuityAboveBelow" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1621,7 +1543,6 @@ exports[`EuiIcon props type continuityBelow is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="continuityBelow" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1640,7 +1561,6 @@ exports[`EuiIcon props type continuityWithin is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="continuityWithin" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1659,7 +1579,6 @@ exports[`EuiIcon props type controlsHorizontal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="controlsHorizontal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1679,7 +1598,6 @@ exports[`EuiIcon props type controlsVertical is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="controlsVertical" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1699,7 +1617,6 @@ exports[`EuiIcon props type copy is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="copy" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1721,7 +1638,6 @@ exports[`EuiIcon props type copyClipboard is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="copyClipboard" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1743,7 +1659,6 @@ exports[`EuiIcon props type createAdvancedJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="createAdvancedJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1766,7 +1681,6 @@ exports[`EuiIcon props type createMultiMetricJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="createMultiMetricJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1789,7 +1703,6 @@ exports[`EuiIcon props type createPopulationJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="createPopulationJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1812,7 +1725,6 @@ exports[`EuiIcon props type createSingleMetricJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="createSingleMetricJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1835,7 +1747,6 @@ exports[`EuiIcon props type cross is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cross" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1854,7 +1765,6 @@ exports[`EuiIcon props type crossClusterReplicationApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="crossClusterReplicationApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1877,7 +1787,6 @@ exports[`EuiIcon props type crossInACircleFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="crossInACircleFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1896,7 +1805,6 @@ exports[`EuiIcon props type crosshairs is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="crosshairs" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1915,7 +1823,6 @@ exports[`EuiIcon props type currency is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="currency" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1934,7 +1841,6 @@ exports[`EuiIcon props type cut is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="cut" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -1954,7 +1860,6 @@ exports[`EuiIcon props type dashboardApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="dashboardApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -1984,7 +1889,6 @@ exports[`EuiIcon props type dataVisualizer is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="dataVisualizer" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -2007,7 +1911,6 @@ exports[`EuiIcon props type database is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="database" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2026,7 +1929,6 @@ exports[`EuiIcon props type desktop is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="desktop" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2050,7 +1952,6 @@ exports[`EuiIcon props type devToolsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="devToolsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -2073,7 +1974,6 @@ exports[`EuiIcon props type discoverApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="discoverApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -2096,7 +1996,6 @@ exports[`EuiIcon props type document is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="document" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2115,7 +2014,6 @@ exports[`EuiIcon props type documentEdit is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="documentEdit" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2134,7 +2032,6 @@ exports[`EuiIcon props type documentation is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="documentation" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2159,7 +2056,6 @@ exports[`EuiIcon props type documents is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="documents" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2178,7 +2074,6 @@ exports[`EuiIcon props type dot is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="dot" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2200,7 +2095,6 @@ exports[`EuiIcon props type doubleArrowLeft is rendered 1`] = ` data-icon-type="doubleArrowLeft" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2227,7 +2121,6 @@ exports[`EuiIcon props type doubleArrowRight is rendered 1`] = ` data-icon-type="doubleArrowRight" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2253,7 +2146,6 @@ exports[`EuiIcon props type download is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="download" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2275,7 +2167,6 @@ exports[`EuiIcon props type editorAlignCenter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorAlignCenter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2294,7 +2185,6 @@ exports[`EuiIcon props type editorAlignLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorAlignLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2313,7 +2203,6 @@ exports[`EuiIcon props type editorAlignRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorAlignRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2332,7 +2221,6 @@ exports[`EuiIcon props type editorBold is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorBold" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2352,7 +2240,6 @@ exports[`EuiIcon props type editorChecklist is rendered 1`] = ` data-icon-type="editorChecklist" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2371,7 +2258,6 @@ exports[`EuiIcon props type editorCodeBlock is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorCodeBlock" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2390,7 +2276,6 @@ exports[`EuiIcon props type editorComment is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorComment" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2409,7 +2294,6 @@ exports[`EuiIcon props type editorDistributeHorizontal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorDistributeHorizontal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2428,7 +2312,6 @@ exports[`EuiIcon props type editorDistributeVertical is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorDistributeVertical" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2447,7 +2330,6 @@ exports[`EuiIcon props type editorHeading is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorHeading" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2466,7 +2348,6 @@ exports[`EuiIcon props type editorItalic is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItalic" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2485,7 +2366,6 @@ exports[`EuiIcon props type editorItemAlignBottom is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignBottom" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2504,7 +2384,6 @@ exports[`EuiIcon props type editorItemAlignCenter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignCenter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2523,7 +2402,6 @@ exports[`EuiIcon props type editorItemAlignLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2542,7 +2420,6 @@ exports[`EuiIcon props type editorItemAlignMiddle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignMiddle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2561,7 +2438,6 @@ exports[`EuiIcon props type editorItemAlignRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2580,7 +2456,6 @@ exports[`EuiIcon props type editorItemAlignTop is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorItemAlignTop" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2599,7 +2474,6 @@ exports[`EuiIcon props type editorLink is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorLink" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2618,7 +2492,6 @@ exports[`EuiIcon props type editorOrderedList is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorOrderedList" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2637,7 +2510,6 @@ exports[`EuiIcon props type editorPositionBottomLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorPositionBottomLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2656,7 +2528,6 @@ exports[`EuiIcon props type editorPositionBottomRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorPositionBottomRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2675,7 +2546,6 @@ exports[`EuiIcon props type editorPositionTopLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorPositionTopLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2694,7 +2564,6 @@ exports[`EuiIcon props type editorPositionTopRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorPositionTopRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2713,7 +2582,6 @@ exports[`EuiIcon props type editorRedo is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorRedo" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2732,7 +2600,6 @@ exports[`EuiIcon props type editorStrike is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorStrike" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2751,7 +2618,6 @@ exports[`EuiIcon props type editorTable is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorTable" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2770,7 +2636,6 @@ exports[`EuiIcon props type editorUnderline is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorUnderline" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2789,7 +2654,6 @@ exports[`EuiIcon props type editorUndo is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorUndo" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2808,7 +2672,6 @@ exports[`EuiIcon props type editorUnorderedList is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="editorUnorderedList" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2827,7 +2690,6 @@ exports[`EuiIcon props type email is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="email" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2847,7 +2709,6 @@ exports[`EuiIcon props type empty is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="empty" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2862,7 +2723,6 @@ exports[`EuiIcon props type emsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="emsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -2885,7 +2745,6 @@ exports[`EuiIcon props type eql is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="eql" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2907,7 +2766,6 @@ exports[`EuiIcon props type eraser is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="eraser" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2929,7 +2787,6 @@ exports[`EuiIcon props type exit is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="exit" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2949,7 +2806,6 @@ exports[`EuiIcon props type expand is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="expand" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2969,7 +2825,6 @@ exports[`EuiIcon props type expandMini is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="expandMini" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -2989,7 +2844,6 @@ exports[`EuiIcon props type exportAction is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="exportAction" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3008,7 +2862,6 @@ exports[`EuiIcon props type eye is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="eye" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3027,7 +2880,6 @@ exports[`EuiIcon props type eyeClosed is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="eyeClosed" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3046,7 +2898,6 @@ exports[`EuiIcon props type faceHappy is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="faceHappy" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3065,7 +2916,6 @@ exports[`EuiIcon props type faceNeutral is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="faceNeutral" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3085,7 +2935,6 @@ exports[`EuiIcon props type faceSad is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="faceSad" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3104,7 +2953,6 @@ exports[`EuiIcon props type filebeatApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="filebeatApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3127,7 +2975,6 @@ exports[`EuiIcon props type filter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="filter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3147,7 +2994,6 @@ exports[`EuiIcon props type flag is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="flag" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3166,7 +3012,6 @@ exports[`EuiIcon props type fleetApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="fleetApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3199,7 +3044,6 @@ exports[`EuiIcon props type fold is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="fold" data-is-loaded="true" - focusable="false" role="img" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" @@ -3216,7 +3060,6 @@ exports[`EuiIcon props type folderCheck is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="folderCheck" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3236,7 +3079,6 @@ exports[`EuiIcon props type folderClosed is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="folderClosed" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3255,7 +3097,6 @@ exports[`EuiIcon props type folderExclamation is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="folderExclamation" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3275,7 +3116,6 @@ exports[`EuiIcon props type folderOpen is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="folderOpen" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3295,7 +3135,6 @@ exports[`EuiIcon props type frameNext is rendered 1`] = ` data-icon-type="frameNext" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3316,7 +3155,6 @@ exports[`EuiIcon props type framePrevious is rendered 1`] = ` data-icon-type="framePrevious" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3336,7 +3174,6 @@ exports[`EuiIcon props type fullScreen is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="fullScreen" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3356,7 +3193,6 @@ exports[`EuiIcon props type fullScreenExit is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="fullScreenExit" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3375,7 +3211,6 @@ exports[`EuiIcon props type function is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="function" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3394,7 +3229,6 @@ exports[`EuiIcon props type gear is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="gear" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3413,7 +3247,6 @@ exports[`EuiIcon props type gisApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="gisApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3436,7 +3269,6 @@ exports[`EuiIcon props type glasses is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="glasses" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3455,7 +3287,6 @@ exports[`EuiIcon props type globe is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="globe" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3474,7 +3305,6 @@ exports[`EuiIcon props type grab is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="grab" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3494,7 +3324,6 @@ exports[`EuiIcon props type grabHorizontal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="grabHorizontal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3514,7 +3343,6 @@ exports[`EuiIcon props type graphApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="graphApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3537,7 +3365,6 @@ exports[`EuiIcon props type grid is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="grid" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3556,7 +3383,6 @@ exports[`EuiIcon props type grokApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="grokApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3579,7 +3405,6 @@ exports[`EuiIcon props type heart is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="heart" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3598,7 +3423,6 @@ exports[`EuiIcon props type heartbeatApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="heartbeatApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3621,7 +3445,6 @@ exports[`EuiIcon props type heatmap is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="heatmap" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3640,7 +3463,6 @@ exports[`EuiIcon props type help is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="help" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3660,7 +3482,6 @@ exports[`EuiIcon props type home is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="home" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3679,7 +3500,6 @@ exports[`EuiIcon props type iInCircle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="iInCircle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3699,7 +3519,6 @@ exports[`EuiIcon props type image is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="image" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3718,7 +3537,6 @@ exports[`EuiIcon props type importAction is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="importAction" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3737,7 +3555,6 @@ exports[`EuiIcon props type indexClose is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexClose" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3756,7 +3573,6 @@ exports[`EuiIcon props type indexEdit is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexEdit" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3775,7 +3591,6 @@ exports[`EuiIcon props type indexFlush is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexFlush" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3795,7 +3610,6 @@ exports[`EuiIcon props type indexManagementApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="indexManagementApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3821,7 +3635,6 @@ exports[`EuiIcon props type indexMapping is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexMapping" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3840,7 +3653,6 @@ exports[`EuiIcon props type indexOpen is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexOpen" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3859,7 +3671,6 @@ exports[`EuiIcon props type indexPatternApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="indexPatternApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3882,7 +3693,6 @@ exports[`EuiIcon props type indexRollupApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="indexRollupApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -3911,7 +3721,6 @@ exports[`EuiIcon props type indexRuntime is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexRuntime" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3933,7 +3742,6 @@ exports[`EuiIcon props type indexSettings is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="indexSettings" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3958,7 +3766,6 @@ exports[`EuiIcon props type inputOutput is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="inputOutput" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -3983,7 +3790,6 @@ exports[`EuiIcon props type inspect is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="inspect" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4002,7 +3808,6 @@ exports[`EuiIcon props type invert is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="invert" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4024,7 +3829,6 @@ exports[`EuiIcon props type ip is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="ip" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4043,7 +3847,6 @@ exports[`EuiIcon props type keyboard is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="keyboard" data-is-loaded="true" - focusable="false" role="img" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" @@ -4062,7 +3865,6 @@ exports[`EuiIcon props type kqlField is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="kqlField" data-is-loaded="true" - focusable="false" height="10" role="img" viewBox="0 0 16 10" @@ -4081,7 +3883,6 @@ exports[`EuiIcon props type kqlFunction is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="kqlFunction" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4100,7 +3901,6 @@ exports[`EuiIcon props type kqlOperand is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="kqlOperand" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4119,7 +3919,6 @@ exports[`EuiIcon props type kqlSelector is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="kqlSelector" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4138,7 +3937,6 @@ exports[`EuiIcon props type kqlValue is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="kqlValue" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4158,7 +3956,6 @@ exports[`EuiIcon props type kubernetesNode is rendered 1`] = ` data-icon-type="kubernetesNode" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4180,7 +3977,6 @@ exports[`EuiIcon props type kubernetesPod is rendered 1`] = ` data-icon-type="kubernetesPod" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4201,7 +3997,6 @@ exports[`EuiIcon props type layers is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="layers" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4226,7 +4021,6 @@ exports[`EuiIcon props type lensApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="lensApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4249,7 +4043,6 @@ exports[`EuiIcon props type lettering is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lettering" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4269,7 +4062,6 @@ exports[`EuiIcon props type lineDashed is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lineDashed" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4288,7 +4080,6 @@ exports[`EuiIcon props type lineDotted is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lineDotted" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4307,7 +4098,6 @@ exports[`EuiIcon props type lineSolid is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lineSolid" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4326,7 +4116,6 @@ exports[`EuiIcon props type link is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="link" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4345,7 +4134,6 @@ exports[`EuiIcon props type list is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="list" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4364,7 +4152,6 @@ exports[`EuiIcon props type listAdd is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="listAdd" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4383,7 +4170,6 @@ exports[`EuiIcon props type lock is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lock" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4402,7 +4188,6 @@ exports[`EuiIcon props type lockOpen is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="lockOpen" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -4421,7 +4206,6 @@ exports[`EuiIcon props type logoAWS is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAWS" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4456,7 +4240,6 @@ exports[`EuiIcon props type logoAWSMono is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAWSMono" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4486,7 +4269,6 @@ exports[`EuiIcon props type logoAerospike is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAerospike" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4514,7 +4296,6 @@ exports[`EuiIcon props type logoApache is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoApache" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4735,7 +4516,6 @@ exports[`EuiIcon props type logoAppSearch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAppSearch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4763,7 +4543,6 @@ exports[`EuiIcon props type logoAzure is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAzure" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4783,7 +4562,6 @@ exports[`EuiIcon props type logoAzureMono is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoAzureMono" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4802,7 +4580,6 @@ exports[`EuiIcon props type logoBeats is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoBeats" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4830,7 +4607,6 @@ exports[`EuiIcon props type logoBusinessAnalytics is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoBusinessAnalytics" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4864,7 +4640,6 @@ exports[`EuiIcon props type logoCeph is rendered 1`] = ` data-icon-type="logoCeph" data-is-loaded="true" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4884,7 +4659,6 @@ exports[`EuiIcon props type logoCloud is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoCloud" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4917,7 +4691,6 @@ exports[`EuiIcon props type logoCloudEnterprise is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoCloudEnterprise" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4945,7 +4718,6 @@ exports[`EuiIcon props type logoCode is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoCode" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4973,7 +4745,6 @@ exports[`EuiIcon props type logoCodesandbox is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoCodesandbox" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -4992,7 +4763,6 @@ exports[`EuiIcon props type logoCouchbase is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoCouchbase" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5012,7 +4782,6 @@ exports[`EuiIcon props type logoDocker is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoDocker" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5034,7 +4803,6 @@ exports[`EuiIcon props type logoDropwizard is rendered 1`] = ` data-icon-type="logoDropwizard" data-is-loaded="true" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5122,7 +4890,6 @@ exports[`EuiIcon props type logoElastic is rendered 1`] = ` data-is-loaded="true" data-type="logoElastic" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5169,7 +4936,6 @@ exports[`EuiIcon props type logoElasticStack is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoElasticStack" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5206,7 +4972,6 @@ exports[`EuiIcon props type logoElasticsearch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoElasticsearch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5239,7 +5004,6 @@ exports[`EuiIcon props type logoEnterpriseSearch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoEnterpriseSearch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5273,7 +5037,6 @@ exports[`EuiIcon props type logoEtcd is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoEtcd" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5299,7 +5062,6 @@ exports[`EuiIcon props type logoGCP is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoGCP" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5370,7 +5132,6 @@ exports[`EuiIcon props type logoGCPMono is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoGCPMono" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5392,7 +5153,6 @@ exports[`EuiIcon props type logoGithub is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoGithub" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5411,7 +5171,6 @@ exports[`EuiIcon props type logoGmail is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoGmail" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5460,7 +5219,6 @@ exports[`EuiIcon props type logoGolang is rendered 1`] = ` data-icon-type="logoGolang" data-is-loaded="true" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5608,7 +5366,6 @@ exports[`EuiIcon props type logoGoogleG is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoGoogleG" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5721,7 +5478,6 @@ exports[`EuiIcon props type logoHAproxy is rendered 1`] = ` data-icon-type="logoHAproxy" data-is-loaded="true" fill="none" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5809,7 +5565,6 @@ exports[`EuiIcon props type logoIBM is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoIBM" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5968,7 +5723,6 @@ exports[`EuiIcon props type logoIBMMono is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoIBMMono" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -5988,7 +5742,6 @@ exports[`EuiIcon props type logoKafka is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoKafka" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6007,7 +5760,6 @@ exports[`EuiIcon props type logoKibana is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoKibana" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6040,7 +5792,6 @@ exports[`EuiIcon props type logoKubernetes is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoKubernetes" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6060,7 +5811,6 @@ exports[`EuiIcon props type logoLogging is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoLogging" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6088,7 +5838,6 @@ exports[`EuiIcon props type logoLogstash is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoLogstash" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6116,7 +5865,6 @@ exports[`EuiIcon props type logoMaps is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoMaps" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6144,7 +5892,6 @@ exports[`EuiIcon props type logoMemcached is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoMemcached" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6258,7 +6005,6 @@ exports[`EuiIcon props type logoMetrics is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoMetrics" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6291,7 +6037,6 @@ exports[`EuiIcon props type logoMongodb is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoMongodb" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6335,7 +6080,6 @@ exports[`EuiIcon props type logoMySQL is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoMySQL" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6361,7 +6105,6 @@ exports[`EuiIcon props type logoNginx is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoNginx" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6391,7 +6134,6 @@ exports[`EuiIcon props type logoObservability is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoObservability" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6419,7 +6161,6 @@ exports[`EuiIcon props type logoOsquery is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoOsquery" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6471,7 +6212,6 @@ exports[`EuiIcon props type logoPhp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoPhp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6609,7 +6349,6 @@ exports[`EuiIcon props type logoPostgres is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoPostgres" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6645,7 +6384,6 @@ exports[`EuiIcon props type logoPrometheus is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoPrometheus" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6665,7 +6403,6 @@ exports[`EuiIcon props type logoRabbitmq is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoRabbitmq" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6685,7 +6422,6 @@ exports[`EuiIcon props type logoRedis is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoRedis" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6749,7 +6485,6 @@ exports[`EuiIcon props type logoSecurity is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoSecurity" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6777,7 +6512,6 @@ exports[`EuiIcon props type logoSiteSearch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoSiteSearch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6810,7 +6544,6 @@ exports[`EuiIcon props type logoSketch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoSketch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6854,7 +6587,6 @@ exports[`EuiIcon props type logoSlack is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoSlack" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6890,7 +6622,6 @@ exports[`EuiIcon props type logoUptime is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoUptime" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6918,7 +6649,6 @@ exports[`EuiIcon props type logoWebhook is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoWebhook" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6950,7 +6680,6 @@ exports[`EuiIcon props type logoWindows is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoWindows" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6970,7 +6699,6 @@ exports[`EuiIcon props type logoWorkplaceSearch is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logoWorkplaceSearch" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -6998,7 +6726,6 @@ exports[`EuiIcon props type logsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="logsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7021,7 +6748,6 @@ exports[`EuiIcon props type logstashFilter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logstashFilter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7040,7 +6766,6 @@ exports[`EuiIcon props type logstashIf is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logstashIf" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7059,7 +6784,6 @@ exports[`EuiIcon props type logstashInput is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logstashInput" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7078,7 +6802,6 @@ exports[`EuiIcon props type logstashOutput is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logstashOutput" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7097,7 +6820,6 @@ exports[`EuiIcon props type logstashQueue is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="logstashQueue" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7116,7 +6838,6 @@ exports[`EuiIcon props type machineLearningApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="machineLearningApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7139,7 +6860,6 @@ exports[`EuiIcon props type magnet is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="magnet" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7158,7 +6878,6 @@ exports[`EuiIcon props type magnifyWithExclamation is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="magnifyWithExclamation" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7177,7 +6896,6 @@ exports[`EuiIcon props type magnifyWithMinus is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="magnifyWithMinus" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7196,7 +6914,6 @@ exports[`EuiIcon props type magnifyWithPlus is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="magnifyWithPlus" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7215,7 +6932,6 @@ exports[`EuiIcon props type managementApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="managementApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7238,7 +6954,6 @@ exports[`EuiIcon props type mapMarker is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="mapMarker" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7257,7 +6972,6 @@ exports[`EuiIcon props type memory is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="memory" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7280,7 +6994,6 @@ exports[`EuiIcon props type menu is rendered 1`] = ` data-icon-type="menu" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7299,7 +7012,6 @@ exports[`EuiIcon props type menuDown is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="menuDown" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7318,7 +7030,6 @@ exports[`EuiIcon props type menuLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="menuLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7337,7 +7048,6 @@ exports[`EuiIcon props type menuRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="menuRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7356,7 +7066,6 @@ exports[`EuiIcon props type menuUp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="menuUp" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7375,7 +7084,6 @@ exports[`EuiIcon props type merge is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="merge" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7394,7 +7102,6 @@ exports[`EuiIcon props type metricbeatApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="metricbeatApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7420,7 +7127,6 @@ exports[`EuiIcon props type metricsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="metricsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7443,7 +7149,6 @@ exports[`EuiIcon props type minimize is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="minimize" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7462,7 +7167,6 @@ exports[`EuiIcon props type minus is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="minus" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7485,7 +7189,6 @@ exports[`EuiIcon props type minusInCircle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="minusInCircle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7505,7 +7208,6 @@ exports[`EuiIcon props type minusInCircleFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="minusInCircleFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7525,7 +7227,6 @@ exports[`EuiIcon props type mobile is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="mobile" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7549,7 +7250,6 @@ exports[`EuiIcon props type monitoringApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="monitoringApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7572,7 +7272,6 @@ exports[`EuiIcon props type moon is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="moon" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7592,7 +7291,6 @@ exports[`EuiIcon props type namespace is rendered 1`] = ` data-icon-type="namespace" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7613,7 +7311,6 @@ exports[`EuiIcon props type nested is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="nested" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7632,7 +7329,6 @@ exports[`EuiIcon props type node is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="node" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7651,7 +7347,6 @@ exports[`EuiIcon props type notebookApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="notebookApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7677,7 +7372,6 @@ exports[`EuiIcon props type number is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="number" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7697,7 +7391,6 @@ exports[`EuiIcon props type offline is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="offline" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7716,7 +7409,6 @@ exports[`EuiIcon props type online is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="online" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7735,7 +7427,6 @@ exports[`EuiIcon props type outlierDetectionJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="outlierDetectionJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7758,7 +7449,6 @@ exports[`EuiIcon props type package is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="package" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7777,7 +7467,6 @@ exports[`EuiIcon props type packetbeatApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="packetbeatApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -7800,7 +7489,6 @@ exports[`EuiIcon props type pageSelect is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pageSelect" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7820,7 +7508,6 @@ exports[`EuiIcon props type pagesSelect is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pagesSelect" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7840,7 +7527,6 @@ exports[`EuiIcon props type paperClip is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="paperClip" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7859,7 +7545,6 @@ exports[`EuiIcon props type partial is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="partial" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7878,7 +7563,6 @@ exports[`EuiIcon props type pause is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pause" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7898,7 +7582,6 @@ exports[`EuiIcon props type payment is rendered 1`] = ` data-icon-type="payment" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7917,7 +7600,6 @@ exports[`EuiIcon props type pencil is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pencil" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7936,7 +7618,6 @@ exports[`EuiIcon props type percent is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="percent" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7963,7 +7644,6 @@ exports[`EuiIcon props type pin is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pin" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -7983,7 +7663,6 @@ exports[`EuiIcon props type pinFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="pinFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8002,7 +7681,6 @@ exports[`EuiIcon props type pipelineApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="pipelineApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8025,7 +7703,6 @@ exports[`EuiIcon props type play is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="play" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8045,7 +7722,6 @@ exports[`EuiIcon props type playFilled is rendered 1`] = ` data-icon-type="playFilled" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8064,7 +7740,6 @@ exports[`EuiIcon props type plus is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="plus" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8083,7 +7758,6 @@ exports[`EuiIcon props type plusInCircle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="plusInCircle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8103,7 +7777,6 @@ exports[`EuiIcon props type plusInCircleFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="plusInCircleFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8122,7 +7795,6 @@ exports[`EuiIcon props type popout is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="popout" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8141,7 +7813,6 @@ exports[`EuiIcon props type push is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="push" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8163,7 +7834,6 @@ exports[`EuiIcon props type questionInCircle is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="questionInCircle" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8182,7 +7852,6 @@ exports[`EuiIcon props type quote is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="quote" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8201,7 +7870,6 @@ exports[`EuiIcon props type recentlyViewedApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="recentlyViewedApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8224,7 +7892,6 @@ exports[`EuiIcon props type refresh is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="refresh" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8243,7 +7910,6 @@ exports[`EuiIcon props type regressionJob is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="regressionJob" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8266,7 +7932,6 @@ exports[`EuiIcon props type reporter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="reporter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8286,7 +7951,6 @@ exports[`EuiIcon props type reportingApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="reportingApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8312,7 +7976,6 @@ exports[`EuiIcon props type returnKey is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="returnKey" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8331,7 +7994,6 @@ exports[`EuiIcon props type save is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="save" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8350,7 +8012,6 @@ exports[`EuiIcon props type savedObjectsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="savedObjectsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8373,7 +8034,6 @@ exports[`EuiIcon props type scale is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="scale" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8393,7 +8053,6 @@ exports[`EuiIcon props type search is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="search" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8412,7 +8071,6 @@ exports[`EuiIcon props type searchProfilerApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="searchProfilerApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8445,7 +8103,6 @@ exports[`EuiIcon props type securityAnalyticsApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="securityAnalyticsApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8471,7 +8128,6 @@ exports[`EuiIcon props type securityApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="securityApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8494,7 +8150,6 @@ exports[`EuiIcon props type securitySignal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="securitySignal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8514,7 +8169,6 @@ exports[`EuiIcon props type securitySignalDetected is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="securitySignalDetected" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8534,7 +8188,6 @@ exports[`EuiIcon props type securitySignalResolved is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="securitySignalResolved" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8554,7 +8207,6 @@ exports[`EuiIcon props type sessionViewer is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sessionViewer" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8578,7 +8230,6 @@ exports[`EuiIcon props type shard is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="shard" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8597,7 +8248,6 @@ exports[`EuiIcon props type share is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="share" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8616,7 +8266,6 @@ exports[`EuiIcon props type snowflake is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="snowflake" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8636,7 +8285,6 @@ exports[`EuiIcon props type sortDown is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sortDown" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8655,7 +8303,6 @@ exports[`EuiIcon props type sortLeft is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sortLeft" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8675,7 +8322,6 @@ exports[`EuiIcon props type sortRight is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sortRight" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8694,7 +8340,6 @@ exports[`EuiIcon props type sortUp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sortUp" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8713,7 +8358,6 @@ exports[`EuiIcon props type sortable is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sortable" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8732,7 +8376,6 @@ exports[`EuiIcon props type spacesApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="spacesApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8759,7 +8402,6 @@ exports[`EuiIcon props type sqlApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="sqlApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -8782,7 +8424,6 @@ exports[`EuiIcon props type starEmpty is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starEmpty" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8802,7 +8443,6 @@ exports[`EuiIcon props type starEmptySpace is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starEmptySpace" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8822,7 +8462,6 @@ exports[`EuiIcon props type starFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8842,7 +8481,6 @@ exports[`EuiIcon props type starFilledSpace is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starFilledSpace" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8862,7 +8500,6 @@ exports[`EuiIcon props type starMinusEmpty is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starMinusEmpty" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8882,7 +8519,6 @@ exports[`EuiIcon props type starMinusFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starMinusFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8902,7 +8538,6 @@ exports[`EuiIcon props type starPlusEmpty is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starPlusEmpty" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8922,7 +8557,6 @@ exports[`EuiIcon props type starPlusFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="starPlusFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8942,7 +8576,6 @@ exports[`EuiIcon props type stats is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="stats" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8962,7 +8595,6 @@ exports[`EuiIcon props type stop is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="stop" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -8982,7 +8614,6 @@ exports[`EuiIcon props type stopFilled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="stopFilled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9006,7 +8637,6 @@ exports[`EuiIcon props type stopSlash is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="stopSlash" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9025,7 +8655,6 @@ exports[`EuiIcon props type storage is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="storage" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9063,7 +8692,6 @@ exports[`EuiIcon props type string is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="string" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9084,7 +8712,6 @@ exports[`EuiIcon props type submodule is rendered 1`] = ` data-icon-type="submodule" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9105,7 +8732,6 @@ exports[`EuiIcon props type sun is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="sun" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9124,7 +8750,6 @@ exports[`EuiIcon props type swatchInput is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="swatchInput" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9156,7 +8781,6 @@ exports[`EuiIcon props type symlink is rendered 1`] = ` data-icon-type="symlink" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9177,7 +8801,6 @@ exports[`EuiIcon props type tableDensityCompact is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tableDensityCompact" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9196,7 +8819,6 @@ exports[`EuiIcon props type tableDensityExpanded is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tableDensityExpanded" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9215,7 +8837,6 @@ exports[`EuiIcon props type tableDensityNormal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tableDensityNormal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9234,7 +8855,6 @@ exports[`EuiIcon props type tableOfContents is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tableOfContents" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9253,7 +8873,6 @@ exports[`EuiIcon props type tag is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tag" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9272,7 +8891,6 @@ exports[`EuiIcon props type tear is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tear" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9291,7 +8909,6 @@ exports[`EuiIcon props type temperature is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="temperature" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9314,7 +8931,6 @@ exports[`EuiIcon props type timeRefresh is rendered 1`] = ` data-icon-type="timeRefresh" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9338,7 +8954,6 @@ exports[`EuiIcon props type timeline is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="timeline" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9358,7 +8973,6 @@ exports[`EuiIcon props type timelionApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="timelionApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -9382,7 +8996,6 @@ exports[`EuiIcon props type timeslider is rendered 1`] = ` data-icon-type="timeslider" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9402,7 +9015,6 @@ exports[`EuiIcon props type tokenAlias is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenAlias" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9422,7 +9034,6 @@ exports[`EuiIcon props type tokenAnnotation is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenAnnotation" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9442,7 +9053,6 @@ exports[`EuiIcon props type tokenArray is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenArray" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9462,7 +9072,6 @@ exports[`EuiIcon props type tokenBinary is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenBinary" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9482,7 +9091,6 @@ exports[`EuiIcon props type tokenBoolean is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenBoolean" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9502,7 +9110,6 @@ exports[`EuiIcon props type tokenClass is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenClass" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9522,7 +9129,6 @@ exports[`EuiIcon props type tokenCompletionSuggester is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenCompletionSuggester" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9546,7 +9152,6 @@ exports[`EuiIcon props type tokenConstant is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenConstant" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9566,7 +9171,6 @@ exports[`EuiIcon props type tokenDate is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenDate" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9586,7 +9190,6 @@ exports[`EuiIcon props type tokenDenseVector is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenDenseVector" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9605,7 +9208,6 @@ exports[`EuiIcon props type tokenElement is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenElement" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9625,7 +9227,6 @@ exports[`EuiIcon props type tokenEnum is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenEnum" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9645,7 +9246,6 @@ exports[`EuiIcon props type tokenEnumMember is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenEnumMember" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9665,7 +9265,6 @@ exports[`EuiIcon props type tokenEvent is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenEvent" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9685,7 +9284,6 @@ exports[`EuiIcon props type tokenException is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenException" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9704,7 +9302,6 @@ exports[`EuiIcon props type tokenField is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenField" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9724,7 +9321,6 @@ exports[`EuiIcon props type tokenFile is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenFile" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9743,7 +9339,6 @@ exports[`EuiIcon props type tokenFlattened is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenFlattened" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9762,7 +9357,6 @@ exports[`EuiIcon props type tokenFunction is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenFunction" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9782,7 +9376,6 @@ exports[`EuiIcon props type tokenGeo is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenGeo" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9802,7 +9395,6 @@ exports[`EuiIcon props type tokenHistogram is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenHistogram" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9821,7 +9413,6 @@ exports[`EuiIcon props type tokenIP is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenIP" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9841,7 +9432,6 @@ exports[`EuiIcon props type tokenInterface is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenInterface" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9861,7 +9451,6 @@ exports[`EuiIcon props type tokenJoin is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenJoin" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9882,7 +9471,6 @@ exports[`EuiIcon props type tokenKey is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenKey" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9902,7 +9490,6 @@ exports[`EuiIcon props type tokenKeyword is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenKeyword" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9921,7 +9508,6 @@ exports[`EuiIcon props type tokenMethod is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenMethod" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9941,7 +9527,6 @@ exports[`EuiIcon props type tokenMetricCounter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenMetricCounter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9960,7 +9545,6 @@ exports[`EuiIcon props type tokenMetricGauge is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenMetricGauge" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -9979,7 +9563,6 @@ exports[`EuiIcon props type tokenModule is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenModule" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10001,7 +9584,6 @@ exports[`EuiIcon props type tokenNamespace is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenNamespace" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10020,7 +9602,6 @@ exports[`EuiIcon props type tokenNested is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenNested" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10046,7 +9627,6 @@ exports[`EuiIcon props type tokenNull is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenNull" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10065,7 +9645,6 @@ exports[`EuiIcon props type tokenNumber is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenNumber" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10084,7 +9663,6 @@ exports[`EuiIcon props type tokenObject is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenObject" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10104,7 +9682,6 @@ exports[`EuiIcon props type tokenOperator is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenOperator" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10124,7 +9701,6 @@ exports[`EuiIcon props type tokenPackage is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenPackage" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10144,7 +9720,6 @@ exports[`EuiIcon props type tokenParameter is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenParameter" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10164,7 +9739,6 @@ exports[`EuiIcon props type tokenPercolator is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenPercolator" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10185,7 +9759,6 @@ exports[`EuiIcon props type tokenProperty is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenProperty" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10205,7 +9778,6 @@ exports[`EuiIcon props type tokenRange is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenRange" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10228,7 +9800,6 @@ exports[`EuiIcon props type tokenRankFeature is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenRankFeature" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10247,7 +9818,6 @@ exports[`EuiIcon props type tokenRankFeatures is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenRankFeatures" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10266,7 +9836,6 @@ exports[`EuiIcon props type tokenRepo is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenRepo" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10286,7 +9855,6 @@ exports[`EuiIcon props type tokenSearchType is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenSearchType" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10310,7 +9878,6 @@ exports[`EuiIcon props type tokenShape is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenShape" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10330,7 +9897,6 @@ exports[`EuiIcon props type tokenString is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenString" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10349,7 +9915,6 @@ exports[`EuiIcon props type tokenStruct is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenStruct" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10369,7 +9934,6 @@ exports[`EuiIcon props type tokenSymbol is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenSymbol" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10388,7 +9952,6 @@ exports[`EuiIcon props type tokenTag is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenTag" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10411,7 +9974,6 @@ exports[`EuiIcon props type tokenText is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenText" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10430,7 +9992,6 @@ exports[`EuiIcon props type tokenTokenCount is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenTokenCount" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10449,7 +10010,6 @@ exports[`EuiIcon props type tokenVariable is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="tokenVariable" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10469,7 +10029,6 @@ exports[`EuiIcon props type training is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="training" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10488,7 +10047,6 @@ exports[`EuiIcon props type trash is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="trash" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10507,7 +10065,6 @@ exports[`EuiIcon props type unfold is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="unfold" data-is-loaded="true" - focusable="false" role="img" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg" @@ -10525,7 +10082,6 @@ exports[`EuiIcon props type unlink is rendered 1`] = ` data-icon-type="unlink" data-is-loaded="true" fill="none" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10547,7 +10103,6 @@ exports[`EuiIcon props type upgradeAssistantApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="upgradeAssistantApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -10570,7 +10125,6 @@ exports[`EuiIcon props type uptimeApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="uptimeApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -10593,7 +10147,6 @@ exports[`EuiIcon props type user is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="user" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10617,7 +10170,6 @@ exports[`EuiIcon props type userAvatar is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="userAvatar" data-is-loaded="true" - focusable="false" height="18" role="img" viewBox="0 0 18 18" @@ -10643,7 +10195,6 @@ exports[`EuiIcon props type users is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="users" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10667,7 +10218,6 @@ exports[`EuiIcon props type usersRolesApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="usersRolesApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -10690,7 +10240,6 @@ exports[`EuiIcon props type vector is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="vector" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10709,7 +10258,6 @@ exports[`EuiIcon props type videoPlayer is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="videoPlayer" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10728,7 +10276,6 @@ exports[`EuiIcon props type visArea is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visArea" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10747,7 +10294,6 @@ exports[`EuiIcon props type visAreaStacked is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visAreaStacked" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10766,7 +10312,6 @@ exports[`EuiIcon props type visBarHorizontal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visBarHorizontal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10785,7 +10330,6 @@ exports[`EuiIcon props type visBarHorizontalStacked is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visBarHorizontalStacked" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10804,7 +10348,6 @@ exports[`EuiIcon props type visBarVertical is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visBarVertical" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10823,7 +10366,6 @@ exports[`EuiIcon props type visBarVerticalStacked is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visBarVerticalStacked" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10842,7 +10384,6 @@ exports[`EuiIcon props type visGauge is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visGauge" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10861,7 +10402,6 @@ exports[`EuiIcon props type visGoal is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visGoal" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10880,7 +10420,6 @@ exports[`EuiIcon props type visLine is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visLine" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10899,7 +10438,6 @@ exports[`EuiIcon props type visMapCoordinate is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visMapCoordinate" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10918,7 +10456,6 @@ exports[`EuiIcon props type visMapRegion is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visMapRegion" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10937,7 +10474,6 @@ exports[`EuiIcon props type visMetric is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visMetric" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10956,7 +10492,6 @@ exports[`EuiIcon props type visPie is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visPie" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10975,7 +10510,6 @@ exports[`EuiIcon props type visTable is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visTable" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -10994,7 +10528,6 @@ exports[`EuiIcon props type visTagCloud is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visTagCloud" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11013,7 +10546,6 @@ exports[`EuiIcon props type visText is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visText" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11032,7 +10564,6 @@ exports[`EuiIcon props type visTimelion is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visTimelion" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11051,7 +10582,6 @@ exports[`EuiIcon props type visVega is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visVega" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11070,7 +10600,6 @@ exports[`EuiIcon props type visVisualBuilder is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="visVisualBuilder" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11089,7 +10618,6 @@ exports[`EuiIcon props type visualizeApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="visualizeApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -11115,7 +10643,6 @@ exports[`EuiIcon props type watchesApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="watchesApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -11144,7 +10671,6 @@ exports[`EuiIcon props type wordWrap is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="wordWrap" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11166,7 +10692,6 @@ exports[`EuiIcon props type wordWrapDisabled is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="wordWrapDisabled" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11185,7 +10710,6 @@ exports[`EuiIcon props type workplaceSearchApp is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-app-isLoaded" data-icon-type="workplaceSearchApp" data-is-loaded="true" - focusable="false" height="32" role="img" viewBox="0 0 32 32" @@ -11210,7 +10734,6 @@ exports[`EuiIcon props type wrench is rendered 1`] = ` class="euiIcon emotion-euiIcon-m-isLoaded" data-icon-type="wrench" data-is-loaded="true" - focusable="false" height="16" role="img" viewBox="0 0 16 16" @@ -11228,7 +10751,6 @@ exports[`EuiIcon renders custom components 1`] = ` aria-hidden="true" aria-label="heart" class="euiIcon emotion-euiIcon-m" - focusable="false" role="img" > ❤️ diff --git a/src/components/icon/icon.tsx b/src/components/icon/icon.tsx index e46cc606589..b0b301556d9 100644 --- a/src/components/icon/icon.tsx +++ b/src/components/icon/icon.tsx @@ -283,14 +283,6 @@ export class EuiIconClass extends PureComponent< const icon = this.state.icon || empty; - // This is a fix for IE and Edge, which ignores tabindex="-1" on an SVG, but respects - // focusable="false". - // - If there's no tabindex specified, we'll default the icon to not be focusable, - // which is how SVGs behave in Chrome, Safari, and FF. - // - If tabindex is -1, then the consumer wants the icon to be focusable by JavaScript only. - // - If the tabindex is 0, the consumer wants the icon to be keyboard focusable. - const focusable = tabIndex == null || tabIndex === -1 ? 'false' : 'true'; - if (typeof icon === 'string') { return ( { - // IE11 and the MutationObserver polyfill used in Kibana (for Jest) implement + // The MutationObserver polyfill used in Kibana (for Jest) implements // an older spec in which specifying `attributeOldValue` or `attributeFilter` // without specifying `attributes` results in a `SyntaxError`. // The following logic patches the newer spec in which `attributes: true` can be diff --git a/src/components/tabs/tabbed_content/__snapshots__/tabbed_content.test.tsx.snap b/src/components/tabs/tabbed_content/__snapshots__/tabbed_content.test.tsx.snap index 25a230ae483..a78d6cf2f27 100644 --- a/src/components/tabs/tabbed_content/__snapshots__/tabbed_content.test.tsx.snap +++ b/src/components/tabs/tabbed_content/__snapshots__/tabbed_content.test.tsx.snap @@ -90,10 +90,12 @@ exports[`EuiTabbedContent behavior when uncontrolled, the selected tab should up >
diff --git a/src/components/tabs/tabbed_content/tabbed_content.tsx b/src/components/tabs/tabbed_content/tabbed_content.tsx index e60cc31f3c2..1a5361019c4 100644 --- a/src/components/tabs/tabbed_content/tabbed_content.tsx +++ b/src/components/tabs/tabbed_content/tabbed_content.tsx @@ -6,7 +6,13 @@ * Side Public License, v 1. */ -import React, { Component, createRef, HTMLAttributes, ReactNode } from 'react'; +import React, { + Component, + createRef, + HTMLAttributes, + ReactNode, + FocusEvent, +} from 'react'; import { htmlIdGenerator } from '../../../services'; @@ -90,28 +96,6 @@ export class EuiTabbedContent extends Component< }; } - componentDidMount() { - // IE11 doesn't support the `relatedTarget` event property for blur events - // but does add it for focusout. React doesn't support `onFocusOut` so here we are. - if (this.tabsRef.current) { - // Current short-term solution for event listener (see https://github.com/elastic/eui/pull/2717) - this.tabsRef.current.addEventListener( - 'focusout' as 'blur', - this.removeFocus - ); - } - } - - componentWillUnmount() { - if (this.tabsRef.current) { - // Current short-term solution for event listener (see https://github.com/elastic/eui/pull/2717) - this.tabsRef.current.removeEventListener( - 'focusout' as 'blur', - this.removeFocus - ); - } - } - focusTab = () => { const targetTab: HTMLDivElement | null = this.tabsRef.current!.querySelector( `#${this.state.selectedTabId}` @@ -129,8 +113,7 @@ export class EuiTabbedContent extends Component< } }; - // todo: figure out type for blurEvent - removeFocus = (blurEvent: FocusEvent) => { + removeFocus = (blurEvent: FocusEvent) => { // only set inFocus to false if the wrapping div doesn't contain the now-focusing element const currentTarget = blurEvent.currentTarget! as HTMLElement; const relatedTarget = blurEvent.relatedTarget! as HTMLElement; @@ -185,6 +168,7 @@ export class EuiTabbedContent extends Component< expand={expand} size={size} onFocus={this.initializeFocus} + onBlur={this.removeFocus} > {tabs.map((tab: EuiTabbedContentTab) => { const { diff --git a/upcoming_changelogs/6162.md b/upcoming_changelogs/6162.md new file mode 100644 index 00000000000..3c8bf4bf086 --- /dev/null +++ b/upcoming_changelogs/6162.md @@ -0,0 +1,3 @@ +**Breaking changes** + +- Removed all IE fixes/fallbacks in EUI JS