mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
- Closes https://github.com/elastic/kibana/issues/168607 ## Summary This PR allows to search in DocViewer not only for partial matches but also for wildcard matches. <img width="400" alt="Screenshot 2023-10-11 at 16 51 36" src="ec5dc57f
-e540-48c6-b43c-d79d64ef1809"> <img width="400" alt="Screenshot 2023-10-11 at 16 51 48" src="c68a3b70
-c195-4da9-bb0c-12ca38db269c"> <img width="400" alt="Screenshot 2023-10-11 at 16 52 24" src="d2d37976
-559d-4cc3-852f-5ad3175808cc"> ### Checklist - [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 - [x] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --------- Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Matthias Wilhelm <matthias.wilhelm@elastic.co>
26 lines
1 KiB
TypeScript
26 lines
1 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.
|
|
*/
|
|
|
|
export type { FieldTypeKnown, FieldBase } from './types';
|
|
|
|
export {
|
|
isKnownFieldType,
|
|
KNOWN_FIELD_TYPES,
|
|
KNOWN_FIELD_TYPE_LIST,
|
|
} from './src/utils/field_types';
|
|
|
|
export { getFieldIconType } from './src/utils/get_field_icon_type';
|
|
export { getFieldType } from './src/utils/get_field_type';
|
|
export { getFieldTypeDescription } from './src/utils/get_field_type_description';
|
|
export { getFieldTypeName, UNKNOWN_FIELD_TYPE_MESSAGE } from './src/utils/get_field_type_name';
|
|
export {
|
|
fieldNameWildcardMatcher,
|
|
getFieldSearchMatchingHighlight,
|
|
} from './src/utils/field_name_wildcard_matcher';
|
|
|
|
export { FieldIcon, type FieldIconProps, getFieldIconProps } from './src/components/field_icon';
|