mirror of
https://github.com/wazuh/wazuh-dashboard.git
synced 2025-12-13 07:03:52 -06:00
* feat(Expressions): Initial demo plugin Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * feat(Expressions): Adds handlers tab Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * feat(Expressions): Adds playground tab Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * chore: Better expression playground messaging Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * feat(Expressions): Adds expression explorer Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * feat(Expressions): A better explorer Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * fix(Expressions): Fix basic demo abort error Signed-off-by: Ashwin Pc <ashwinpc@amazon.com> * Updates readme and fixes rendering visualizations Signed-off-by: Ashwin Pc <ashwinpc@amazon.com>
16 lines
440 B
TypeScript
16 lines
440 B
TypeScript
/*
|
|
* Copyright OpenSearch Contributors
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
import './index.scss';
|
|
|
|
import { ExpressionsExamplePlugin } from './plugin';
|
|
|
|
// This exports static code and TypeScript types,
|
|
// as well as, OpenSearch Dashboards Platform `plugin()` initializer.
|
|
export function plugin() {
|
|
return new ExpressionsExamplePlugin();
|
|
}
|
|
export { ExpressionsExamplePluginSetup, ExpressionsExamplePluginStart } from './types';
|