Skip to content

Commit 3671a54

Browse files
committed
Merge branch 'master' of github.com:elastic/kibana into pr/78459
# Conflicts: # packages/kbn-ui-shared-deps/package.json
2 parents 1007611 + 96d3b77 commit 3671a54

File tree

711 files changed

+17893
-7830
lines changed

Some content is hidden

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

711 files changed

+17893
-7830
lines changed

.github/CODEOWNERS

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,10 +263,8 @@
263263
/x-pack/test/encrypted_saved_objects_api_integration/ @elastic/kibana-security
264264
/x-pack/test/functional/apps/security/ @elastic/kibana-security
265265
/x-pack/test/kerberos_api_integration/ @elastic/kibana-security
266-
/x-pack/test/login_selector_api_integration/ @elastic/kibana-security
267266
/x-pack/test/oidc_api_integration/ @elastic/kibana-security
268267
/x-pack/test/pki_api_integration/ @elastic/kibana-security
269-
/x-pack/test/saml_api_integration/ @elastic/kibana-security
270268
/x-pack/test/security_api_integration/ @elastic/kibana-security
271269
/x-pack/test/security_functional/ @elastic/kibana-security
272270
/x-pack/test/spaces_api_integration/ @elastic/kibana-security

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ Delete any items that are not applicable to this PR.
99
- [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/master/packages/kbn-i18n/README.md)
1010
- [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials
1111
- [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
12-
- [ ] This was checked for [keyboard-only and screenreader accessibility](https://developer.mozilla.org/en-US/docs/Learn/Tools_and_testing/Cross_browser_testing/Accessibility#Accessibility_testing_checklist)
13-
- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)
12+
- [ ] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/))
13+
- [ ] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US))
14+
- [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server))
1415
- [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers)
1516

1617
### For maintainers

docs/user/dashboard/vega-reference.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ For additional *Vega* and *Vega-Lite* information, refer to the reference sectio
1414
* Automatic sizing
1515
* Default theme to match {kib}
1616
* Writing {es} queries using the time range and filters from dashboards
17-
* Using the Elastic Map Service in Vega maps
17+
* experimental[] Using the Elastic Map Service in Vega maps
1818
* Additional tooltip styling
1919
* Advanced setting to enable URL loading from any domain
2020
* Limited debugging support using the browser dev tools

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
"dependencies": {
118118
"@elastic/datemath": "5.0.3",
119119
"@elastic/elasticsearch": "7.9.1",
120-
"@elastic/eui": "29.0.0",
120+
"@elastic/eui": "29.3.0",
121121
"@elastic/good": "8.1.1-kibana2",
122122
"@elastic/numeral": "^2.5.0",
123123
"@elastic/request-crypto": "1.1.4",

packages/kbn-ui-framework/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"@babel/core": "^7.11.6",
34-
"@elastic/eui": "29.0.0",
34+
"@elastic/eui": "29.3.0",
3535
"@kbn/babel-preset": "1.0.0",
3636
"@kbn/optimizer": "1.0.0",
3737
"babel-loader": "^8.0.6",

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
},
1111
"dependencies": {
1212
"@elastic/charts": "23.1.1",
13-
"@elastic/eui": "29.0.0",
13+
"@elastic/eui": "29.3.0",
1414
"@elastic/numeral": "^2.5.0",
1515
"@kbn/i18n": "1.0.0",
1616
"@kbn/monaco": "1.0.0",
@@ -39,6 +39,7 @@
3939
"devDependencies": {
4040
"@kbn/babel-preset": "1.0.0",
4141
"@kbn/dev-utils": "1.0.0",
42+
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
4243
"css-loader": "^3.4.2",
4344
"del": "^5.1.0",
4445
"loader-utils": "^1.2.3",

packages/kbn-ui-shared-deps/webpack.config.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,25 @@ exports.getWebpackConfig = ({ dev = false } = {}) => ({
7777
},
7878
],
7979
},
80+
{
81+
test: !dev ? /[\\\/]@elastic[\\\/]eui[\\\/].*\.js$/ : () => false,
82+
use: [
83+
{
84+
loader: 'babel-loader',
85+
options: {
86+
plugins: [
87+
[
88+
require.resolve('babel-plugin-transform-react-remove-prop-types'),
89+
{
90+
mode: 'remove',
91+
removeImport: true,
92+
},
93+
],
94+
],
95+
},
96+
},
97+
],
98+
},
8099
],
81100
},
82101

108 KB
Loading
113 KB
Loading

0 commit comments

Comments
 (0)