mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 02:09:32 -04:00
- Closes https://github.com/elastic/kibana/issues/149336 ## Summary This PR converts `unifiedFieldList` plugin into a new `@kbn/unified-field-list` package. Had to also move some deps: - from `uiActions` plugin to the existing `@kbn/ui-actions-browser` package - from `data` plugin to a new `@kbn/data-service` package Please test that Field Stats from the package are still working on your pages. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
21 lines
705 B
TypeScript
21 lines
705 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/types';
|
|
export type { Trigger, RowClickContext } from './src/triggers';
|
|
export {
|
|
VISUALIZE_FIELD_TRIGGER,
|
|
visualizeFieldTrigger,
|
|
VISUALIZE_GEO_FIELD_TRIGGER,
|
|
visualizeGeoFieldTrigger,
|
|
ROW_CLICK_TRIGGER,
|
|
rowClickTrigger,
|
|
CATEGORIZE_FIELD_TRIGGER,
|
|
categorizeFieldTrigger,
|
|
defaultTrigger,
|
|
} from './src/triggers';
|