Skip to content

Commit a39f8af

Browse files
committed
Merge branch 'master' into reporting/fix-pagination
2 parents e60f215 + f621b0e commit a39f8af

File tree

156 files changed

+13137
-9769
lines changed

Some content is hidden

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

156 files changed

+13137
-9769
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Summarize your PR. If it involves visual changes include a screenshot or gif.
77
Delete any items that are not applicable to this PR.
88

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)
10-
- [ ] [Documentation](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#writing-documentation) was added for features that require explanation or tutorials
11-
- [ ] [Unit or functional tests](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#cross-browser-compatibility) were updated or added to match the most common scenarios
10+
- [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials
11+
- [ ] [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
1212
- [ ] 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)
1313
- [ ] 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)
1414
- [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers)
1515

1616
### For maintainers
1717

18-
- [ ] This was checked for breaking API changes and was [labeled appropriately](https://github.com/elastic/kibana/blob/master/CONTRIBUTING.md#release-notes-process)
18+
- [ ] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)

TYPESCRIPT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ declare module '@elastic/eui' {
6262
1. Open up the file and see how easy it would be to convert to TypeScript.
6363
2. If it's very straightforward, go for it.
6464
3. If it's not and you wish to stay focused on your own PR, get around the error by adding a type definition file in the same folder as the dependency, with the same name.
65-
4. Minimally you will need to type what you are using in your PR. No need to go crazy to fully type the thing or you might be there for awhile depending on what's available.
65+
4. Minimally you will need to type what you are using in your PR. No need to go crazy to fully type the thing or you might be there for a while depending on what's available.
6666

6767
For example:
6868

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [FieldList](./kibana-plugin-plugins-data-public.fieldlist.md) &gt; [getAll](./kibana-plugin-plugins-data-public.fieldlist.getall.md)
4+
5+
## FieldList.getAll property
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
readonly getAll: () => IndexPatternField[];
11+
```

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ export declare class FieldList extends Array<IndexPatternField> implements IInde
2121
| Property | Modifiers | Type | Description |
2222
| --- | --- | --- | --- |
2323
| [add](./kibana-plugin-plugins-data-public.fieldlist.add.md) | | <code>(field: FieldSpec) =&gt; void</code> | |
24+
| [getAll](./kibana-plugin-plugins-data-public.fieldlist.getall.md) | | <code>() =&gt; IndexPatternField[]</code> | |
2425
| [getByName](./kibana-plugin-plugins-data-public.fieldlist.getbyname.md) | | <code>(name: IndexPatternField['name']) =&gt; IndexPatternField &#124; undefined</code> | |
2526
| [getByType](./kibana-plugin-plugins-data-public.fieldlist.getbytype.md) | | <code>(type: IndexPatternField['type']) =&gt; any[]</code> | |
2627
| [remove](./kibana-plugin-plugins-data-public.fieldlist.remove.md) | | <code>(field: IFieldType) =&gt; void</code> | |
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) &gt; [IIndexPatternFieldList](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.md) &gt; [getAll](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.getall.md)
4+
5+
## IIndexPatternFieldList.getAll() method
6+
7+
<b>Signature:</b>
8+
9+
```typescript
10+
getAll(): IndexPatternField[];
11+
```
12+
<b>Returns:</b>
13+
14+
`IndexPatternField[]`
15+

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ export interface IIndexPatternFieldList extends Array<IndexPatternField>
1515
| Method | Description |
1616
| --- | --- |
1717
| [add(field)](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.add.md) | |
18+
| [getAll()](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.getall.md) | |
1819
| [getByName(name)](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.getbyname.md) | |
1920
| [getByType(type)](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.getbytype.md) | |
2021
| [remove(field)](./kibana-plugin-plugins-data-public.iindexpatternfieldlist.remove.md) | |

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -147,12 +147,12 @@
147147
"JSONStream": "1.3.5",
148148
"abortcontroller-polyfill": "^1.4.0",
149149
"accept": "3.0.2",
150-
"angular": "^1.7.9",
151-
"angular-aria": "^1.7.9",
150+
"angular": "^1.8.0",
151+
"angular-aria": "^1.8.0",
152152
"angular-elastic": "^2.5.1",
153153
"angular-recursion": "^1.0.5",
154-
"angular-route": "^1.7.9",
155-
"angular-sanitize": "^1.7.9",
154+
"angular-route": "^1.8.0",
155+
"angular-sanitize": "^1.8.0",
156156
"angular-sortable-view": "^0.0.17",
157157
"autoprefixer": "^9.7.4",
158158
"babel-loader": "^8.0.6",

packages/kbn-dev-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"dependencies": {
1313
"axios": "^0.19.0",
14-
"chalk": "^2.4.2",
14+
"chalk": "^4.1.0",
1515
"dedent": "^0.7.0",
1616
"execa": "^4.0.2",
1717
"exit-hook": "^2.2.0",

packages/kbn-es/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"@elastic/elasticsearch": "7.9.0-rc.1",
99
"@kbn/dev-utils": "1.0.0",
1010
"abort-controller": "^2.0.3",
11-
"chalk": "^2.4.2",
11+
"chalk": "^4.1.0",
1212
"dedent": "^0.7.0",
1313
"del": "^5.1.0",
1414
"execa": "^4.0.2",

packages/kbn-plugin-generator/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"version": "1.0.0",
66
"dependencies": {
7-
"chalk": "^2.4.2",
7+
"chalk": "^4.1.0",
88
"dedent": "^0.7.0",
99
"execa": "^4.0.2",
1010
"getopts": "^2.2.4",

0 commit comments

Comments
 (0)