chore(js/css): update generated files

This commit is contained in:
InverseBot
2020-12-22 10:06:25 -05:00
parent b3932cc3de
commit 099ef0ef7e
9 changed files with 675 additions and 175 deletions
+8 -3
View File
@@ -4,7 +4,7 @@
* This causes it to be incompatible with plugins that depend on @uirouter/core.
* We recommend switching to the ui-router-core.js and ui-router-angularjs.js bundles instead.
* For more information, see https://ui-router.github.io/blog/uirouter-for-angularjs-umd-bundles
* @version v1.0.28
* @version v1.0.29
* @link https://ui-router.github.io
* @license MIT License, http://www.opensource.org/licenses/MIT
*/
@@ -4722,8 +4722,13 @@
};
UrlMatcher.prototype._getDecodedParamValue = function (value, param) {
if (isDefined(value)) {
if (this.config.decodeParams && !param.type.raw && !isArray(value)) {
value = decodeURIComponent(value);
if (this.config.decodeParams && !param.type.raw) {
if (isArray(value)) {
value = value.map(function (paramValue) { return decodeURIComponent(paramValue); });
}
else {
value = decodeURIComponent(value);
}
}
value = param.type.decode(value);
}