This modifies the way Kibana reads out metadata about the TMS service used in the Tilemap Visualization.
- Kibana now uses an external service that exposes a 'manifest'. This contains metadata about one or more available TMS services
- Kibana continues to respect the configuration of the kibana.yml file. If a custom TMS service is set here, the manifest will not be consulted
- This also adds an API extension point for other plugins to add additional query parameters to the requests to the manifest service and for the individual tile requests to the TMS.
* adding UI styles (should extract)
* adding heatmap vislib type
* adding heatmap visualization
* adding documentation
* renaming heatmap options
* fixing options issues
* fixing color selection
* fixing / adding tests
* adding more color schemas
* adding more options
* adding cell labels
* fixing selenium test
* only allow to rotate labels by 90 degrees
* converting color number slider to number input
* hide labels if they don't fit
* fixing small issues
* improved range options
* fixing based on Thomas' review
* rebasing on master and fixing linting issues
* adding selenium tests
* fixing alerts
* fixing padding
* fixing based on review
* fixing math
* fixing custom range options
* removing $timeout
* notification in case labels were hidden
* fixing tests
* fixing based on last review
* fixing based on thomas' review
* [WIP] new scripted field tests
* Final improvements on 12 new tests for 1 expression and 2 painless scripted fields
* Add try loops around testing first Discover doc
* Set timezone to UTC and adjusted data accordingly
* Added boolean and date Painless scripted field types
* Remove unused (non-working) methods
* Fix lint error
* Added several data-test-subj attributes and used them in the tests
* Reverting previous change to getBarChartData
* upgrade eslint, all related deps, and config files
* replace gruntify-eslint with basic eslint-cli wrapper
* arrow-IIFEs must be invoked outside of the parens
* move import statements before their use
* reindent to satisfy new indentation check algorithm
* place missing semicolon
* ignore copy-pasted decode geohash code
* [grunt/eslint] fix argument spacing
* [gurnt/eslint] add comment about contents of report
* [grunt/tasks] use `export default`
Multiple changes to the Vislib point series charts. Before each of the chart (bar/area/line) would be an independent unit responsible for drawing all of its parts (axes, titles). This change splits things up so we can have greater control and better code reuse.
converting to ES6
moving axes out of each chart
joining both axes types (x and y) into a common axis type
allowing multiple axes
allowing top/bottom/left/right axis positioning
introducing new chart type 'point_series' which can combine bar/line/area series
making each of the series (bar/line/area) direction independent (vertical/horizontal charts)
A tag cloud visualization is a visual representation of text data, typically used to visualize free form text. Tags are usually single words. The font size of word corresponds with its importance.
* added source filtering
* ditched the new 'retrieved fields' tab and added checkbox to exclude a field in the field control
* disable field exclusion checkbox if field is a metafield
* [indexPattern] copy excluded field property when refreshing fields
* [indexPattern/field] move isMetaField consideration into Field
* [indexPattern/edit] invert the "retreived" column, for accuracy
* [indexPattern/field] touchup the field.exclude message
* Fix typo
* [indexPattern] handle index patterns without fields
* [courier/searchSource] auto add source filter for index pattern
* [docTable] remove irrelevant test about source filtering
* [settings/indices] cleanup imports
* [settings/indexPattern/fields] add "field filters" tab
* [imports] fix old testUtils import
* [ui/fieldWildcard] add lib to match names based on field-style wildcards
* [settings/fieldFilters] list filter matches, remove excluded fields from fieldata_fields
* [fieldWildcard] properly escape regexp control chars
* [settings/indexPatterns] mark fields excluded if they match an exclude pattern
* [fieldWildcard] properly bind the regexp to the ends
* [indexPattern] remove unneeded lodash chain
* [settings/indices] use settings-indices- prefix for tab direcives
* corrected rebase on master
* Do not match exclusion on meta/scripted fields. Disable filter bar when on 'Filter fields' tab. Removed exclusion checkbox in the field controls page. Corrected typos. Improved documentation phrasing.
* corrected error in merge with _index_pattern
* removed unused code
* added missing fieldFilters to test dumps
* corrected merge with master
* removed default empty array in the index pattern schema, and check if fieldFilters exists
* restricts the source with the exclusion patterns set for that index pattern
* renamed field filters to source filters and explicitely retrieve the source in the doc controller
* renamed variables/moved files from field filters to source filters
* Renamed _field_types.js to _edit_sections.js to better reflect what it is for. Corrected editting typo. Renamed exclude column name to excluded. Corrected HTML styling. Removed unused config parameters in field_wildcard.
* Removed lines that were specifying the _source field since they were made unnecessary by https://github.com/elastic/kibana/pull/7402/files#diff-d1695ba2026ff89878f9e4f4de683758R50
* moved fielddata_fields source filtering to where it is initialized
* two-column layout for the source filters indices section
* corrected tests
* use the same table layout as in the other index sections.
Filter input correctly restricts source filters.
Do not match .keyword fields.
* Filter out .raw suffix from possible matches.
Removed unused HTML file.
Corrected bug that allowed to save an empty source filter.
* exclude is deprecated, should be excludes
* improved description
* changed as per code review
* removed filtering logic for keyword and raw fields
* Fix bug where the loading indicator was wider than the screen, allowing you to drag a dashboard panel very wide and break the UI.
* Refactor kbnLoadingIndicator to be a standalone component.
* Make loadingIndicator fixed position so it doesn't disrupt the layout when it appears and disappears.
* Uncouple from .spinner styles.
* Set a max-width on it.
* Rename Common PageObject getSpinnerDone method to isGlobalLoadingIndicatorHidden.
Any `sleep()` calls preceding a `verifyChartData()` call seem to be
redundant, because `verifyChartData()` already uses `try()` to avoid
flakyness due to timing.
A few more assertions are now wrapped in `try()` calls to avoid
occasional failures due to the timing of rendering.