-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removes editorConfig.collections (#89854)
* Removed editorConfig.collections * Fix CI * Update snapshots * Fix comments * Fix eslint Co-authored-by: Kibana Machine <[email protected]>
- Loading branch information
1 parent
81e4595
commit 1f0da4f
Showing
48 changed files
with
329 additions
and
582 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* 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. | ||
*/ | ||
|
||
import { i18n } from '@kbn/i18n'; | ||
import { MapTypes } from '../utils/map_types'; | ||
|
||
export const collections = { | ||
mapTypes: [ | ||
{ | ||
value: MapTypes.ScaledCircleMarkers, | ||
text: i18n.translate('tileMap.mapTypes.scaledCircleMarkersText', { | ||
defaultMessage: 'Scaled circle markers', | ||
}), | ||
}, | ||
{ | ||
value: MapTypes.ShadedCircleMarkers, | ||
text: i18n.translate('tileMap.mapTypes.shadedCircleMarkersText', { | ||
defaultMessage: 'Shaded circle markers', | ||
}), | ||
}, | ||
{ | ||
value: MapTypes.ShadedGeohashGrid, | ||
text: i18n.translate('tileMap.mapTypes.shadedGeohashGridText', { | ||
defaultMessage: 'Shaded geohash grid', | ||
}), | ||
}, | ||
{ | ||
value: MapTypes.Heatmap, | ||
text: i18n.translate('tileMap.mapTypes.heatmapText', { | ||
defaultMessage: 'Heatmap', | ||
}), | ||
}, | ||
], | ||
legendPositions: [ | ||
{ | ||
value: 'bottomleft', | ||
text: i18n.translate('tileMap.legendPositions.bottomLeftText', { | ||
defaultMessage: 'Bottom left', | ||
}), | ||
}, | ||
{ | ||
value: 'bottomright', | ||
text: i18n.translate('tileMap.legendPositions.bottomRightText', { | ||
defaultMessage: 'Bottom right', | ||
}), | ||
}, | ||
{ | ||
value: 'topleft', | ||
text: i18n.translate('tileMap.legendPositions.topLeftText', { | ||
defaultMessage: 'Top left', | ||
}), | ||
}, | ||
{ | ||
value: 'topright', | ||
text: i18n.translate('tileMap.legendPositions.topRightText', { | ||
defaultMessage: 'Top right', | ||
}), | ||
}, | ||
], | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.