Skip to content

Commit 09c2eac

Browse files
Merge branch 'master' into 75438
2 parents 8004b28 + 7c3ad23 commit 09c2eac

File tree

803 files changed

+17126
-60673
lines changed

Some content is hidden

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

803 files changed

+17126
-60673
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ target
3939
/x-pack/legacy/plugins/maps/public/vendor/**
4040

4141
# package overrides
42-
/packages/eslint-config-kibana
42+
/packages/elastic-eslint-config-kibana
4343
/packages/kbn-interpreter/src/common/lib/grammar.js
4444
/packages/kbn-plugin-generator/template
4545
/packages/kbn-pm/dist

.eslintrc.js

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,6 @@ module.exports = {
9494
'jsx-a11y/no-onchange': 'off',
9595
},
9696
},
97-
{
98-
files: ['src/plugins/es_ui_shared/**/*.{js,mjs,ts,tsx}'],
99-
rules: {
100-
'react-hooks/exhaustive-deps': 'off',
101-
},
102-
},
10397
{
10498
files: ['src/plugins/kibana_react/**/*.{js,mjs,ts,tsx}'],
10599
rules: {
@@ -125,25 +119,12 @@ module.exports = {
125119
'jsx-a11y/click-events-have-key-events': 'off',
126120
},
127121
},
128-
{
129-
files: ['x-pack/legacy/plugins/index_management/**/*.{js,mjs,ts,tsx}'],
130-
rules: {
131-
'react-hooks/exhaustive-deps': 'off',
132-
'react-hooks/rules-of-hooks': 'off',
133-
},
134-
},
135122
{
136123
files: ['x-pack/plugins/ml/**/*.{js,mjs,ts,tsx}'],
137124
rules: {
138125
'react-hooks/exhaustive-deps': 'off',
139126
},
140127
},
141-
{
142-
files: ['x-pack/legacy/plugins/snapshot_restore/**/*.{js,mjs,ts,tsx}'],
143-
rules: {
144-
'react-hooks/exhaustive-deps': 'off',
145-
},
146-
},
147128

148129
/**
149130
* Files that require Apache 2.0 headers, settings

.github/CODEOWNERS

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@
8585
/x-pack/plugins/ingest_manager/ @elastic/ingest-management
8686
/x-pack/legacy/plugins/ingest_manager/ @elastic/ingest-management
8787
/x-pack/plugins/observability/ @elastic/observability-ui
88-
/x-pack/legacy/plugins/monitoring/ @elastic/stack-monitoring-ui
8988
/x-pack/plugins/monitoring/ @elastic/stack-monitoring-ui
9089
/x-pack/plugins/uptime @elastic/uptime
9190

docs/developer/getting-started/running-kibana-advanced.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ If you’re installing dependencies and seeing an error that looks
4848
something like
4949

5050
....
51-
Unsupported URL Type: link:packages/eslint-config-kibana
51+
Unsupported URL Type: link:packages/elastic-eslint-config-kibana
5252
....
5353

5454
you’re likely running `npm`. To install dependencies in {kib} you

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.init.md

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,8 @@
77
<b>Signature:</b>
88

99
```typescript
10-
init(forceFieldRefresh?: boolean): Promise<this>;
10+
init(): Promise<this>;
1111
```
12-
13-
## Parameters
14-
15-
| Parameter | Type | Description |
16-
| --- | --- | --- |
17-
| forceFieldRefresh | <code>boolean</code> | |
18-
1912
<b>Returns:</b>
2013

2114
`Promise<this>`

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.indexpattern.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export declare class IndexPattern implements IIndexPattern
5050
| [getScriptedFields()](./kibana-plugin-plugins-data-public.indexpattern.getscriptedfields.md) | | |
5151
| [getSourceFiltering()](./kibana-plugin-plugins-data-public.indexpattern.getsourcefiltering.md) | | |
5252
| [getTimeField()](./kibana-plugin-plugins-data-public.indexpattern.gettimefield.md) | | |
53-
| [init(forceFieldRefresh)](./kibana-plugin-plugins-data-public.indexpattern.init.md) | | |
53+
| [init()](./kibana-plugin-plugins-data-public.indexpattern.init.md) | | |
5454
| [initFromSpec(spec)](./kibana-plugin-plugins-data-public.indexpattern.initfromspec.md) | | |
5555
| [isTimeBased()](./kibana-plugin-plugins-data-public.indexpattern.istimebased.md) | | |
5656
| [isTimeBasedWildcard()](./kibana-plugin-plugins-data-public.indexpattern.istimebasedwildcard.md) | | |

docs/development/plugins/data/public/kibana-plugin-plugins-data-public.querystringinput.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
<b>Signature:</b>
88

99
```typescript
10-
QueryStringInput: React.FC<Pick<Props, "query" | "prepend" | "placeholder" | "onChange" | "onBlur" | "onSubmit" | "indexPatterns" | "dataTestSubj" | "screenTitle" | "disableAutoFocus" | "persistedLog" | "bubbleSubmitEvent" | "languageSwitcherPopoverAnchorPosition" | "onChangeQueryInputFocus">>
10+
QueryStringInput: React.FC<Pick<Props, "query" | "prepend" | "size" | "placeholder" | "onChange" | "onBlur" | "onSubmit" | "indexPatterns" | "dataTestSubj" | "screenTitle" | "disableAutoFocus" | "persistedLog" | "bubbleSubmitEvent" | "languageSwitcherPopoverAnchorPosition" | "onChangeQueryInputFocus">>
1111
```

package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,15 +117,18 @@
117117
"**/@types/*/**",
118118
"**/grunt-*",
119119
"**/grunt-*/**",
120-
"x-pack/typescript"
120+
"x-pack/typescript",
121+
"@elastic/eui/rehype-react",
122+
"@elastic/eui/remark-rehype",
123+
"@elastic/eui/remark-rehype/**"
121124
]
122125
},
123126
"dependencies": {
124127
"@babel/core": "^7.11.1",
125128
"@babel/register": "^7.10.5",
126129
"@elastic/datemath": "5.0.3",
127130
"@elastic/elasticsearch": "7.9.0-rc.2",
128-
"@elastic/eui": "27.4.1",
131+
"@elastic/eui": "28.2.0",
129132
"@elastic/good": "8.1.1-kibana2",
130133
"@elastic/numeral": "^2.5.0",
131134
"@elastic/request-crypto": "1.1.4",
@@ -227,7 +230,7 @@
227230
"@babel/parser": "^7.11.2",
228231
"@babel/types": "^7.11.0",
229232
"@elastic/apm-rum": "^5.5.0",
230-
"@elastic/charts": "19.8.1",
233+
"@elastic/charts": "21.0.1",
231234
"@elastic/ems-client": "7.9.3",
232235
"@elastic/eslint-config-kibana": "0.15.0",
233236
"@elastic/eslint-plugin-eui": "0.0.2",

0 commit comments

Comments
 (0)