Skip if unavailable
diff --git a/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/remote_cluster_form.test.js b/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/remote_cluster_form.test.js
index 907fd2183265f..48a2677c81dbb 100644
--- a/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/remote_cluster_form.test.js
+++ b/x-pack/plugins/remote_clusters/public/application/sections/components/remote_cluster_form/remote_cluster_form.test.js
@@ -10,7 +10,6 @@ import { findTestSubject, takeMountedSnapshot } from '@elastic/eui/lib/test';
import { RemoteClusterForm } from './remote_cluster_form';
// Make sure we have deterministic aria IDs.
-jest.mock('@elastic/eui/lib/components/form/form_row/make_id', () => () => 'mockId');
jest.mock('@elastic/eui/lib/services/accessibility/html_id_generator', () => ({
htmlIdGenerator: (prefix = 'staticGenerator') => (suffix = 'staticId') => `${prefix}_${suffix}`,
}));
diff --git a/x-pack/plugins/reporting/public/components/report_listing.test.tsx b/x-pack/plugins/reporting/public/components/report_listing.test.tsx
index d91f4ef549f99..cacae943687e1 100644
--- a/x-pack/plugins/reporting/public/components/report_listing.test.tsx
+++ b/x-pack/plugins/reporting/public/components/report_listing.test.tsx
@@ -10,7 +10,11 @@ import { mountWithIntl } from 'test_utils/enzyme_helpers';
import { ILicense } from '../../../licensing/public';
import { ReportingAPIClient } from '../lib/reporting_api_client';
-jest.mock('@elastic/eui/lib/components/form/form_row/make_id', () => () => 'generated-id');
+jest.mock('@elastic/eui/lib/services/accessibility/html_id_generator', () => {
+ return {
+ htmlIdGenerator: () => () => `generated-id`,
+ };
+});
import { ReportListing } from './report_listing';
diff --git a/x-pack/plugins/siem/public/common/components/inspect/modal.test.tsx b/x-pack/plugins/siem/public/common/components/inspect/modal.test.tsx
index cfa0bc4823fd9..e117699294bc1 100644
--- a/x-pack/plugins/siem/public/common/components/inspect/modal.test.tsx
+++ b/x-pack/plugins/siem/public/common/components/inspect/modal.test.tsx
@@ -167,7 +167,7 @@ describe('Modal Inspect', () => {
expect(
JSON.parse(
wrapper
- .find('.euiCodeBlock')
+ .find('EuiCodeBlock')
.first()
.text()
)
@@ -244,7 +244,7 @@ describe('Modal Inspect', () => {
expect(
JSON.parse(
wrapper
- .find('.euiCodeBlock')
+ .find('EuiCodeBlock')
.first()
.text()
)
diff --git a/x-pack/plugins/siem/public/common/components/paginated_table/__snapshots__/index.test.tsx.snap b/x-pack/plugins/siem/public/common/components/paginated_table/__snapshots__/index.test.tsx.snap
index f42cd1876f2a2..a2c7e72e51a9c 100644
--- a/x-pack/plugins/siem/public/common/components/paginated_table/__snapshots__/index.test.tsx.snap
+++ b/x-pack/plugins/siem/public/common/components/paginated_table/__snapshots__/index.test.tsx.snap
@@ -211,6 +211,7 @@ exports[`Paginated Table Component rendering it renders the default load more ta
"euiDataGridCellPaddingM": "6px",
"euiDataGridCellPaddingS": "4px",
"euiDataGridColumnResizerWidth": "3px",
+ "euiDataGridPopoverMaxHeight": "400px",
"euiDataGridPrefix": ".euiDataGrid--",
"euiDataGridStyles": "'bordersAll', 'bordersNone', 'bordersHorizontal', 'paddingSmall', 'paddingMedium', 'paddingLarge', 'stripes', 'rowHoverNone', 'rowHoverHighlight', 'headerShade', 'headerUnderline', 'fontSizeSmall', 'fontSizeLarge', 'noControls'",
"euiDataGridVerticalBorder": "solid 1px #24272e",
@@ -412,6 +413,13 @@ exports[`Paginated Table Component rendering it renders the default load more ta
"euiRangeTrackHeight": "2px",
"euiRangeTrackRadius": "4px",
"euiRangeTrackWidth": "100%",
+ "euiResizableButtonSizeModifiers": Object {
+ "sizeExtraLarge": "40px",
+ "sizeLarge": "24px",
+ "sizeMedium": "16px",
+ "sizeSmall": "12px",
+ },
+ "euiResizableButtonTransitionSpeed": "150ms",
"euiScrollBar": "16px",
"euiScrollBarCorner": "6px",
"euiSelectableListItemBorder": "1px solid #202128",
@@ -427,6 +435,7 @@ exports[`Paginated Table Component rendering it renders the default load more ta
"euiSizeXXL": "40px",
"euiStepNumberMargin": "16px",
"euiStepNumberSize": "32px",
+ "euiStepNumberSmallSize": "24px",
"euiStepStatusColorsToFade": Object {
"danger": "#ff6666",
"disabled": "#98a2b3",
diff --git a/x-pack/plugins/siem/public/timelines/components/notes/note_card/__snapshots__/note_card_body.test.tsx.snap b/x-pack/plugins/siem/public/timelines/components/notes/note_card/__snapshots__/note_card_body.test.tsx.snap
index fb64708cdb897..391aaba17ae3a 100644
--- a/x-pack/plugins/siem/public/timelines/components/notes/note_card/__snapshots__/note_card_body.test.tsx.snap
+++ b/x-pack/plugins/siem/public/timelines/components/notes/note_card/__snapshots__/note_card_body.test.tsx.snap
@@ -211,6 +211,7 @@ exports[`NoteCardBody renders correctly against snapshot 1`] = `
"euiDataGridCellPaddingM": "6px",
"euiDataGridCellPaddingS": "4px",
"euiDataGridColumnResizerWidth": "3px",
+ "euiDataGridPopoverMaxHeight": "400px",
"euiDataGridPrefix": ".euiDataGrid--",
"euiDataGridStyles": "'bordersAll', 'bordersNone', 'bordersHorizontal', 'paddingSmall', 'paddingMedium', 'paddingLarge', 'stripes', 'rowHoverNone', 'rowHoverHighlight', 'headerShade', 'headerUnderline', 'fontSizeSmall', 'fontSizeLarge', 'noControls'",
"euiDataGridVerticalBorder": "solid 1px #24272e",
@@ -412,6 +413,13 @@ exports[`NoteCardBody renders correctly against snapshot 1`] = `
"euiRangeTrackHeight": "2px",
"euiRangeTrackRadius": "4px",
"euiRangeTrackWidth": "100%",
+ "euiResizableButtonSizeModifiers": Object {
+ "sizeExtraLarge": "40px",
+ "sizeLarge": "24px",
+ "sizeMedium": "16px",
+ "sizeSmall": "12px",
+ },
+ "euiResizableButtonTransitionSpeed": "150ms",
"euiScrollBar": "16px",
"euiScrollBarCorner": "6px",
"euiSelectableListItemBorder": "1px solid #202128",
@@ -427,6 +435,7 @@ exports[`NoteCardBody renders correctly against snapshot 1`] = `
"euiSizeXXL": "40px",
"euiStepNumberMargin": "16px",
"euiStepNumberSize": "32px",
+ "euiStepNumberSmallSize": "24px",
"euiStepStatusColorsToFade": Object {
"danger": "#ff6666",
"disabled": "#98a2b3",
diff --git a/x-pack/plugins/snapshot_restore/__jest__/client_integration/home.test.ts b/x-pack/plugins/snapshot_restore/__jest__/client_integration/home.test.ts
index 6db878e08b69f..de3eea1d7613c 100644
--- a/x-pack/plugins/snapshot_restore/__jest__/client_integration/home.test.ts
+++ b/x-pack/plugins/snapshot_restore/__jest__/client_integration/home.test.ts
@@ -753,7 +753,12 @@ describe('
', () => {
const failure0 = failuresFound.at(0);
const shardText = findTestSubject(failure0, 'shard').text();
- const reasonText = findTestSubject(failure0, 'reason').text();
+ // EUI data-test-subj alteration to be updated (eui#3483)
+ // const reasonText = findTestSubject(failure0, 'reason').text();
+ const reasonText = failure0
+ .find('code')
+ .at(0)
+ .text();
const [mockedFailure] = failure1.failures;
expect(shardText).toBe(`Shard ${mockedFailure.shard_id}`);
diff --git a/x-pack/plugins/uptime/public/components/certificates/__tests__/__snapshots__/cert_search.test.tsx.snap b/x-pack/plugins/uptime/public/components/certificates/__tests__/__snapshots__/cert_search.test.tsx.snap
index 0706198a099a5..8d576fc116dae 100644
--- a/x-pack/plugins/uptime/public/components/certificates/__tests__/__snapshots__/cert_search.test.tsx.snap
+++ b/x-pack/plugins/uptime/public/components/certificates/__tests__/__snapshots__/cert_search.test.tsx.snap
@@ -2,34 +2,38 @@
exports[`CertificatesSearch renders expected elements for valid props 1`] = `
.c0 {
- min-width: 700px;
+ max-width: 700px;
}
diff --git a/x-pack/plugins/uptime/public/components/certificates/cert_search.tsx b/x-pack/plugins/uptime/public/components/certificates/cert_search.tsx
index 282b623f0f662..9048ded319902 100644
--- a/x-pack/plugins/uptime/public/components/certificates/cert_search.tsx
+++ b/x-pack/plugins/uptime/public/components/certificates/cert_search.tsx
@@ -9,8 +9,8 @@ import { EuiFieldSearch } from '@elastic/eui';
import styled from 'styled-components';
import * as labels from './translations';
-const WrapFieldSearch = styled(EuiFieldSearch)`
- min-width: 700px;
+const WrapFieldSearch = styled('div')`
+ max-width: 700px;
`;
interface Props {
@@ -23,12 +23,15 @@ export const CertificateSearch: React.FC
= ({ setSearch }) => {
};
return (
-
+
+
+
);
};
diff --git a/yarn.lock b/yarn.lock
index 278649a971a94..1c618d7a5decd 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1332,10 +1332,10 @@
tabbable "^1.1.0"
uuid "^3.1.0"
-"@elastic/eui@22.3.1":
- version "22.3.1"
- resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-22.3.1.tgz#d824835774476f1aaca006a466324256a56c1df6"
- integrity sha512-psGMIsNhI0LApvmR19Y0DvtmV3BvvzXkd8dVXORjBiPW4Z7N2sGgsMmqpvxlZ1rfP59PyIKpQOTReJZFLSmKQQ==
+"@elastic/eui@23.3.1":
+ version "23.3.1"
+ resolved "https://registry.yarnpkg.com/@elastic/eui/-/eui-23.3.1.tgz#08516910d24eb148110f99d3bd7551240f9ef3d4"
+ integrity sha512-81N5xXeZwm8HEPE5RAPQFFUNUzYlTVJcNhW+DDN0EY8MlxVob9hgHy0AwshQGfrHlqhm+4gix110pW3n9Jweyw==
dependencies:
"@types/chroma-js" "^2.0.0"
"@types/enzyme" "^3.1.13"