Skip to content

Commit 44d4f23

Browse files
author
OpenShift Bot
committed
bump(github.com/openshift/origin-web-console): 837875079457b94b47222641ae6a5f215326e0a5
1 parent b4b7083 commit 44d4f23

File tree

1 file changed

+64
-64
lines changed

1 file changed

+64
-64
lines changed

pkg/assets/bindata.go

+64-64
Original file line numberDiff line numberDiff line change
@@ -15165,21 +15165,7 @@ return e(i, "year", "years"), e(j, "month", "months"), e(k, "day", "days"), e(l,
1516515165
return function(a, b, c) {
1516615166
return moment().subtract(b, c).diff(moment(a)) < 0;
1516715167
};
15168-
}).filter("isNewerResource", function() {
15169-
return function(a, b) {
15170-
var c = _.get(a, "metadata.creationTimestamp");
15171-
if (!c) return !1;
15172-
var d = _.get(b, "metadata.creationTimestamp");
15173-
return !d || c > d;
15174-
};
15175-
}).filter("mostRecent", [ "isNewerResourceFilter", function(a) {
15176-
return function(b) {
15177-
var c = null;
15178-
return _.each(b, function(b) {
15179-
c && !a(b, c) || (c = b);
15180-
}), c;
15181-
};
15182-
} ]).filter("humanizeDurationValue", function() {
15168+
}).filter("humanizeDurationValue", function() {
1518315169
return function(a, b) {
1518415170
return moment.duration(a, b).humanize();
1518515171
};
@@ -15196,14 +15182,6 @@ return (d < 0 || e < 0 || f < 0) && (d = e = f = 0), d && b.push(d + "h"), e &&
1519615182
return function(b) {
1519715183
return a(b, "volume.beta.kubernetes.io/storage-class");
1519815184
};
15199-
} ]).filter("searchProjects", [ "displayNameFilter", function(a) {
15200-
return function(b, c) {
15201-
return c ? (c = c.toLowerCase(), _.filter(b, function(b) {
15202-
if (_.includes(b.metadata.name, c)) return !0;
15203-
var d = a(b, !0);
15204-
return !(!d || !_.includes(d.toLowerCase(), c));
15205-
})) :b;
15206-
};
1520715185
} ]).filter("tags", [ "annotationFilter", function(a) {
1520815186
return function(b, c) {
1520915187
c = c || "tags";
@@ -89874,11 +89852,11 @@ xhr:c
8987489852
}), m = [];
8987589853
_.each(window.OPENSHIFT_CONFIG.additionalServers, function(a) {
8987689854
var b = (a.protocol ? a.protocol + "://" :e) + a.hostPort + a.prefix;
89877-
m.push($.get(b).then(_.partial(k, b, a), function(a, b, c) {
89878-
d.push({
89879-
data:a,
89880-
textStatus:b,
89881-
xhr:c
89855+
m.push($.get(b).then(_.partial(k, b, a), function(b, c, e) {
89856+
a.required !== !1 && d.push({
89857+
data:b,
89858+
textStatus:c,
89859+
xhr:e
8988289860
});
8988389861
}));
8988489862
});
@@ -90213,6 +90191,27 @@ return a.canI(b, c, d);
9021390191
return function(b) {
9021490192
return a.canIAddToProject(b);
9021590193
};
90194+
} ]), angular.module("openshiftCommonUI").filter("isNewerResource", function() {
90195+
return function(a, b) {
90196+
var c = _.get(a, "metadata.creationTimestamp");
90197+
if (!c) return !1;
90198+
var d = _.get(b, "metadata.creationTimestamp");
90199+
return !d || c > d;
90200+
};
90201+
}).filter("mostRecent", [ "isNewerResourceFilter", function(a) {
90202+
return function(b) {
90203+
var c = null;
90204+
return _.each(b, function(b) {
90205+
c && !a(b, c) || (c = b);
90206+
}), c;
90207+
};
90208+
} ]).filter("orderObjectsByDate", [ "toArrayFilter", function(a) {
90209+
return function(b, c) {
90210+
return b = a(b), b.sort(function(a, b) {
90211+
if (!(a.metadata && a.metadata.creationTimestamp && b.metadata && b.metadata.creationTimestamp)) throw "orderObjectsByDate expects all objects to have the field metadata.creationTimestamp";
90212+
return a.metadata.creationTimestamp < b.metadata.creationTimestamp ? c ? 1 :-1 :a.metadata.creationTimestamp > b.metadata.creationTimestamp ? c ? -1 :1 :0;
90213+
}), b;
90214+
};
9021690215
} ]), angular.module("openshiftCommonUI").filter("highlightKeywords", [ "KeywordService", function(a) {
9021790216
return function(b, c, d) {
9021890217
if (!b) return b;
@@ -90223,13 +90222,6 @@ return _.isRegExp(a) ? a.source :_.escapeRegExp(a);
9022390222
}).join("|"), g = "", h = 0, i = d ? "g" :"ig", j = new RegExp(f, i); null !== (e = j.exec(b)); ) h < e.index && (g += _.escape(b.substring(h, e.index))), g += "<mark>" + _.escape(e[0]) + "</mark>", h = j.lastIndex;
9022490223
return h < b.length && (g += _.escape(b.substring(h))), g;
9022590224
};
90226-
} ]), angular.module("openshiftCommonUI").filter("orderObjectsByDate", [ "toArrayFilter", function(a) {
90227-
return function(b, c) {
90228-
return b = a(b), b.sort(function(a, b) {
90229-
if (!(a.metadata && a.metadata.creationTimestamp && b.metadata && b.metadata.creationTimestamp)) throw "orderObjectsByDate expects all objects to have the field metadata.creationTimestamp";
90230-
return a.metadata.creationTimestamp < b.metadata.creationTimestamp ? c ? 1 :-1 :a.metadata.creationTimestamp > b.metadata.creationTimestamp ? c ? -1 :1 :0;
90231-
}), b;
90232-
};
9023390225
} ]), angular.module("openshiftCommonUI").filter("parseJSON", function() {
9023490226
return function(a) {
9023590227
if (!a) return null;
@@ -90279,6 +90271,14 @@ if (!c) return "";
9027990271
var e = a(c), f = c.metadata.name;
9028090272
return e !== f && b(d)[e] > 1 ? e + " (" + f + ")" :e;
9028190273
};
90274+
} ]).filter("searchProjects", [ "displayNameFilter", function(a) {
90275+
return function(b, c) {
90276+
return c ? (c = c.toLowerCase(), _.filter(b, function(b) {
90277+
if (_.includes(b.metadata.name, c)) return !0;
90278+
var d = a(b, !0);
90279+
return !(!d || !_.includes(d.toLowerCase(), c));
90280+
})) :b;
90281+
};
9028290282
} ]).filter("label", function() {
9028390283
return function(a, b) {
9028490284
return a && a.metadata && a.metadata.labels ? a.metadata.labels[b] :null;
@@ -91199,23 +91199,23 @@ var t = "{protocol}://{+hostPort}{+prefix}{/group}/{version}/", u = t + "{resour
9119991199
o.prototype._urlForResource = function(a, b, c, d, e) {
9120091200
var f = g.apiInfo(a);
9120191201
if (!f) return i.error("_urlForResource called with unknown resource", a, arguments), null;
91202-
var h;
91203-
if (e = e || {}, h = d ? "http:" === window.location.protocol ? "ws" :"wss" :"http:" === window.location.protocol ? "http" :"https", c && c.namespace && !e.namespace && (e.namespace = c.namespace), f.namespaced && !e.namespace) return i.error("_urlForResource called for a namespaced resource but no namespace provided", a, arguments), null;
91204-
var j = f.namespaced, k = null;
91205-
j && (k = e.namespace, e = angular.copy(e), delete e.namespace);
91206-
var l, m = {
91207-
protocol:f.protocol || h,
91202+
var h, j = f.protocol || window.location.protocol;
91203+
if (e = e || {}, h = d ? "http:" === j ? "ws" :"wss" :"http:" === j ? "http" :"https", c && c.namespace && !e.namespace && (e.namespace = c.namespace), f.namespaced && !e.namespace) return i.error("_urlForResource called for a namespaced resource but no namespace provided", a, arguments), null;
91204+
var k = f.namespaced, l = null;
91205+
k && (l = e.namespace, e = angular.copy(e), delete e.namespace);
91206+
var m, n = {
91207+
protocol:h,
9120891208
hostPort:f.hostPort,
9120991209
prefix:f.prefix,
9121091210
group:f.group,
9121191211
version:f.version,
9121291212
resource:a.primaryResource(),
9121391213
subresource:a.subresources(),
9121491214
name:b,
91215-
namespace:k,
91215+
namespace:l,
9121691216
q:e
9121791217
};
91218-
return l = b ? j ? x :v :j ? w :u, URI.expand(l, m).toString();
91218+
return m = b ? k ? x :v :k ? w :u, URI.expand(m, n).toString();
9121991219
}, o.prototype.url = function(a) {
9122091220
if (a && a.resource) {
9122191221
var b = angular.copy(a);
@@ -293048,6 +293048,7 @@ body{padding-right:0px!important}
293048293048
}
293049293049
.separator{border-top:1px solid rgba(0,0,0,.15)}
293050293050
.surface-shaded .nav-tabs{border-color:rgba(0,0,0,.15)}
293051+
.surface-shaded .ui-select-bootstrap .ui-select-match>.btn{background-color:#fff;background-image:linear-gradient(to bottom,#fff 0%,#fbfbfb 100%)}
293051293052
.breadcrumb{font-size:12px;padding-bottom:0}
293052293053
@media (min-width:768px){.browse-deployment-donut .deployment-donut{-webkit-align-items:flex-end;-moz-align-items:flex-end;align-items:flex-end}
293053293054
.nav-tabs.nav-justified{border-bottom:1px solid #ededed}
@@ -294195,19 +294196,6 @@ td.visible-print,th.visible-print{display:table-cell!important}
294195294196
.log-view.log-fixed-height ::-webkit-scrollbar-track,.navbar-project-menu ::-webkit-scrollbar-track{background-color:#050505}
294196294197
.log-view.log-fixed-height ::-webkit-scrollbar{width:17px}
294197294198
.log-view.log-fixed-height ::-webkit-scrollbar-track{background-color:rgba(255,255,255,.1)}
294198-
.surface-shaded .ui-select-bootstrap .ui-select-match>.btn{background-color:#fff;background-image:linear-gradient(to bottom,#fff 0%,#fbfbfb 100%)}
294199-
.ui-select-bootstrap .ui-select-choices-row>span{border-color:transparent;border-style:solid;border-width:1px 0;line-height:1.66666667;padding:1px 10px}
294200-
.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{background-color:#def3ff;border-color:#bee1f4;color:#4d5258}
294201-
.ui-select-bootstrap .ui-select-choices-row.active>span{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff}
294202-
.ui-select-bootstrap .ui-select-choices-row.active .text-muted{color:#f5f5f5}
294203-
.ui-select-bootstrap .ui-select-choices-row-inner{min-height:24px;cursor:pointer}
294204-
.ui-select-bootstrap .ui-select-choices-group-label:empty{padding:0}
294205-
.ui-select-bootstrap .ui-select-match-text,.ui-select-bootstrap .ui-select-placeholder{font-weight:400;padding-right:20px}
294206-
.ui-select-bootstrap .ui-select-match-text span{display:block;text-overflow:ellipsis}
294207-
.ui-select-bootstrap .ui-select-match-text span span{display:inline}
294208-
.ui-select-bootstrap .ui-select-placeholder{display:block;overflow:hidden;text-overflow:ellipsis;width:100%}
294209-
.ui-select-bootstrap .ui-select-toggle>.caret{font-size:12px;font-style:normal;right:6px;top:10px;pointer-events:none}
294210-
.ui-select-bootstrap .ui-select-search{width:100%!important}
294211294199
.osc-secrets-form .advanced-secrets .help-blocks,.osc-secrets-form .advanced-secrets .input-labels,.osc-secrets-form .basic-secrets .help-blocks,.osc-secrets-form .basic-secrets .input-labels{display:table;padding-right:30px;position:relative;width:100%}
294212294200
.osc-secrets-form .advanced-secrets .help-blocks .help-block,.osc-secrets-form .advanced-secrets .help-blocks .input-label,.osc-secrets-form .advanced-secrets .input-labels .help-block,.osc-secrets-form .advanced-secrets .input-labels .input-label,.osc-secrets-form .basic-secrets .help-blocks .help-block,.osc-secrets-form .basic-secrets .help-blocks .input-label,.osc-secrets-form .basic-secrets .input-labels .help-block,.osc-secrets-form .basic-secrets .input-labels .input-label{width:100%;float:left;padding-right:5px}
294213294201
.osc-secrets-form .advanced-secrets .secret-row,.osc-secrets-form .basic-secrets .secret-row{display:table;padding-right:30px;position:relative;width:100%;margin-bottom:15px}
@@ -294811,7 +294799,7 @@ func stylesMainCss() (*asset, error) {
294811294799
return a, nil
294812294800
}
294813294801

294814-
var _stylesVendorCss = []byte(`.as-sortable-drag,.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close,.wizard-pf-footer .tooltip-wrapper .btn[disabled]{pointer-events:none}
294802+
var _stylesVendorCss = []byte(`.as-sortable-drag,.dropdown-kebab-pf.invisible,.ui-select-multiple .ui-select-match-item.dropping .ui-select-match-close,.wizard-pf-footer .tooltip-wrapper .btn[disabled]{pointer-events:none}
294815294803
.card-pf-aggregate-status-alt .card-pf-body{padding-bottom:20px}
294816294804
.card-pf-aggregate-status-alt .card-pf-title{line-height:22px;margin:20px 0 10px;font-weight:300}
294817294805
.card-pf-aggregate-status-alt .card-pf-aggregate-status-count{font-size:24px}
@@ -294869,7 +294857,7 @@ var _stylesVendorCss = []byte(`.as-sortable-drag,.ui-select-multiple .ui-select-
294869294857
}
294870294858
.toolbar-pf-actions .dropdown-kebab-pf{float:right}
294871294859
.toolbar-pf-include-actions{display:inline-block;margin:0 5px}
294872-
.dropdown-kebab-pf.invisible{opacity:0;pointer-events:none}
294860+
.dropdown-kebab-pf.invisible{opacity:0}
294873294861
.utilization-bar-chart-pf .progress-bar{-webkit-transition:width .75s ease-in-out;-moz-transition:width .75s ease-in-out;-o-transition:width .75s ease-in-out;transition:width .75s ease-in-out}
294874294862
.utilization-bar-chart-pf .progress-bar.animate{width:0%!important}
294875294863
.heatmap-pf-container{position:relative}
@@ -295239,7 +295227,7 @@ body>.select2-container.open{z-index:9999}
295239295227
.ui-select-container[theme=selectize] input.ui-select-search-hidden{opacity:0;height:0;min-height:0;padding:0;margin:0;border:0;width:0}
295240295228
.btn-default-focus{color:#333;background-color:#EBEBEB;border-color:#ADADAD;text-decoration:none;outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}
295241295229
.ui-select-bootstrap .ui-select-toggle{position:relative}
295242-
.ui-select-bootstrap .ui-select-toggle>.caret{position:absolute;height:10px;top:50%;right:10px;margin-top:-2px}
295230+
.ui-select-bootstrap .ui-select-toggle>.caret{position:absolute;height:10px;margin-top:-2px}
295243295231
.input-group>.ui-select-bootstrap.dropdown{position:static}
295244295232
.input-group>.ui-select-bootstrap>input.ui-select-search.form-control{border-radius:4px 0 0 4px}
295245295233
.input-group>.ui-select-bootstrap>input.ui-select-search.form-control.direction-up{border-radius:4px 0 0 4px!important}
@@ -295256,15 +295244,15 @@ body>.ui-select-bootstrap.open{z-index:1000}
295256295244
.ui-select-multiple .ui-select-match-item{position:relative}
295257295245
.ui-select-multiple:hover .ui-select-match-item.dropping-before:before{content:"";position:absolute;top:0;right:100%;height:100%;margin-right:2px;border-left:1px solid #428bca}
295258295246
.ui-select-multiple:hover .ui-select-match-item.dropping-after:after{content:"";position:absolute;top:0;left:100%;height:100%;margin-left:2px;border-right:1px solid #428bca}
295259-
.ui-select-bootstrap .ui-select-choices-row>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}
295260-
.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{text-decoration:none;color:#262626;background-color:#f5f5f5}
295261-
.ui-select-bootstrap .ui-select-choices-row.active>span{color:#fff;text-decoration:none;outline:0;background-color:#428bca}
295247+
.ui-select-bootstrap .ui-select-choices-row>span{cursor:pointer;display:block;clear:both;font-weight:400;color:#333;white-space:nowrap}
295248+
.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{text-decoration:none}
295249+
.ui-select-bootstrap .ui-select-choices-row.active>span{text-decoration:none;outline:0}
295262295250
.ui-select-bootstrap .ui-select-choices-row.active.disabled>span,.ui-select-bootstrap .ui-select-choices-row.disabled>span{color:#777;cursor:not-allowed;background-color:#fff}
295263295251
.ui-select-match.ng-hide-add,.ui-select-search.ng-hide-add{display:none!important}
295264295252
.ui-select-bootstrap.ng-dirty.ng-invalid>button.btn.ui-select-match{border-color:#D44950}
295265295253
.ui-select-container[theme=bootstrap].direction-up .ui-select-dropdown{box-shadow:0 -4px 8px rgba(0,0,0,.25)}
295266-
.ui-select-bootstrap .ui-select-match-text{width:100%;padding-right:1em}
295267-
.ui-select-bootstrap .ui-select-match-text span{display:inline-block;width:100%;overflow:hidden}
295254+
.ui-select-bootstrap .ui-select-match-text{width:100%}
295255+
.ui-select-bootstrap .ui-select-match-text span{width:100%;overflow:hidden}
295268295256
.ui-select-bootstrap .ui-select-toggle>a.btn{position:absolute;height:10px;right:10px;margin-top:-2px}
295269295257
.delete-resource-modal{background-color:#f1f1f1}
295270295258
.delete-resource-modal h1{font-size:21px;font-weight:500;margin-bottom:20px;word-wrap:break-word;word-break:break-word;overflow-wrap:break-word;min-width:0}
@@ -295312,6 +295300,18 @@ ul.messenger-theme-flat .messenger-message.alert-error .messenger-message-inner:
295312295300
ul.messenger-theme-flat .messenger-message.alert-warning:before{content:"\e61c";color:#ec7a08;display:inline-block;left:14px;margin-top:-11px}
295313295301
ul.messenger-theme-flat .messenger-message.alert-success .messenger-message-inner:before{color:#3f9c35;content:"\e602";display:inline-block;background-color:transparent}
295314295302
ul.messenger-theme-flat .messenger-message.alert-info .messenger-message-inner:before{color:#00659c;content:"\e604";display:inline-block;background-color:transparent}
295303+
.ui-select-bootstrap .ui-select-choices-row>span{border-color:transparent;border-style:solid;border-width:1px 0;line-height:1.66666667;padding:1px 10px}
295304+
.ui-select-bootstrap .ui-select-choices-row>span:focus,.ui-select-bootstrap .ui-select-choices-row>span:hover{background-color:#def3ff;border-color:#bee1f4;color:#4d5258}
295305+
.ui-select-bootstrap .ui-select-choices-row.active>span{background-color:#0088ce!important;border-color:#0088ce!important;color:#fff}
295306+
.ui-select-bootstrap .ui-select-choices-row.active .text-muted{color:#f5f5f5}
295307+
.ui-select-bootstrap .ui-select-choices-row-inner{min-height:24px;cursor:pointer}
295308+
.ui-select-bootstrap .ui-select-choices-group-label:empty{padding:0}
295309+
.ui-select-bootstrap .ui-select-match-text,.ui-select-bootstrap .ui-select-placeholder{font-weight:400;padding-right:20px}
295310+
.ui-select-bootstrap .ui-select-match-text span{display:block;text-overflow:ellipsis}
295311+
.ui-select-bootstrap .ui-select-match-text span span{display:inline}
295312+
.ui-select-bootstrap .ui-select-placeholder{display:block;overflow:hidden;text-overflow:ellipsis;width:100%}
295313+
.ui-select-bootstrap .ui-select-toggle>.caret{font-size:11px;font-style:normal;right:6px;top:10px;pointer-events:none}
295314+
.ui-select-bootstrap .ui-select-search{width:100%!important}
295315295315
@keyframes modalSlideDown{0%{margin-top:-50%}
295316295316
100%{margin-top:0%;opacity:1}
295317295317
}

0 commit comments

Comments
 (0)