mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
## Summary - [x] Adds updated warning messaging for trusted apps entries that use wildcards `*?` with the "IS" operator - [x] Three different warnings: callout, individual entry item warnings and a final confirmation modal when the user tries to add a trusted app with ineffective IS / wildcard combination etnry. - [x] Unit tests # Screenshots <img width="829" alt="image" src="c7beec62
-a249-4535-ac0b-34f9be57f542"> <img width="1649" alt="image" src="22f38f1b
-7e6b-4b69-8d03-4d74d8674fa6"> --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
20 lines
884 B
TypeScript
20 lines
884 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';
|
|
export * from './src/wildcard_with_wrong_operator_callout';
|