Skip to content

Commit 17b25b8

Browse files
Merge branch 'main' into field-types-help
2 parents e24a184 + ae68c1c commit 17b25b8

321 files changed

Lines changed: 4867 additions & 2793 deletions

File tree

Some content is hidden

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

.github/CODEOWNERS

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,6 @@
55
# The #CC# prefix delineates Code Coverage,
66
# used for the 'team' designator within Kibana Stats
77

8-
# Tech leads
9-
/dev_docs @elastic/kibana-tech-leads
10-
/src/dev/license_checker/config.ts @elastic/kibana-tech-leads
11-
/packages/kbn-docs-utils/ @elastic/kibana-tech-leads @elastic/kibana-operations
12-
138
# Virtual teams
149
/x-pack/plugins/rule_registry/ @elastic/rac @elastic/response-ops
1510

@@ -216,6 +211,8 @@
216211
/packages/kbn-mapbox-gl @elastic/kibana-gis
217212

218213
# Operations
214+
/src/dev/license_checker/config.ts @elastic/kibana-operations
215+
/packages/kbn-docs-utils/ @elastic/kibana-operations
219216
/src/dev/ @elastic/kibana-operations
220217
/src/setup_node_env/ @elastic/kibana-operations
221218
/packages/*eslint*/ @elastic/kibana-operations

.i18nrc.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666
"share": "src/plugins/share",
6767
"sharedUX": "src/plugins/shared_ux",
6868
"sharedUXComponents": "packages/kbn-shared-ux-components/src",
69+
"coloring": "packages/kbn-coloring/src",
6970
"statusPage": "src/legacy/core_plugins/status_page",
7071
"telemetry": [
7172
"src/plugins/telemetry",
@@ -94,4 +95,4 @@
9495
"unifiedSearch": "src/plugins/unified_search"
9596
},
9697
"translations": []
97-
}
98+
}
-44.7 KB
Loading

docs/development/core/public/kibana-plugin-core-public.app.id.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
## App.id property
66

7-
The unique identifier of the application
7+
The unique identifier of the application.
8+
9+
Can only be composed of alphanumeric characters, `-`<!-- -->, `:` and `_`
810

911
<b>Signature:</b>
1012

