[Index pattern field editor] Add preview for runtime fields (#100198)

This commit is contained in:
Sébastien Loix 2021-08-13 23:27:23 +01:00 committed by GitHub
parent d78d66d424
commit b24d44d165
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
103 changed files with 5263 additions and 734 deletions

View file

@ -67,6 +67,7 @@ export const runtimeMappingsSchema = schema.maybe(
schema.literal('date'),
schema.literal('ip'),
schema.literal('boolean'),
schema.literal('geo_point'),
]),
script: schema.maybe(
schema.oneOf([

View file

@ -12,3 +12,5 @@ export {
patternValidator,
ChartData,
} from '../../ml/common';
export { RUNTIME_FIELD_TYPES } from '../../../../src/plugins/data/common';