Skip to content

Commit

Permalink
[6.8] Bump jquery from 3.4.1 to 3.5.0 (elastic#64884) (elastic#65336)
Browse files Browse the repository at this point in the history
  • Loading branch information
jportner committed May 19, 2020
1 parent 6ef85ff commit 86cab2c
Show file tree
Hide file tree
Showing 42 changed files with 107 additions and 110 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
"https-proxy-agent": "^5.0.0",
"inert": "^5.1.0",
"joi": "^13.5.2",
"jquery": "^3.4.1",
"jquery": "^3.5.0",
"js-yaml": "3.13.1",
"json-stringify-pretty-compact": "1.0.4",
"json-stringify-safe": "5.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-ui-framework/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"html": "1.0.0",
"html-loader": "^0.5.5",
"imports-loader": "^0.8.0",
"jquery": "^3.4.1",
"jquery": "^3.5.0",
"keymirror": "0.1.1",
"moment": "^2.20.1",
"node-sass": "^4.9.4",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
</li>
</ul>

<sense-history-viewer class="conHistory__viewer" req="history.viewingReq" />
<sense-history-viewer class="conHistory__viewer" req="history.viewingReq"></sense-history-viewer>
</div>

<div class="conHistory__footer">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@
<span class="kuiButton__inner">
<span
class="kuiButton__icon kuiIcon fa-spinner fa-spin"
ng-class="isDisabled ? ['fa-spinner', 'fa-spin'] : [icon]"
/>
<span ng-transclude />
ng-class="isDisabled ? ['fa-spinner', 'fa-spin'] : [icon]"></span>
<span ng-transclude></span>
</span>
</button>
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
listing-limit="listingLimit"
hide-write-controls="hideWriteControls"
initial-filter="initialFilter"
/>
></dashboard-listing>
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<home-app
directories="directories"
recently-accessed="recentlyAccessed"
/>
></home-app>
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</div>
</div>

<div class="visualize" ng-if="!chrome.getVisible()"/>
<div class="visualize" ng-if="!chrome.getVisible()"></div>

<visualization-editor
ng-if="chrome.getVisible()"
Expand All @@ -75,6 +75,6 @@
time-range="timeRange"
filters="globalFilters"
class="visEditor__content"
/>
></visualization-editor>

</visualize-app>
2 changes: 1 addition & 1 deletion src/ui/public/directives/__tests__/confirm-click.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ describe('confirmClick directive', function () {
});

it('should get a click handler', function () {
expect(events).to.be.a(Object);
expect(events).to.be.an('object');
expect(events.click).to.be.a(Array);
});

Expand Down
4 changes: 2 additions & 2 deletions src/ui/public/vis/editors/default/default.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="visEditor--default">
<div class="collapsible-sidebar visEditor__collapsibleSidebar" ng-class="::getSidebarClass()">
<vis-editor-sidebar class="visEditor__sidebar" />
<vis-editor-sidebar class="visEditor__sidebar"></vis-editor-sidebar>
<vis-editor-resizer
class="visEditor__resizer"
tabindex="0"
Expand All @@ -16,6 +16,6 @@
render-complete
data-title="{{vis.title}}"
data-description="{{vis.description}}"
/>
></div>

</div>
2 changes: 1 addition & 1 deletion x-pack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
"intl": "^1.2.5",
"io-ts": "^1.4.2",
"joi": "^13.5.2",
"jquery": "^3.4.1",
"jquery": "^3.5.0",
"json-stable-stringify": "^1.0.1",
"jsonwebtoken": "^8.3.0",
"jstimezonedetect": "1.0.5",
Expand Down
14 changes: 7 additions & 7 deletions x-pack/plugins/graph/public/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
>
<svg class="gphNode" width="30" height="30" ng-click="clickVertexFieldIcon(f, $event)" ng-class="{'gphNode-disabled':f.hopSize<=0}">
<circle class="gphNode__circle" r="13" cx="15" cy="15" ng-class="{selectedNode:kbnTopNav.currentKey === 'fieldConfig'&&f === selectedFieldConfig}"
ng-attr-style="fill:{{f.color}}" />
ng-attr-style="fill:{{f.color}}"></circle>
<text ng-if="f.icon" class="gphNode__text fa" text-anchor="middle" x="15" y="20">
{{f.icon.code}}
</text>
Expand Down Expand Up @@ -243,11 +243,11 @@
<g>
<line ng-repeat="edge in workspace.edges" class="edge" ng-attr-x1="{{edge.topSrc.kx}}" ng-attr-y1="{{edge.topSrc.ky}}"
ng-attr-x2="{{edge.topTarget.kx}}" ng-attr-y2="{{edge.topTarget.ky}}" ng-click="clickEdge(edge)" ng-class="{'selectedEdge':edge.isSelected, 'inferredEdge':edge.inferred}"
ng-attr-style="stroke-width:{{edge.width}}px" stroke-linecap="round" />
ng-attr-style="stroke-width:{{edge.width}}px" stroke-linecap="round"></line>
</g>
<g ng-repeat="n in workspace.nodes" ng-if="!n.parent">
<circle class="gphNode__circle" ng-attr-r="{{n.scaledSize}}" ng-attr-cx="{{n.kx}}" ng-attr-cy="{{n.ky}}" ng-click="nodeClick(n, $event)"
ng-class="{selectedNode:n.isSelected}" ng-attr-style="fill:{{n.color}}" />
ng-class="{selectedNode:n.isSelected}" ng-attr-style="fill:{{n.color}}"></circle>
<text class="fa gphNode__text gphNode__text--lowOpacity" transform="translate(0,5)" text-anchor="middle" ng-attr-x="{{n.kx}}"
ng-attr-y="{{n.ky}}" ng-if="n.icon" ng-click="nodeClick(n, $event)">{{n.icon.code}}</text>

Expand All @@ -269,7 +269,7 @@

<g ng-if="n.numChildren>0">
<circle r="5" class="gphNode__markerCircle" transform="translate(10,10)" ng-attr-cx="{{n.kx}}" ng-attr-cy="{{n.ky}}"
ng-click="nodeClick(n, $event)" />
ng-click="nodeClick(n, $event)"></circle>
<text class="gphNode__markerText" text-anchor="middle" transform="translate(10,12)" ng-attr-x="{{n.kx}}"
ng-attr-y="{{n.ky}}" ng-click="nodeClick(n, $event)">{{n.numChildren}}
</text>
Expand Down Expand Up @@ -421,7 +421,7 @@
ng-click="selectSelected(n)">
<svg width="24" height="24">
<circle class="gphNode__circle " r="10" cx="12" cy="12" ng-attr-style="fill:{{n.color}}"
ng-click="workspace.deselectNode(n)" />
ng-click="workspace.deselectNode(n)"></circle>

<text ng-if="n.icon" class="fa gphNode__text" text-anchor="middle" x="12" y="17" ng-click="workspace.deselectNode(n)">{{n.icon.code}}</text>
</svg>
Expand Down Expand Up @@ -613,7 +613,7 @@
<span class="kui fa-chevron-circle-down"></span>
</button>
<svg width="24" height="24">
<circle class="gphNode__circle " r="10" cx="12" cy="12" ng-attr-style="fill:{{detail.inferredEdge.topSrc.color}}" />
<circle class="gphNode__circle " r="10" cx="12" cy="12" ng-attr-style="fill:{{detail.inferredEdge.topSrc.color}}"></circle>

<text ng-if="detail.inferredEdge.topSrc.icon" class="fa gphNode__text" text-anchor="middle" x="12" y="16">{{detail.inferredEdge.topSrc.icon.code}}</text>
</svg>
Expand All @@ -631,7 +631,7 @@
</button>

<svg width="24" height="24">
<circle class="gphNode__circle " r="10" cx="12" cy="12" ng-attr-style="fill:{{detail.inferredEdge.topTarget.color}}" />
<circle class="gphNode__circle " r="10" cx="12" cy="12" ng-attr-style="fill:{{detail.inferredEdge.topTarget.color}}"></circle>

<text ng-if="detail.inferredEdge.topTarget.icon" class="fa gphNode__text" text-anchor="middle" x="12" y="16">{{detail.inferredEdge.topTarget.icon.code}}</text>
</svg>
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/index_lifecycle_management/public/main.html
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<kbn-management-app section="elasticsearch/index_lifecycle_policies">
<div id="indexLifecycleManagementReactRoot" class="policyTable__horizontalScrollContainer"/>
<div id="indexLifecycleManagementReactRoot" class="policyTable__horizontalScrollContainer"></div>
</kbn-management-app>
2 changes: 1 addition & 1 deletion x-pack/plugins/maps/public/angular/listing_ng_wrapper.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
find="find"
delete="delete"
listing-limit="listingLimit"
/>
></map-listing>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
height="335"
index-pattern="indexPattern"
query="query" >
<div class="content-wrapper" />
<div class="content-wrapper"></div>
</ml-document-count-chart>
</div>
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</div>
<div class="details-container" ng-switch on="detailsMode">
<ml-metric-distribution-chart ng-switch-when="distribution" width="325" height="220">
<div class="content-wrapper" />
<div class="content-wrapper"></div>
</ml-metric-distribution-chart>
<div ng-switch-default>
<ml-top-values></ml-top-values>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<div class="ml-field-data-card">
<ml-field-title-bar card="card" />
<ml-field-title-bar card="card"></ml-field-title-bar>

<div ng-if="card.loading === true" class="card-contents">
<ml-loading-indicator
label="{{:: 'xpack.ml.fieldDataCard.loadingLabel' | i18n: { defaultMessage: 'Loading' } }}"
is-loading="card.loading"
height="200"
/>
></ml-loading-indicator>
</div>

<div ng-if="card.existsInDocs === false" class="card-contents">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<ml-loading-indicator
label="{{ ::'xpack.ml.jobSelectList.loadingJobsLabel' | i18n: { defaultMessage: 'Loading jobs'} }}"
is-loading="noJobsCreated===undefined"
/>
></ml-loading-indicator>
<div class="select-list" ng-show='noJobsCreated!==undefined'>
<div ng-if="groups.length && singleSelection !== true">
<div class="list-section-title">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<ml-loading-indicator is-loading="isLoading" height="height" />
<div class="content-wrapper" />
<ml-loading-indicator is-loading="isLoading" height="height"></ml-loading-indicator>
<div class="content-wrapper"></div>
6 changes: 3 additions & 3 deletions x-pack/plugins/ml/public/datavisualizer/datavisualizer.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<h1>{{indexPattern.title}}</h1>
</div>
<div class="euiFlexItem euiFlexItem--flexGrowZero">
<ml-full-time-range-selector ng-if="showSidebar" index-pattern='indexPattern' query='searchQuery' />
<ml-full-time-range-selector ng-if="showSidebar" index-pattern='indexPattern' query='searchQuery'></ml-full-time-range-selector>
</div>
</div>

Expand Down Expand Up @@ -138,7 +138,7 @@ <h1>{{indexPattern.title}}</h1>
filter="metricFieldFilter"
filter-icon="metricFilterIcon"
filter-changed="metricFieldFilterChanged"
clear-filter="clearMetricFilter" />
clear-filter="clearMetricFilter"></ml-form-filter-input>
</div>
</div>

Expand Down Expand Up @@ -231,7 +231,7 @@ <h1>{{indexPattern.title}}</h1>
filter="fieldFilter"
filter-icon="fieldFilterIcon"
filter-changed="fieldFilterChanged"
clear-filter="clearFieldFilter" />
clear-filter="clearFieldFilter"></ml-form-filter-input>
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<ml-data-recognizer
class-name='"euiFlexGroup euiFlexGrid--gutterLarge euiFlexGroup--responsive euiFlexGroup--wrap"'
index-pattern='indexPattern'
results=recognizerResults/>
results=recognizerResults></ml-data-recognizer>
</div>

<p
Expand All @@ -33,7 +33,7 @@
defaultMessage: 'Advanced job'
} }}"
class="synopsisIcon"
/>
></icon>
</div>
<div class="euiFlexItem synopsisContent">
<h4
Expand Down
2 changes: 1 addition & 1 deletion x-pack/plugins/ml/public/explorer/explorer.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
state="appState">
</filter-bar>

