kibana/x-pack/examples
Nathan Reese 05916056cd
[embeddable] make presentation interface names consistent (#205279)
PR cleans up presentation interface names for consistentency
* adds `$` suffix to all observables. For example, `dataLoading` =>
`dataLoading$`
* removes `Panel` naming convention from interface names since an api
may not be a panel, an api may be a dashboard. For example,
`PublisesPanelTitle` => `PublishesTitle`

#### Note to Reviewers
Pay special attention to any place where your application creates an
untyped API. In the example below, there is no typescript violation when
the parent returns `dataLoading` instead of `dataLoading$` since the
parent is not typed as `PublishesDataLoading`. Please check for
instances like these.

```
<ReactEmbeddableRenderer
  getParentApi={() => {
    dataLoading: new BehaviorSubject()
  }}
/>
```

---------

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
2025-01-22 10:46:01 -06:00
..
alerting_example [ResponseOps][Alerting] Decouple feature IDs from consumers (#183756) 2024-12-03 12:21:53 +02:00
embedded_lens_example Preparation for High Contrast Mode, Analytics Experience domains (#202608) 2024-12-12 13:16:07 -06:00
exploratory_view_example Address some of the no_group_crossing dependencies (#198261) 2024-11-06 08:44:35 -06:00
gen_ai_streaming_response_example [ResponseOps][UI] - EUI Visual Refresh integration and QA (#204352) 2025-01-15 09:07:25 +02:00
lens_config_builder_example Make the formula api optional for the lens builder (#179255) 2024-03-25 07:09:37 -07:00
lens_embeddable_inline_editing_example [Lens] Embeddable react refactor (#186642) 2024-11-26 09:34:13 +01:00
screenshotting_example More strict plugin type definitions (#205232) 2025-01-07 16:41:15 +01:00
testing_embedded_lens [Lens] Embeddable react refactor (#186642) 2024-11-26 09:34:13 +01:00
third_party_lens_navigation_prompt [Core] Deprecate nav link status (#176383) 2024-02-16 11:06:33 -07:00
third_party_maps_source_example Move @elastic/kibana-gis ownership to @elastic/kibana-presentation (#192521) 2024-09-16 09:50:50 -05:00
third_party_vis_lens_example [Lens] Chart switch redesign (#187475) 2024-09-05 12:32:45 +02:00
triggers_actions_ui_example Preparation for High Contrast Mode, ResponseOps domains (#202610) 2024-12-12 14:34:44 -06:00
ui_actions_enhanced_examples [embeddable] make presentation interface names consistent (#205279) 2025-01-22 10:46:01 -06:00
README.md

Example plugins

This folder contains X-Pack example plugins. To run the plugins in this folder, use the --run-examples flag, via

yarn start --run-examples