Skip to content

Commit 5b29a83

Browse files
Merge branch 'master' into task/endpoint-details-to-ingest
2 parents cfd3849 + 8095856 commit 5b29a83

File tree

140 files changed

+4281
-1357
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

140 files changed

+4281
-1357
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
"@elastic/charts": "19.2.0",
128128
"@elastic/datemath": "5.0.3",
129129
"@elastic/ems-client": "7.8.0",
130-
"@elastic/eui": "23.3.1",
130+
"@elastic/eui": "24.1.0",
131131
"@elastic/filesaver": "1.1.2",
132132
"@elastic/good": "8.1.1-kibana2",
133133
"@elastic/numeral": "^2.5.0",

packages/kbn-storybook/storybook_config/webpack.config.js

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* under the License.
1818
*/
1919

20-
const { resolve } = require('path');
20+
const { parse, resolve } = require('path');
2121
const webpack = require('webpack');
2222
const { stringifyRequest } = require('loader-utils');
2323
const CopyWebpackPlugin = require('copy-webpack-plugin');
@@ -95,6 +95,27 @@ module.exports = async ({ config }) => {
9595
},
9696
},
9797
},
98+
{
99+
loader: 'resolve-url-loader',
100+
options: {
101+
// If you don't have arguments (_, __) to the join function, the
102+
// resolve-url-loader fails with a loader misconfiguration error.
103+
//
104+
// eslint-disable-next-line no-unused-vars
105+
join: (_, __) => (uri, base) => {
106+
if (!base || !parse(base).dir.includes('legacy')) {
107+
return null;
108+
}
109+
110+
// URIs on mixins in src/legacy/public/styles need to be resolved.
111+
if (uri.startsWith('ui/assets')) {
112+
return resolve(REPO_ROOT, 'src/core/server/core_app/', uri.replace('ui/', ''));
113+
}
114+
115+
return null;
116+
},
117+
},
118+
},
98119
{
99120
loader: 'sass-loader',
100121
options: {

packages/kbn-ui-shared-deps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@elastic/charts": "19.2.0",
13-
"@elastic/eui": "23.3.1",
13+
"@elastic/eui": "24.1.0",
1414
"@elastic/numeral": "^2.5.0",
1515
"@kbn/i18n": "1.0.0",
1616
"@kbn/monaco": "1.0.0",

src/core/public/chrome/ui/header/__snapshots__/collapsible_nav.test.tsx.snap

Lines changed: 105 additions & 106 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/core/public/chrome/ui/header/__snapshots__/header.test.tsx.snap

Lines changed: 42 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/legacy/server/sass/build.test.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ afterEach(async () => {
3333
});
3434

3535
it('builds light themed SASS', async () => {
36+
// Increased timeout from 5000ms due to intermittent timeout failures
37+
jest.setTimeout(60000);
3638
const targetPath = resolve(TMP, 'style.css');
3739
await new Build({
3840
sourcePath: FIXTURE,

src/plugins/visualizations/public/wizard/__snapshots__/new_vis_modal.test.tsx.snap

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test/functional/services/apps_menu.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@ export function AppsMenuProvider({ getService, getPageObjects }: FtrProviderCont
5858
public async closeCollapsibleNav() {
5959
const CLOSE_BUTTON = '[data-test-subj=collapsibleNav] > button';
6060
if (await find.existsByCssSelector(CLOSE_BUTTON)) {
61+
// Close button is only visible when focused
62+
const button = await find.byCssSelector(CLOSE_BUTTON);
63+
await button.focus();
64+
6165
await find.clickByCssSelector(CLOSE_BUTTON);
6266
}
6367
}

test/interpreter_functional/plugins/kbn_tp_run_pipeline/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"@elastic/eui": "23.3.1",
11+
"@elastic/eui": "24.1.0",
1212
"react": "^16.12.0",
1313
"react-dom": "^16.12.0"
1414
},

test/plugin_functional/plugins/kbn_sample_panel_action/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"license": "Apache-2.0",
1010
"dependencies": {
11-
"@elastic/eui": "23.3.1",
11+
"@elastic/eui": "24.1.0",
1212
"react": "^16.12.0"
1313
},
1414
"scripts": {

0 commit comments

Comments
 (0)