kibana/examples/embeddable_explorer/kibana.jsonc
Anton Dosov 65fd7ad260
Clean up saved object based embeddable examples (#162987)
## Summary

These examples are outdated and don't show recent embeddable best
practices. They also use client-side saved object client and block
making `SavedObjectFinder` backward compatible
https://github.com/elastic/kibana/pull/162904 as the `foobar` saved
objects need to be added to content management. We decided that it is
better to clean them up, as fixing them is not a small effort and it is
not worth it on this point as a large embeddable refactor is coming.
2023-08-03 03:14:36 -07:00

20 lines
491 B
JSON

{
"type": "plugin",
"id": "@kbn/embeddable-explorer-plugin",
"owner": "@elastic/kibana-presentation",
"description": "Example app that relies on registered functionality in the embeddable_examples plugin",
"plugin": {
"id": "embeddableExplorer",
"server": false,
"browser": true,
"requiredPlugins": [
"uiActions",
"inspector",
"embeddable",
"embeddableExamples",
"developerExamples",
"dashboard",
"kibanaReact"
]
}
}