docs/development/core/public/kibana-plugin-core-public.app.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export interface App<HistoryLocationState = unknown> extends AppNavOptions
2323
| [deepLinks?](./kibana-plugin-core-public.app.deeplinks.md) | AppDeepLink\[\] | <i>(Optional)</i> Input type for registering secondary in-app locations for an application.<!-- -->Deep links must include at least one of <code>path</code> or <code>deepLinks</code>. A deep link that does not have a <code>path</code> represents a topological level in the application's hierarchy, but does not have a destination URL that is user-accessible. |
2424
| [defaultPath?](./kibana-plugin-core-public.app.defaultpath.md) | string | <i>(Optional)</i> Allow to define the default path a user should be directed to when navigating to the app. When defined, this value will be used as a default for the <code>path</code> option when calling [navigateToApp](./kibana-plugin-core-public.applicationstart.navigatetoapp.md)<!-- -->\`<!-- -->, and will also be appended to the [application navLink](./kibana-plugin-core-public.chromenavlink.md) in the navigation bar. |
2525
| [exactRoute?](./kibana-plugin-core-public.app.exactroute.md) | boolean | <i>(Optional)</i> If set to true, the application's route will only be checked against an exact match. Defaults to <code>false</code>. |
26-
| [id](./kibana-plugin-core-public.app.id.md) | string | The unique identifier of the application |
26+
| [id](./kibana-plugin-core-public.app.id.md) | string | The unique identifier of the application.<!-- -->Can only be composed of alphanumeric characters, <code>-</code>, <code>:</code> and <code>_</code> |
2727
| [keywords?](./kibana-plugin-core-public.app.keywords.md) | string\[\] | <i>(Optional)</i> Optional keywords to match with in deep links search. Omit if this part of the hierarchy does not have a page URL. |
2828
| [mount](./kibana-plugin-core-public.app.mount.md) | AppMount&lt;HistoryLocationState&gt; | A mount function called when the user navigates to this app's route. |
2929
| [navLinkStatus?](./kibana-plugin-core-public.app.navlinkstatus.md) | AppNavLinkStatus | <i>(Optional)</i> The initial status of the application's navLink. Defaulting to <code>visible</code> if <code>status</code> is <code>accessible</code> and <code>hidden</code> if status is <code>inaccessible</code> See [AppNavLinkStatus](./kibana-plugin-core-public.appnavlinkstatus.md) |

docs/development/core/public/kibana-plugin-core-public.applicationstart.navigatetourl.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ navigateToUrl(url: string, options?: NavigateToUrlOptions): Promise<void>;
2323
| Parameter | Type | Description |
2424
| --- | --- | --- |
2525
| url | string | an absolute URL, an absolute path or a relative path, to navigate to. |
26-
| options | NavigateToUrlOptions | |
26+
| options | NavigateToUrlOptions | navigation options |
2727

2828
<b>Returns:</b>
2929

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [DiscoveredPlugin](./kibana-plugin-core-server.discoveredplugin.md) &gt; [enabledOnAnonymousPages](./kibana-plugin-core-server.discoveredplugin.enabledonanonymouspages.md)
4+
5+
## DiscoveredPlugin.enabledOnAnonymousPages property
6+
7+
Specifies whether this plugin - and its required dependencies - will be enabled for anonymous pages (login page, status page when configured, etc.) Default is false.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
readonly enabledOnAnonymousPages?: boolean;
13+
```

docs/development/core/server/kibana-plugin-core-server.discoveredplugin.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ export interface DiscoveredPlugin
1717
| Property | Type | Description |
1818
| --- | --- | --- |
1919
| [configPath](./kibana-plugin-core-server.discoveredplugin.configpath.md) | ConfigPath | Root configuration path used by the plugin, defaults to "id" in snake\_case format. |
20+
| [enabledOnAnonymousPages?](./kibana-plugin-core-server.discoveredplugin.enabledonanonymouspages.md) | boolean | <i>(Optional)</i> Specifies whether this plugin - and its required dependencies - will be enabled for anonymous pages (login page, status page when configured, etc.) Default is false. |
2021
| [id](./kibana-plugin-core-server.discoveredplugin.id.md) | PluginName | Identifier of the plugin. |
2122
| [optionalPlugins](./kibana-plugin-core-server.discoveredplugin.optionalplugins.md) | readonly PluginName\[\] | An optional list of the other plugins that if installed and enabled \*\*may be\*\* leveraged by this plugin for some additional functionality but otherwise are not required for this plugin to work properly. |
2223
| [requiredBundles](./kibana-plugin-core-server.discoveredplugin.requiredbundles.md) | readonly PluginName\[\] | List of plugin ids that this plugin's UI code imports modules from that are not in <code>requiredPlugins</code>. |

docs/development/core/server/kibana-plugin-core-server.irenderoptions.includeusersettings.md

Lines changed: 0 additions & 13 deletions
This file was deleted.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
2+
3+
[Home](./index.md) &gt; [kibana-plugin-core-server](./kibana-plugin-core-server.md) &gt; [IRenderOptions](./kibana-plugin-core-server.irenderoptions.md) &gt; [isAnonymousPage](./kibana-plugin-core-server.irenderoptions.isanonymouspage.md)
4+
5+
## IRenderOptions.isAnonymousPage property
6+
7+
Set whether the page is anonymous, which determines what plugins are enabled and whether to output user settings in the page metadata. `false` by default.
8+
9+
<b>Signature:</b>
10+
11+
```typescript
12+
isAnonymousPage?: boolean;
13+
```

0 commit comments

Comments
 (0)