mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
## Summary
Partially addresses https://github.com/elastic/kibana-team/issues/805
Follows https://github.com/elastic/kibana/pull/180003
These changes come up from searching in the code and finding where
certain kinds of deprecated AppEx-SharedUX modules are imported.
**Reviewers: Please interact with critical paths through the UI
components touched in this PR, ESPECIALLY in terms of testing dark mode
and i18n.**
This focuses on code within AppEx-SharedUX. [Reporting changes are
separate](https://github.com/elastic/kibana/pull/).
<img width="1107" alt="image"
src="c0d2ce08
-ac35-45a7-8192-0b2256fceb0e">
### Checklist
Delete any items that are not applicable to this PR.
- [x] [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
- [ ] 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))
- [ ] This was checked for [cross-browser
compatibility](https://www.elastic.co/support/matrix#matrix_browsers)
42 lines
1.4 KiB
TypeScript
42 lines
1.4 KiB
TypeScript
/*
|
|
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
|
* or more contributor license agreements. Licensed under the Elastic License
|
|
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
|
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
import { Plugin, CoreSetup, CoreStart } from '@kbn/core/public';
|
|
import { UiActionsSetup, UiActionsStart } from '@kbn/ui-actions-plugin/public';
|
|
import { createHelloWorldActionDefinition } from './hello_world_action';
|
|
import { helloWorldTrigger } from './hello_world_trigger';
|
|
|
|
export interface UiActionExamplesSetupDependencies {
|
|
uiActions: UiActionsSetup;
|
|
}
|
|
|
|
export interface UiActionExamplesStartDependencies {
|
|
uiActions: UiActionsStart;
|
|
}
|
|
|
|
export class UiActionExamplesPlugin
|
|
implements
|
|
Plugin<void, void, UiActionExamplesSetupDependencies, UiActionExamplesStartDependencies>
|
|
{
|
|
public setup(
|
|
core: CoreSetup<UiActionExamplesStartDependencies>,
|
|
{ uiActions }: UiActionExamplesSetupDependencies
|
|
) {
|
|
uiActions.registerTrigger(helloWorldTrigger);
|
|
|
|
const helloWorldAction = createHelloWorldActionDefinition(
|
|
async () => (await core.getStartServices())[0]
|
|
);
|
|
|
|
uiActions.addTriggerAction(helloWorldTrigger.id, helloWorldAction);
|
|
}
|
|
|
|
public start(_core: CoreStart, _plugins: UiActionExamplesStartDependencies) {}
|
|
|
|
public stop() {}
|
|
}
|