<ml-explorer-react-wrapper />
<ml-explorer-react-wrapper></ml-explorer-react-wrapper>
</div>
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ <h3 class="euiTitle euiTitle--small">{{title}}</h3>
i18n-id="xpack.ml.newJob.advanced.detectorFilterModal.conditionsTitle"
i18n-default-message="Conditions"
></span>
<i ml-info-icon="new_action_ruleconditions" />
<i ml-info-icon="new_action_ruleconditions"></i>
</div>
<div class="table-title">
<div>
Expand All @@ -64,18 +64,18 @@ <h3 class="euiTitle euiTitle--small">{{title}}</h3>
i18n-id="xpack.ml.newJob.advanced.detectorFilterModal.conditionTypeTitle"
i18n-default-message="Type"
></span>
<i ml-info-icon="new_action_conditiontype" />
<i ml-info-icon="new_action_conditiontype"></i>
</div>
<div><span aria-describedby="ml_aria_description_new_action_fieldname">field_name</span><i ml-info-icon="new_action_fieldname" /></div>
<div><span aria-describedby="ml_aria_description_new_action_fieldvalue">field_value</span><i ml-info-icon="new_action_fieldvalue" /></div>
<div><span aria-describedby="ml_aria_description_new_action_condition">lt/gt</span><i ml-info-icon="new_action_condition" /></div>
<div><span aria-describedby="ml_aria_description_new_action_fieldname">field_name</span><i ml-info-icon="new_action_fieldname"></i></div>
<div><span aria-describedby="ml_aria_description_new_action_fieldvalue">field_value</span><i ml-info-icon="new_action_fieldvalue"></i></div>
<div><span aria-describedby="ml_aria_description_new_action_condition">lt/gt</span><i ml-info-icon="new_action_condition"></i></div>
<div>
<span
aria-describedby="ml_aria_description_new_action_value"
i18n-id="xpack.ml.newJob.advanced.detectorFilterModal.conditionValueLabel"
i18n-default-message="value"
></span>
<i ml-info-icon="new_action_value" />
<i ml-info-icon="new_action_value"></i>
</div>
<div></div>
</div>
Expand Down
Loading

0 comments on commit 86cab2c

Please sign in to comment.