mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
## Summary - Continuing from [PR](https://github.com/elastic/kibana/pull/146121) to apply the same changes to the `Add to Shared Lists`. - Fix showing the number of Linked rules correctly => in `route.ts` use the `list.namespaceType` instead of namespaceTypes array - Apply docs comment on the text - Use the HeaderMenu item from the `kbn` package for the `Number of Linked rules` menu - Allow displaying the HeaderMenu without iconType - Update snapshots and add tests in HeaderMenu
19 lines
824 B
TypeScript
19 lines
824 B
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.
|
|
*/
|
|
|
|
export * from './src/search_bar';
|
|
export * from './src/empty_viewer_state';
|
|
export * from './src/pagination/pagination';
|
|
// export * from './src/exceptions_utility/exceptions_utility';
|
|
export * from './src/exception_items';
|
|
export * from './src/exception_item_card';
|
|
export * from './src/value_with_space_warning';
|
|
export * from './src/types';
|
|
export * from './src/list_header';
|
|
export * from './src/header_menu';
|
|
export * from './src/generate_linked_rules_menu_item';
|