Add more information on kibana.json properties, update example plugins (#107600)

* Add more information on kibana.json properties, update example plugin kibana.jsons

* fix auto save fix

* Update anatomy_of_a_plugin.mdx

* Update anatomy_of_a_plugin.mdx

* update based on review comments

* Update anatomy_of_a_plugin.mdx

* Put kibanaVersion back and adjust the explanations of the fields

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
This commit is contained in:
Stacey Gammon 2021-08-09 13:32:07 -04:00 committed by GitHub
parent dcd628b8a3
commit b9f398875a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
17 changed files with 132 additions and 44 deletions

View file

@ -1,9 +1,23 @@
{
"id": "embeddableExplorer",
"version": "0.0.1",
"kibanaVersion": "kibana",
"version": "0.0.1",
"server": false,
"ui": true,
"requiredPlugins": ["uiActions", "inspector", "embeddable", "embeddableExamples", "developerExamples", "dashboard", "kibanaReact", "savedObjects"],
"owner": {
"name": "App Services",
"githubTeam": "kibana-app-services"
},
"description": "Example app that relies on registered functionality in the embeddable_examples plugin",
"requiredPlugins": [
"uiActions",
"inspector",
"embeddable",
"embeddableExamples",
"developerExamples",
"dashboard",
"kibanaReact",
"savedObjects"
],
"optionalPlugins": []
}