forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump jquery from 3.4.1 to 3.5.0 (elastic#64884)
# Conflicts: # packages/kbn-ui-shared-deps/package.json # src/plugins/visualize/public/application/editor/editor.html # x-pack/plugins/monitoring/public/directives/main/index.html
- Loading branch information
1 parent
bdb54bb
commit 2a861ce
Showing
14 changed files
with
442 additions
and
21 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
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
104 changes: 104 additions & 0 deletions
104
src/plugins/visualize/public/application/editor/editor.html
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,104 @@ | ||
<visualize-app class="app-container visEditor visEditor--{{ vis.type.name }}"> | ||
|
||
<!-- | ||
Local nav. | ||
Most visualizations have all search bar components enabled | ||
Some visualizations have fewer options but all visualizations have a search bar | ||
which is why show-search-baris set to "true". | ||
All visualizaions also have least a timepicker \ autorefresh component, which is why | ||
show-query-bar is set to "true". | ||
--> | ||
<kbn-top-nav | ||
ng-if="isVisible" | ||
app-name="'visualize'" | ||
config="topNavMenu" | ||
show-search-bar="true" | ||
show-query-bar="true" | ||
show-query-input="showQueryInput()" | ||
show-filter-bar="showFilterBar() && isVisible" | ||
show-date-picker="showQueryBarTimePicker()" | ||
show-auto-refresh-only="!showQueryBarTimePicker()" | ||
query="query" | ||
saved-query="savedQuery" | ||
screen-title="vis.title" | ||
on-query-submit="updateQueryAndFetch" | ||
index-patterns="[indexPattern]" | ||
filters="filters" | ||
on-filters-updated="onFiltersUpdated" | ||
date-range-from="timeRange.from" | ||
date-range-to="timeRange.to" | ||
is-refresh-paused="refreshInterval.pause" | ||
refresh-interval="refreshInterval.value" | ||
on-refresh-change="onRefreshChange" | ||
show-save-query="showSaveQuery" | ||
on-saved="updateSavedQuery" | ||
on-saved-query-updated="updateSavedQuery" | ||
on-clear-saved-query="onClearSavedQuery" | ||
> | ||
</kbn-top-nav> | ||
|
||
<!-- | ||
The top nav is hidden in embed mode but the filter bar must still be present so | ||
we show the filter bar on its own here if the chrome is not visible. | ||
--> | ||
<kbn-top-nav | ||
ng-if="showFilterBar() && !isVisible" | ||
|
||
app-name="'visualize'" | ||
show-search-bar="true" | ||
show-filter-bar="true" | ||
show-save-query="false" | ||
show-date-picker="false" | ||
|
||
filters="filters" | ||
on-filters-updated="onFiltersUpdated" | ||
index-patterns="[indexPattern]" | ||
> | ||
</kbn-top-nav> | ||
|
||
<div | ||
class="euiCallOut euiCallOut--primary euiCallOut--small hide-for-sharing" | ||
ng-if="vis.type.shouldMarkAsExperimentalInUI()" | ||
data-test-subj="experimentalVisInfo" | ||
> | ||
<div class="euiText"> | ||
<p ng-bind-html="getAdditionalMessage()"></p> | ||
</div> | ||
</div> | ||
|
||
<visualization-embedded | ||
ng-if="!isVisible" | ||
class="visualize" | ||
vis="vis" | ||
embeddable-handler="embeddableHandler" | ||
ui-state="uiState" | ||
time-range="timeRange" | ||
filters="filters" | ||
query="query" | ||
app-state="appState" | ||
></visualization-embedded> | ||
|
||
<h1 | ||
class="euiScreenReaderOnly" | ||
i18n-id="visualize.pageHeading" | ||
i18n-default-message="{chartName} {chartType} visualization" | ||
i18n-values="{ | ||
chartName: savedVis.title, | ||
chartType: vis.type.title | ||
}" | ||
> | ||
</h1> | ||
<visualization-editor | ||
ng-if="isVisible" | ||
vis="vis" | ||
saved-search="savedSearch" | ||
embeddable-handler="embeddableHandler" | ||
event-emitter="eventEmitter" | ||
ui-state="uiState" | ||
time-range="timeRange" | ||
filters="filters" | ||
query="query" | ||
class="visEditor__content" | ||
></visualization-editor> | ||
|
||
</visualize-app> |
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 |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
delete="delete" | ||
listing-limit="listingLimit" | ||
read-only="readOnly" | ||
/> | ||
></map-listing> |
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 |
---|---|---|
|
@@ -8,4 +8,4 @@ | |
capabilities="capabilities" | ||
initial-filter="initialFilter" | ||
core-start="coreStart" | ||
/> | ||
></graph-listing> |
Oops, something went wrong.