(js/css) Update generated files

This commit is contained in:
InverseBot
2018-10-05 00:32:17 -04:00
parent 03b45899c1
commit be7f07a7ba
13 changed files with 232 additions and 227 deletions
+10 -6
View File
@@ -1,5 +1,5 @@
/**
* @license AngularJS v1.7.4
* @license AngularJS v1.7.5
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
@@ -99,7 +99,7 @@ function isValidObjectMaxDepth(maxDepth) {
function minErr(module, ErrorConstructor) {
ErrorConstructor = ErrorConstructor || Error;
var url = 'https://errors.angularjs.org/1.7.4/';
var url = 'https://errors.angularjs.org/1.7.5/';
var regex = url.replace('.', '\\.') + '[\\s\\S]*';
var errRegExp = new RegExp(regex, 'g');
@@ -2787,11 +2787,11 @@ function toDebugString(obj, maxDepth) {
var version = {
// These placeholder strings will be replaced by grunt's `build` task.
// They need to be double- or single-quoted.
full: '1.7.4',
full: '1.7.5',
major: 1,
minor: 7,
dot: 4,
codeName: 'interstellar-exploration'
dot: 5,
codeName: 'anti-prettification'
};
@@ -2940,7 +2940,7 @@ function publishExternalAPI(angular) {
});
}
])
.info({ angularVersion: '1.7.4' });
.info({ angularVersion: '1.7.5' });
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
@@ -27818,6 +27818,8 @@ function classDirective(name, selector) {
}
function toClassString(classValue) {
if (!classValue) return classValue;
var classString = classValue;
if (isArray(classValue)) {
@@ -27826,6 +27828,8 @@ function classDirective(name, selector) {
classString = Object.keys(classValue).
filter(function(key) { return classValue[key]; }).
join(' ');
} else if (!isString(classValue)) {
classString = classValue + '';
}
return classString;