From 4994acd26e582eec8a92b139bfc09ca79a9b8835 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 14 Sep 2015 21:23:43 +0100 Subject: [PATCH 001/354] fix(filters): ensure `formatNumber` observes i18n decimal separators Closes #10342 Closes #12850 --- src/ng/filter/filters.js | 1 + test/ng/filter/filtersSpec.js | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 7805085fd7d6..bc84deb76612 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -214,6 +214,7 @@ function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { if (fractionSize > 0 && number < 1) { formatedText = number.toFixed(fractionSize); number = parseFloat(formatedText); + formatedText = formatedText.replace(DECIMAL_SEP, decimalSep); } } diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js index 52ad6fbd6a4d..4bb58f45e3a3 100644 --- a/test/ng/filter/filtersSpec.js +++ b/test/ng/filter/filtersSpec.js @@ -62,6 +62,8 @@ describe('filters', function() { it('should format according different separators', function() { var num = formatNumber(1234567.1, pattern, '.', ',', 2); expect(num).toBe('1.234.567,10'); + num = formatNumber(1e-14, pattern, '.', ',', 14); + expect(num).toBe('0,00000000000001'); }); it('should format with or without fractionSize', function() { From 7a413df5e47e04e20a1c93d35922050bbcbfb492 Mon Sep 17 00:00:00 2001 From: Sjur Bakka Date: Thu, 18 Jun 2015 08:38:40 +0200 Subject: [PATCH 002/354] feat($http): add `$xhrFactory` service to enable creation of custom xhr objects Closes #2318 Closes #9319 Closes #12159 --- src/AngularPublic.js | 2 ++ src/ng/httpBackend.js | 36 +++++++++++++++++++++++++++++++----- test/ng/httpBackendSpec.js | 7 +++++++ 3 files changed, 40 insertions(+), 5 deletions(-) diff --git a/src/AngularPublic.js b/src/AngularPublic.js index 9409999f4557..0de446d90085 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -72,6 +72,7 @@ $HttpParamSerializerProvider, $HttpParamSerializerJQLikeProvider, $HttpBackendProvider, + $xhrFactoryProvider, $LocationProvider, $LogProvider, $ParseProvider, @@ -230,6 +231,7 @@ function publishExternalAPI(angular) { $httpParamSerializer: $HttpParamSerializerProvider, $httpParamSerializerJQLike: $HttpParamSerializerJQLikeProvider, $httpBackend: $HttpBackendProvider, + $xhrFactory: $xhrFactoryProvider, $location: $LocationProvider, $log: $LogProvider, $parse: $ParseProvider, diff --git a/src/ng/httpBackend.js b/src/ng/httpBackend.js index b6aa9689796d..0b16b34a7748 100644 --- a/src/ng/httpBackend.js +++ b/src/ng/httpBackend.js @@ -1,7 +1,32 @@ 'use strict'; -function createXhr() { - return new window.XMLHttpRequest(); +/** + * @ngdoc service + * @name $xhrFactory + * + * @description + * Factory function used to create XMLHttpRequest objects. + * + * Replace or decorate this service to create your own custom XMLHttpRequest objects. + * + * ``` + * angular.module('myApp', []) + * .factory('$xhrFactory', function() { + * return function createXhr(method, url) { + * return new window.XMLHttpRequest({mozSystem: true}); + * }; + * }); + * ``` + * + * @param {string} method HTTP method of the request (GET, POST, PUT, ..) + * @param {string} url URL of the request. + */ +function $xhrFactoryProvider() { + this.$get = function() { + return function createXhr() { + return new window.XMLHttpRequest(); + }; + }; } /** @@ -9,6 +34,7 @@ function createXhr() { * @name $httpBackend * @requires $window * @requires $document + * @requires $xhrFactory * * @description * HTTP backend used by the {@link ng.$http service} that delegates to @@ -21,8 +47,8 @@ function createXhr() { * $httpBackend} which can be trained with responses. */ function $HttpBackendProvider() { - this.$get = ['$browser', '$window', '$document', function($browser, $window, $document) { - return createHttpBackend($browser, createXhr, $browser.defer, $window.angular.callbacks, $document[0]); + this.$get = ['$browser', '$window', '$document', '$xhrFactory', function($browser, $window, $document, $xhrFactory) { + return createHttpBackend($browser, $xhrFactory, $browser.defer, $window.angular.callbacks, $document[0]); }]; } @@ -46,7 +72,7 @@ function createHttpBackend($browser, createXhr, $browserDefer, callbacks, rawDoc }); } else { - var xhr = createXhr(); + var xhr = createXhr(method, url); xhr.open(method, url, true); forEach(headers, function(value, key) { diff --git a/test/ng/httpBackendSpec.js b/test/ng/httpBackendSpec.js index 03490fc4ca1f..cd356959578d 100644 --- a/test/ng/httpBackendSpec.js +++ b/test/ng/httpBackendSpec.js @@ -233,6 +233,13 @@ describe('$httpBackend', function() { expect(MockXhr.$$lastInstance.withCredentials).toBe(true); }); + it('should call $xhrFactory with method and url', function() { + var mockXhrFactory = jasmine.createSpy('mockXhrFactory').andCallFake(createMockXhr); + $backend = createHttpBackend($browser, mockXhrFactory, $browser.defer, callbacks, fakeDocument); + $backend('GET', '/some-url', 'some-data', noop); + expect(mockXhrFactory).toHaveBeenCalledWith('GET', '/some-url'); + }); + describe('responseType', function() { From 698af191ded2465ca4e0f97959b75fede5a531ab Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Sat, 19 Sep 2015 15:17:54 +0200 Subject: [PATCH 003/354] fix($parse): do not convert to string computed properties multiple times Do not convert to string properties multiple times. --- src/ng/parse.js | 34 ++++++++++++++++++++++++++-------- test/ng/parseSpec.js | 9 +++++++++ 2 files changed, 35 insertions(+), 8 deletions(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index 529d701b44a3..eb09e7b65f7d 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -38,20 +38,30 @@ var $parseMinErr = minErr('$parse'); function ensureSafeMemberName(name, fullExpression) { + if (name === "__defineGetter__" || name === "__defineSetter__" + || name === "__lookupGetter__" || name === "__lookupSetter__" + || name === "__proto__") { + throw $parseMinErr('isecfld', + 'Attempting to access a disallowed field in Angular expressions! ' + + 'Expression: {0}', fullExpression); + } + return name; +} + +function getStringValue(name, fullExpression) { // From the JavaScript docs: // Property names must be strings. This means that non-string objects cannot be used // as keys in an object. Any non-string object, including a number, is typecasted // into a string via the toString method. // // So, to ensure that we are checking the same `name` that JavaScript would use, - // we cast it to a string, if possible - name = (isObject(name) && name.toString) ? name.toString() : name; - - if (name === "__defineGetter__" || name === "__defineSetter__" - || name === "__lookupGetter__" || name === "__lookupSetter__" - || name === "__proto__") { - throw $parseMinErr('isecfld', - 'Attempting to access a disallowed field in Angular expressions! ' + // we cast it to a string, if possible. + // Doing `name + ''` can cause a repl error if the result to `toString` is not a string, + // this is, this will handle objects that misbehave. + name = name + ''; + if (!isString(name)) { + throw $parseMinErr('iseccst', + 'Cannot convert object to primitive value! ' + 'Expression: {0}', fullExpression); } return name; @@ -816,6 +826,7 @@ ASTCompiler.prototype = { 'ensureSafeMemberName', 'ensureSafeObject', 'ensureSafeFunction', + 'getStringValue', 'ifDefined', 'plus', 'text', @@ -824,6 +835,7 @@ ASTCompiler.prototype = { ensureSafeMemberName, ensureSafeObject, ensureSafeFunction, + getStringValue, ifDefined, plusFn, expression); @@ -967,6 +979,7 @@ ASTCompiler.prototype = { if (ast.computed) { right = self.nextId(); self.recurse(ast.property, right); + self.getStringValue(right); self.addEnsureSafeMemberName(right); if (create && create !== 1) { self.if_(self.not(self.computedMember(left, right)), self.lazyAssign(self.computedMember(left, right), '{}')); @@ -1187,6 +1200,10 @@ ASTCompiler.prototype = { return 'ensureSafeFunction(' + item + ',text)'; }, + getStringValue: function(item) { + this.assign(item, 'getStringValue(' + item + ',text)'); + }, + lazyRecurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) { var self = this; return function() { @@ -1561,6 +1578,7 @@ ASTInterpreter.prototype = { var value; if (lhs != null) { rhs = right(scope, locals, assign, inputs); + rhs = getStringValue(rhs); ensureSafeMemberName(rhs, expression); if (create && create !== 1 && lhs && !(lhs[rhs])) { lhs[rhs] = {}; diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index 5b477b464947..d68834cd81e7 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -2692,6 +2692,15 @@ describe('parser', function() { }); }); + it('should prevent the exploit', function() { + expect(function() { + scope.$eval('(1)[{0: "__proto__", 1: "__proto__", 2: "__proto__", 3: "safe", length: 4, toString: [].pop}].foo = 1'); + }).toThrow(); + if (!msie || msie > 10) { + expect((1)['__proto__'].foo).toBeUndefined(); + } + }); + it('should prevent the exploit', function() { expect(function() { scope.$eval('' + From 808f984ec0ddc7fdaec2181e300ae1b0796c9fb8 Mon Sep 17 00:00:00 2001 From: Ivan Verevkin Date: Mon, 21 Sep 2015 15:01:21 +0800 Subject: [PATCH 004/354] docs($cacheFactory): fix call to `isUndefined()` in example Closes #12899 --- src/ng/cacheFactory.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/cacheFactory.js b/src/ng/cacheFactory.js index ad3939879af7..f2a55cb3d810 100644 --- a/src/ng/cacheFactory.js +++ b/src/ng/cacheFactory.js @@ -67,10 +67,10 @@ $scope.keys = []; $scope.cache = $cacheFactory('cacheId'); $scope.put = function(key, value) { - if (isUndefined($scope.cache.get(key))) { + if (angular.isUndefined($scope.cache.get(key))) { $scope.keys.push(key); } - $scope.cache.put(key, isUndefined(value) ? null : value); + $scope.cache.put(key, angular.isUndefined(value) ? null : value); }; }]); From 5a98e806ef3c59916bb4668268125610b11effe8 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Sat, 13 Dec 2014 16:24:24 -0800 Subject: [PATCH 005/354] fix($compile): use createMap() for $$observe listeners when initialized from attr interpolation Closes #10446 --- src/ng/compile.js | 2 +- test/ng/compileSpec.js | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 20eb7593d776..53814c7bb36c 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -2427,7 +2427,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { compile: function() { return { pre: function attrInterpolatePreLinkFn(scope, element, attr) { - var $$observers = (attr.$$observers || (attr.$$observers = {})); + var $$observers = (attr.$$observers || (attr.$$observers = createMap())); if (EVENT_HANDLER_ATTR_REGEXP.test(name)) { throw $compileMinErr('nodomevents', diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index ef5787b49fa0..b095253edae5 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3577,6 +3577,22 @@ describe('$compile', function() { }); }); + it('should be able to interpolate attribute names which are present in Object.prototype', function() { + var attrs; + module(function() { + directive('attrExposer', valueFn({ + link: function($scope, $element, $attrs) { + attrs = $attrs; + } + })); + }); + inject(function($compile, $rootScope) { + $compile('
')($rootScope); + $rootScope.$apply(); + expect(attrs.toString).toBe('2'); + }); + }); + it('should not initialize scope value if optional expression binding is not passed', inject(function($compile) { compile('
'); From a7f3761eda5309f76b73c6fb1d3173a270112899 Mon Sep 17 00:00:00 2001 From: Lucas Galfaso Date: Sun, 20 Sep 2015 16:33:50 +0200 Subject: [PATCH 006/354] fix($parse): block assigning to fields of a constructor Throw when assigning to a field of a constructor. Closes #12860 --- src/ng/parse.js | 22 ++++++++++++++++++++++ test/ng/parseSpec.js | 29 +++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/src/ng/parse.js b/src/ng/parse.js index eb09e7b65f7d..2c8a54572c22 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -112,6 +112,16 @@ function ensureSafeFunction(obj, fullExpression) { } } +function ensureSafeAssignContext(obj, fullExpression) { + if (obj) { + if (obj === (0).constructor || obj === (false).constructor || obj === ''.constructor || + obj === {}.constructor || obj === [].constructor || obj === Function.constructor) { + throw $parseMinErr('isecaf', + 'Assigning to a constructor is disallowed! Expression: {0}', fullExpression); + } + } +} + var OPERATORS = createMap(); forEach('+ - * / % === !== == != < > <= >= && || ! = |'.split(' '), function(operator) { OPERATORS[operator] = true; }); var ESCAPE = {"n":"\n", "f":"\f", "r":"\r", "t":"\t", "v":"\v", "'":"'", '"':'"'}; @@ -827,6 +837,7 @@ ASTCompiler.prototype = { 'ensureSafeObject', 'ensureSafeFunction', 'getStringValue', + 'ensureSafeAssignContext', 'ifDefined', 'plus', 'text', @@ -836,6 +847,7 @@ ASTCompiler.prototype = { ensureSafeObject, ensureSafeFunction, getStringValue, + ensureSafeAssignContext, ifDefined, plusFn, expression); @@ -1063,6 +1075,7 @@ ASTCompiler.prototype = { self.if_(self.notNull(left.context), function() { self.recurse(ast.right, right); self.addEnsureSafeObject(self.member(left.context, left.name, left.computed)); + self.addEnsureSafeAssignContext(left.context); expression = self.member(left.context, left.name, left.computed) + ast.operator + right; self.assign(intoId, expression); recursionFn(intoId || expression); @@ -1188,6 +1201,10 @@ ASTCompiler.prototype = { this.current().body.push(this.ensureSafeFunction(item), ';'); }, + addEnsureSafeAssignContext: function(item) { + this.current().body.push(this.ensureSafeAssignContext(item), ';'); + }, + ensureSafeObject: function(item) { return 'ensureSafeObject(' + item + ',text)'; }, @@ -1204,6 +1221,10 @@ ASTCompiler.prototype = { this.assign(item, 'getStringValue(' + item + ',text)'); }, + ensureSafeAssignContext: function(item) { + return 'ensureSafeAssignContext(' + item + ',text)'; + }, + lazyRecurse: function(ast, intoId, nameId, recursionFn, create, skipWatchIdCheck) { var self = this; return function() { @@ -1381,6 +1402,7 @@ ASTInterpreter.prototype = { var lhs = left(scope, locals, assign, inputs); var rhs = right(scope, locals, assign, inputs); ensureSafeObject(lhs.value, self.expression); + ensureSafeAssignContext(lhs.context); lhs.context[lhs.name] = rhs; return context ? {value: rhs} : rhs; }; diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index d68834cd81e7..3f0027e604ff 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -2712,6 +2712,35 @@ describe('parser', function() { ''); }).toThrow(); }); + + it('should prevent assigning in the context of a constructor', function() { + expect(function() { + scope.$eval("''.constructor.join"); + }).not.toThrow(); + expect(function() { + scope.$eval("''.constructor.join = ''.constructor.join"); + }).toThrow(); + expect(function() { + scope.$eval("''.constructor[0] = ''"); + }).toThrow(); + expect(function() { + scope.$eval("(0).constructor[0] = ''"); + }).toThrow(); + expect(function() { + scope.$eval("{}.constructor[0] = ''"); + }).toThrow(); + // foo.constructor is the object constructor. + expect(function() { + scope.$eval("foo.constructor[0] = ''", {foo: {}}); + }).toThrow(); + // foo.constructor is not a constructor. + expect(function() { + scope.$eval("foo.constructor[0] = ''", {foo: {constructor: ''}}); + }).not.toThrow(); + expect(function() { + scope.$eval("objConstructor = {}.constructor; objConstructor.join = ''"); + }).toThrow(); + }); }); it('should call the function from the received instance and not from a new one', function() { From dbc698517ff620b3a6279f65d4a9b6e3c15087b9 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 23 Mar 2015 23:05:47 +0100 Subject: [PATCH 007/354] fix(ngOptions): prevent frozen select ui in IE In certain scenarios, IE10/11/Edge create unresponsive select elements. The following contribute to the bug: - There need to be at least 2 selects next to each other - The option elements are added via javascript - the option.value is accessed before it is set - the option.label is added after the option.value has been set - The first select is wrappend in an element with display: inline or display: inline-block, This cannot be tested in a unit-test or e2e test. Closes #11314 Closes #11795 --- src/ng/directive/ngOptions.js | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/ng/directive/ngOptions.js b/src/ng/directive/ngOptions.js index e07aa137f2a6..500a1182f8ff 100644 --- a/src/ng/directive/ngOptions.js +++ b/src/ng/directive/ngOptions.js @@ -579,11 +579,16 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { function updateOptionElement(option, element) { option.element = element; element.disabled = option.disabled; - if (option.value !== element.value) element.value = option.selectValue; + // NOTE: The label must be set before the value, otherwise IE10/11/EDGE create unresponsive + // selects in certain circumstances when multiple selects are next to each other and display + // the option list in listbox style, i.e. the select is [multiple], or specifies a [size]. + // See https://github.com/angular/angular.js/issues/11314 for more info. + // This is unfortunately untestable with unit / e2e tests if (option.label !== element.label) { element.label = option.label; element.textContent = option.label; } + if (option.value !== element.value) element.value = option.selectValue; } function addOrReuseElement(parent, current, type, templateElement) { From fa0157103659ba7b462b1c2d78578920c8a94ee5 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 22 Sep 2015 13:11:35 +0200 Subject: [PATCH 008/354] docs(guide/Directives): fix link formatting Closes #12909; --- docs/content/guide/directive.ngdoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 581a0f7e5b2e..c6c8b3dfb5b0 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -43,8 +43,7 @@ mirrors the process of compiling source code in Before we can write a directive, we need to know how Angular's {@link guide/compiler HTML compiler} determines when to use a given directive. -Similar to the terminology used when an [element **matches** a selector] -(https://developer.mozilla.org/en-US/docs/Web/API/Element.matches), we say an element **matches** a +Similar to the terminology used when an [element **matches** a selector](https://developer.mozilla.org/en-US/docs/Web/API/Element.matches), we say an element **matches** a directive when the directive is part of its declaration. In the following example, we say that the `` element **matches** the `ngModel` directive From 7295c60ffb9f2e4f32043c538ace740b187f565a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 21 Sep 2015 14:07:32 +0100 Subject: [PATCH 009/354] fix(ngMessages): prevent race condition with ngAnimate If `ngMessage` tried to add a message back in that was about to be removed after an animation, the NgMessageController got confused and tried to detach the newly added message, when the pending node was destroyed. This change applies a unique `attachId` to the message object and its DOM node when it is attached. This is then checked when a DOM node is being destroyed to prevent unwanted calls to `detach`. Closes #12856 Closes #12903 --- src/ngMessages/messages.js | 9 ++++++- test/ngMessages/messagesSpec.js | 44 +++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 1 deletion(-) diff --git a/src/ngMessages/messages.js b/src/ngMessages/messages.js index 14ffe00506b0..20edf80fa1c0 100644 --- a/src/ngMessages/messages.js +++ b/src/ngMessages/messages.js @@ -325,6 +325,9 @@ angular.module('ngMessages', []) controller: ['$element', '$scope', '$attrs', function($element, $scope, $attrs) { var ctrl = this; var latestKey = 0; + var nextAttachId = 0; + + this.getAttachId = function getAttachId() { return nextAttachId++; }; var messages = this.messages = {}; var renderLater, cachedCollection; @@ -636,11 +639,15 @@ function ngMessageDirectiveFactory(restrict) { $animate.enter(elm, null, element); currentElement = elm; + // Each time we attach this node to a message we get a new id that we can match + // when we are destroying the node later. + var $$attachId = currentElement.$$attachId = ngMessagesCtrl.getAttachId(); + // in the event that the parent element is destroyed // by any other structural directive then it's time // to deregister the message from the controller currentElement.on('$destroy', function() { - if (currentElement) { + if (currentElement && currentElement.$$attachId === $$attachId) { ngMessagesCtrl.deregister(commentNode); messageCtrl.detach(); } diff --git a/test/ngMessages/messagesSpec.js b/test/ngMessages/messagesSpec.js index 037175031ded..3d4f1100f06c 100644 --- a/test/ngMessages/messagesSpec.js +++ b/test/ngMessages/messagesSpec.js @@ -372,6 +372,50 @@ describe('ngMessages', function() { expect(trim(element.text())).toEqual("Enter something"); })); + // issue #12856 + it('should only detach the message object that is associated with the message node being removed', + inject(function($rootScope, $compile, $animate) { + + // We are going to spy on the `leave` method to give us control over + // when the element is actually removed + spyOn($animate, 'leave'); + + // Create a basic ng-messages set up + element = $compile('
' + + '
Enter something
' + + '
')($rootScope); + + // Trigger the message to be displayed + $rootScope.col = { primary: true }; + $rootScope.$digest(); + expect(messageChildren(element).length).toEqual(1); + var oldMessageNode = messageChildren(element)[0]; + + // Remove the message + $rootScope.col = { primary: undefined }; + $rootScope.$digest(); + + // Since we have spied on the `leave` method, the message node is still in the DOM + expect($animate.leave).toHaveBeenCalledOnce(); + var nodeToRemove = $animate.leave.mostRecentCall.args[0][0]; + expect(nodeToRemove).toBe(oldMessageNode); + $animate.leave.reset(); + + // Add the message back in + $rootScope.col = { primary: true }; + $rootScope.$digest(); + + // Simulate the animation completing on the node + jqLite(nodeToRemove).remove(); + + // We should not get another call to `leave` + expect($animate.leave).not.toHaveBeenCalled(); + + // There should only be the new message node + expect(messageChildren(element).length).toEqual(1); + var newMessageNode = messageChildren(element)[0]; + expect(newMessageNode).not.toBe(oldMessageNode); + })); it('should render animations when the active/inactive classes are added/removed', function() { module('ngAnimate'); From fa8c399fadc30b78710868fe59d2930fdc17c7a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 15 Sep 2015 17:04:41 -0700 Subject: [PATCH 010/354] fix(ngAnimate): callback detection should only use RAF when necessary Callbacks are detected within the internals of ngAnimate whenever an animation starts and ends. In order to allow the user to set callbacks the callback detection needs to happen during the next tick. Prior to this fix we used $$rAF to do the tick detection, however, with this patch we intelligently use $$postDigest to do that for us and then only issue a call to `$$rAF` if necessary. --- src/ngAnimate/animateQueue.js | 44 +++++++++++++++---- test/ngAnimate/animateSpec.js | 70 +++++++++++++++++++++++++++---- test/ngAnimate/integrationSpec.js | 32 ++++++++++++++ 3 files changed, 130 insertions(+), 16 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 6337ec0c03c2..0d3b09854a6c 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -75,6 +75,24 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { var disabledElementsLookup = new $$HashMap(); var animationsEnabled = null; + function postDigestTaskFactory() { + var postDigestCalled = false; + return function(fn) { + // we only issue a call to postDigest before + // it has first passed. This prevents any callbacks + // from not firing once the animation has completed + // since it will be out of the digest cycle. + if (postDigestCalled) { + fn(); + } else { + $rootScope.$$postDigest(function() { + postDigestCalled = true; + fn(); + }); + } + }; + } + // Wait until all directive and route-related templates are downloaded and // compiled. The $templateRequest.totalPendingRequests variable keeps track of // all of the remote templates being currently downloaded. If there are no @@ -137,14 +155,6 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { return matches; } - function triggerCallback(event, element, phase, data) { - $$rAF(function() { - forEach(findCallbacks(element, event), function(callback) { - callback(element, phase, data); - }); - }); - } - return { on: function(event, container, callback) { var node = extractElementNode(container); @@ -239,6 +249,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { // These methods will become available after the digest has passed var runner = new $$AnimateRunner(); + // this is used to trigger callbacks in postDigest mode + var runInNextPostDigestOrNow = postDigestTaskFactory(); + if (isArray(options.addClass)) { options.addClass = options.addClass.join(' '); } @@ -459,7 +472,20 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { return runner; function notifyProgress(runner, event, phase, data) { - triggerCallback(event, element, phase, data); + runInNextPostDigestOrNow(function() { + var callbacks = findCallbacks(element, event); + if (callbacks.length) { + // do not optimize this call here to RAF because + // we don't know how heavy the callback code here will + // be and if this code is buffered then this can + // lead to a performance regression. + $$rAF(function() { + forEach(callbacks, function(callback) { + callback(element, phase, data); + }); + }); + } + }); runner.progress(event, phase, data); } diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 06e06a867cfa..da7a628dfa14 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -890,7 +890,6 @@ describe("animations", function() { }); $rootScope.$digest(); - $animate.flush(); expect(capturedAnimation).toBeTruthy(); expect(runner1done).toBeFalsy(); @@ -910,7 +909,6 @@ describe("animations", function() { }); $rootScope.$digest(); - $animate.flush(); expect(capturedAnimation).toBeTruthy(); expect(runner2done).toBeFalsy(); @@ -990,8 +988,6 @@ describe("animations", function() { var doneHandler = jasmine.createSpy('addClass done'); runner.done(doneHandler); - $animate.flush(); - expect(doneHandler).not.toHaveBeenCalled(); $animate.removeClass(element, 'active-class'); @@ -1011,8 +1007,6 @@ describe("animations", function() { var doneHandler = jasmine.createSpy('addClass done'); runner.done(doneHandler); - $animate.flush(); - expect(doneHandler).not.toHaveBeenCalled(); $animate.addClass(element, 'active-class'); @@ -1519,7 +1513,6 @@ describe("animations", function() { element = jqLite('
'); $animate.enter(element, $rootElement); $rootScope.$digest(); - $animate.flush(); expect(callbackTriggered).toBe(false); })); @@ -1707,6 +1700,69 @@ describe("animations", function() { expect(count).toBe(1); })); + it('should always detect registered callbacks after one postDigest has fired', + inject(function($animate, $rootScope, $rootElement) { + + element = jqLite('
'); + + var spy = jasmine.createSpy(); + registerCallback(); + + var runner = $animate.enter(element, $rootElement); + registerCallback(); + + $rootScope.$digest(); + registerCallback(); + + expect(spy.callCount).toBe(0); + $animate.flush(); + + // this is not 3 since the 3rd callback + // was added after the first callback + // was fired + expect(spy.callCount).toBe(2); + + spy.reset(); + runner.end(); + + $animate.flush(); + + // now we expect all three callbacks + // to fire when the animation ends since + // the callback detection happens again + expect(spy.callCount).toBe(3); + + function registerCallback() { + $animate.on('enter', element, spy); + } + })); + + it('should use RAF if there are detected callbacks within the hierachy of the element being animated', + inject(function($animate, $rootScope, $rootElement, $$rAF) { + + var runner; + + element = jqLite('
'); + runner = $animate.enter(element, $rootElement); + $rootScope.$digest(); + runner.end(); + + assertRAFsUsed(false); + + var spy = jasmine.createSpy(); + $animate.on('leave', element, spy); + + runner = $animate.leave(element, $rootElement); + $rootScope.$digest(); + runner.end(); + + assertRAFsUsed(true); + + function assertRAFsUsed(bool) { + expect($$rAF.queue.length)[bool ? 'toBeGreaterThan' : 'toBe'](0); + } + })); + it('leave: should remove the element even if another animation is called after', inject(function($animate, $rootScope, $rootElement) { diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index 5e1e335b72f4..d4739b9c8cb5 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -319,6 +319,38 @@ describe('ngAnimate integration tests', function() { } }); }); + + it('should trigger callbacks at the start and end of an animation', + inject(function($rootScope, $rootElement, $animate, $compile) { + + ss.addRule('.animate-me', 'transition:2s linear all;'); + + var parent = jqLite('
'); + element = parent.find('div'); + html(parent); + + $compile(parent)($rootScope); + $rootScope.$digest(); + + var spy = jasmine.createSpy(); + $animate.on('enter', parent, spy); + + $rootScope.exp = true; + $rootScope.$digest(); + + element = parent.find('div'); + + $animate.flush(); + + expect(spy.callCount).toBe(1); + + browserTrigger(element, 'transitionend', { timeStamp: Date.now(), elapsedTime: 2 }); + $animate.flush(); + + expect(spy.callCount).toBe(2); + + dealoc(element); + })); }); describe('JS animations', function() { From 215dff34dd85991d76686313dcab582249832cf2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 17 Sep 2015 16:44:51 -0700 Subject: [PATCH 011/354] revert: chore(core): introduce $$body service Relying on the body node to be present right at injection has caused issues with unit testing as well as some animations on the body element. Reverting this patch fixes these issues. Closes #12874 --- angularFiles.js | 1 - src/ngAnimate/animateCssDriver.js | 6 +- src/ngAnimate/animateQueue.js | 9 +- src/ngAnimate/body.js | 7 -- src/ngAnimate/module.js | 3 - test/ng/directive/ngClassSpec.js | 4 +- test/ngAnimate/animateCssDriverSpec.js | 4 +- test/ngAnimate/animateCssSpec.js | 168 ++++++++++++------------- test/ngAnimate/animateSpec.js | 58 ++++----- test/ngAnimate/animationSpec.js | 4 +- test/ngAnimate/bodySpec.js | 9 -- test/ngAnimate/integrationSpec.js | 4 +- 12 files changed, 129 insertions(+), 148 deletions(-) delete mode 100644 src/ngAnimate/body.js delete mode 100644 test/ngAnimate/bodySpec.js diff --git a/angularFiles.js b/angularFiles.js index 9d18fd831b6c..1e6eb6a6b77a 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -92,7 +92,6 @@ var angularFiles = { 'angularModules': { 'ngAnimate': [ 'src/ngAnimate/shared.js', - 'src/ngAnimate/body.js', 'src/ngAnimate/rafScheduler.js', 'src/ngAnimate/animateChildrenDirective.js', 'src/ngAnimate/animateCss.js', diff --git a/src/ngAnimate/animateCssDriver.js b/src/ngAnimate/animateCssDriver.js index 12afe34abc76..2e12b33a3df1 100644 --- a/src/ngAnimate/animateCssDriver.js +++ b/src/ngAnimate/animateCssDriver.js @@ -9,13 +9,13 @@ var $$AnimateCssDriverProvider = ['$$animationProvider', function($$animationPro var NG_OUT_ANCHOR_CLASS_NAME = 'ng-anchor-out'; var NG_IN_ANCHOR_CLASS_NAME = 'ng-anchor-in'; - this.$get = ['$animateCss', '$rootScope', '$$AnimateRunner', '$rootElement', '$$body', '$sniffer', '$$jqLite', - function($animateCss, $rootScope, $$AnimateRunner, $rootElement, $$body, $sniffer, $$jqLite) { + this.$get = ['$animateCss', '$rootScope', '$$AnimateRunner', '$rootElement', '$sniffer', '$$jqLite', '$document', + function($animateCss, $rootScope, $$AnimateRunner, $rootElement, $sniffer, $$jqLite, $document) { // only browsers that support these properties can render animations if (!$sniffer.animations && !$sniffer.transitions) return noop; - var bodyNode = getDomNode($$body); + var bodyNode = $document[0].body; var rootNode = getDomNode($rootElement); var rootBodyElement = jqLite(bodyNode.parentNode === rootNode ? bodyNode : rootNode); diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 0d3b09854a6c..3345dce7691d 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -66,9 +66,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { return (nO.addClass && nO.addClass === cO.removeClass) || (nO.removeClass && nO.removeClass === cO.addClass); }); - this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$body', '$$HashMap', + this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$HashMap', '$$animation', '$$AnimateRunner', '$templateRequest', '$$jqLite', '$$forceReflow', - function($$rAF, $rootScope, $rootElement, $document, $$body, $$HashMap, + function($$rAF, $rootScope, $rootElement, $document, $$HashMap, $$animation, $$AnimateRunner, $templateRequest, $$jqLite, $$forceReflow) { var activeAnimationsLookup = new $$HashMap(); @@ -528,7 +528,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { } function areAnimationsAllowed(element, parentElement, event) { - var bodyElementDetected = isMatchingElement(element, $$body) || element[0].nodeName === 'HTML'; + var bodyElement = jqLite($document[0].body); + var bodyElementDetected = isMatchingElement(element, bodyElement) || element[0].nodeName === 'HTML'; var rootElementDetected = isMatchingElement(element, $rootElement); var parentAnimationDetected = false; var animateChildren; @@ -584,7 +585,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (!bodyElementDetected) { // we also need to ensure that the element is or will be apart of the body element // otherwise it is pointless to even issue an animation to be rendered - bodyElementDetected = isMatchingElement(parentElement, $$body); + bodyElementDetected = isMatchingElement(parentElement, bodyElement); } parentElement = parentElement.parent(); diff --git a/src/ngAnimate/body.js b/src/ngAnimate/body.js deleted file mode 100644 index 8c8ce21ac9e8..000000000000 --- a/src/ngAnimate/body.js +++ /dev/null @@ -1,7 +0,0 @@ -'use strict'; - -function $$BodyProvider() { - this.$get = ['$document', function($document) { - return jqLite($document[0].body); - }]; -} diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js index d48dd73e8d9c..2e4ec0171fdf 100644 --- a/src/ngAnimate/module.js +++ b/src/ngAnimate/module.js @@ -2,7 +2,6 @@ /* global angularAnimateModule: true, - $$BodyProvider, $$AnimateAsyncRunFactory, $$rAFSchedulerFactory, $$AnimateChildrenDirective, @@ -742,8 +741,6 @@ * Click here {@link ng.$animate to learn more about animations with `$animate`}. */ angular.module('ngAnimate', []) - .provider('$$body', $$BodyProvider) - .directive('ngAnimateChildren', $$AnimateChildrenDirective) .factory('$$rAFScheduler', $$rAFSchedulerFactory) diff --git a/test/ng/directive/ngClassSpec.js b/test/ng/directive/ngClassSpec.js index a188ba129356..a50f611e4b18 100644 --- a/test/ng/directive/ngClassSpec.js +++ b/test/ng/directive/ngClassSpec.js @@ -468,12 +468,12 @@ describe('ngClass animations', function() { }; }); }); - inject(function($compile, $rootScope, $browser, $rootElement, $animate, $timeout, $$body) { + inject(function($compile, $rootScope, $browser, $rootElement, $animate, $document) { $animate.enabled(true); $rootScope.val = 'crazy'; element = angular.element('
'); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $compile(element)($rootScope); diff --git a/test/ngAnimate/animateCssDriverSpec.js b/test/ngAnimate/animateCssDriverSpec.js index 589d5932e3ff..99ba41edc620 100644 --- a/test/ngAnimate/animateCssDriverSpec.js +++ b/test/ngAnimate/animateCssDriverSpec.js @@ -121,7 +121,7 @@ describe("ngAnimate $$animateCssDriver", function() { var from, to, fromAnimation, toAnimation; beforeEach(module(function() { - return function($rootElement, $$body) { + return function($rootElement, $document) { from = element; to = jqLite('
'); fromAnimation = { element: from, event: 'enter' }; @@ -130,7 +130,7 @@ describe("ngAnimate $$animateCssDriver", function() { $rootElement.append(to); // we need to do this so that style detection works - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); }; })); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index a4071782ab43..36fbdac82f97 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -35,12 +35,12 @@ describe("ngAnimate $animateCss", function() { }); it("should return false if neither transitions or keyframes are supported by the browser", - inject(function($animateCss, $sniffer, $rootElement, $$body) { + inject(function($animateCss, $sniffer, $rootElement, $document) { var animator; var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $sniffer.transitions = $sniffer.animations = false; animator = $animateCss(element, { @@ -54,13 +54,13 @@ describe("ngAnimate $animateCss", function() { if (!browserSupportsCssAnimations()) return; it("should not attempt an animation if animations are globally disabled", - inject(function($animateCss, $animate, $rootElement, $$body) { + inject(function($animateCss, $animate, $rootElement, $document) { $animate.enabled(false); var animator, element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); animator = $animateCss(element, { duration: 10, @@ -109,9 +109,9 @@ describe("ngAnimate $animateCss", function() { describe("rAF usage", function() { it("should buffer all requests into a single requestAnimationFrame call", - inject(function($animateCss, $$rAF, $rootScope, $$body, $rootElement) { + inject(function($animateCss, $$rAF, $rootScope, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var count = 0; var runners = []; @@ -149,8 +149,8 @@ describe("ngAnimate $animateCss", function() { }; }); }); - inject(function($animateCss, $$rAF, $$body, $rootElement) { - $$body.append($rootElement); + inject(function($animateCss, $$rAF, $document, $rootElement) { + jqLite($document[0].body).append($rootElement); function makeRequest() { var element = jqLite('
'); @@ -169,10 +169,10 @@ describe("ngAnimate $animateCss", function() { describe("animator and runner", function() { var animationDuration = 5; var element, animator; - beforeEach(inject(function($animateCss, $rootElement, $$body) { + beforeEach(inject(function($animateCss, $rootElement, $document) { element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); animator = $animateCss(element, { event: 'enter', @@ -365,10 +365,10 @@ describe("ngAnimate $animateCss", function() { { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); } - beforeEach(inject(function($rootElement, $$body) { + beforeEach(inject(function($rootElement, $document) { element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); options = { event: 'enter', structural: true }; })); @@ -638,9 +638,9 @@ describe("ngAnimate $animateCss", function() { describe("staggering", function() { it("should apply a stagger based when an active ng-EVENT-stagger class with a transition-delay is detected", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s'); ss.addRule('.ng-enter', 'transition:2s linear all'); @@ -679,9 +679,9 @@ describe("ngAnimate $animateCss", function() { })); it("should apply a stagger based when for all provided addClass/removeClass CSS classes", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.red-add-stagger,' + '.blue-remove-stagger,' + @@ -749,9 +749,9 @@ describe("ngAnimate $animateCss", function() { })); it("should block the transition animation between start and animate when staggered", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s'); ss.addRule('.ng-enter', 'transition:2s linear all;'); @@ -780,9 +780,9 @@ describe("ngAnimate $animateCss", function() { })); it("should block (pause) the keyframe animation between start and animate when staggered", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', prefix + 'animation-delay:0.2s'); ss.addRule('.ng-enter', prefix + 'animation:my_animation 2s;'); @@ -809,9 +809,9 @@ describe("ngAnimate $animateCss", function() { })); it("should not apply a stagger if the transition delay value is inherited from a earlier CSS class", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.transition-animation', 'transition:2s 5s linear all;'); @@ -828,9 +828,9 @@ describe("ngAnimate $animateCss", function() { })); it("should apply a stagger only if the transition duration value is zero when inherited from a earlier CSS class", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.transition-animation', 'transition:2s 5s linear all;'); ss.addRule('.transition-animation.ng-enter-stagger', @@ -854,9 +854,9 @@ describe("ngAnimate $animateCss", function() { it("should ignore animation staggers if only transition animations were detected", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', prefix + 'animation-delay:0.2s'); ss.addRule('.transition-animation', 'transition:2s 5s linear all;'); @@ -874,9 +874,9 @@ describe("ngAnimate $animateCss", function() { })); it("should ignore transition staggers if only keyframe animations were detected", - inject(function($animateCss, $$body, $rootElement) { + inject(function($animateCss, $document, $rootElement) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s'); ss.addRule('.transition-animation', prefix + 'animation:2s 5s my_animation;'); @@ -894,9 +894,9 @@ describe("ngAnimate $animateCss", function() { })); it("should start on the highest stagger value if both transition and keyframe staggers are used together", - inject(function($animateCss, $$body, $rootElement, $timeout, $browser) { + inject(function($animateCss, $document, $rootElement, $timeout, $browser) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:0.5s;' + prefix + 'animation-delay:1s'); @@ -932,9 +932,9 @@ describe("ngAnimate $animateCss", function() { })); it("should apply the closing timeout ontop of the stagger timeout", - inject(function($animateCss, $$body, $rootElement, $timeout, $browser) { + inject(function($animateCss, $document, $rootElement, $timeout, $browser) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:1s;'); ss.addRule('.ng-enter', 'transition:10s linear all;'); @@ -959,9 +959,9 @@ describe("ngAnimate $animateCss", function() { })); it("should apply the closing timeout ontop of the stagger timeout with an added delay", - inject(function($animateCss, $$body, $rootElement, $timeout, $browser) { + inject(function($animateCss, $document, $rootElement, $timeout, $browser) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:1s;'); ss.addRule('.ng-enter', 'transition:10s linear all; transition-delay:50s;'); @@ -986,9 +986,9 @@ describe("ngAnimate $animateCss", function() { })); it("should issue a stagger if a stagger value is provided in the options", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter', 'transition:2s linear all'); var elm, i, elements = []; @@ -1025,9 +1025,9 @@ describe("ngAnimate $animateCss", function() { })); it("should only add/remove classes once the stagger timeout has passed", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var element = jqLite('
'); $rootElement.append(element); @@ -1052,13 +1052,13 @@ describe("ngAnimate $animateCss", function() { describe("closing timeout", function() { it("should close off the animation after 150% of the animation time has passed", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { ss.addRule('.ng-enter', 'transition:10s linear all;'); var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: 'enter', structural: true }); animator.start(); @@ -1075,13 +1075,13 @@ describe("ngAnimate $animateCss", function() { })); it("should close off the animation after 150% of the animation time has passed and consider the detected delay value", - inject(function($animateCss, $$body, $rootElement, $timeout) { + inject(function($animateCss, $document, $rootElement, $timeout) { ss.addRule('.ng-enter', 'transition:10s linear all; transition-delay:30s;'); var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: 'enter', structural: true }); animator.start(); @@ -1098,13 +1098,13 @@ describe("ngAnimate $animateCss", function() { })); it("should still resolve the animation once expired", - inject(function($animateCss, $$body, $rootElement, $timeout, $animate, $rootScope) { + inject(function($animateCss, $document, $rootElement, $timeout, $animate, $rootScope) { ss.addRule('.ng-enter', 'transition:10s linear all;'); var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: 'enter', structural: true }); @@ -1123,13 +1123,13 @@ describe("ngAnimate $animateCss", function() { })); it("should not resolve/reject after passing if the animation completed successfully", - inject(function($animateCss, $$body, $rootElement, $timeout, $rootScope, $animate) { + inject(function($animateCss, $document, $rootElement, $timeout, $rootScope, $animate) { ss.addRule('.ng-enter', 'transition:10s linear all;'); var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: 'enter', structural: true }); @@ -1160,7 +1160,7 @@ describe("ngAnimate $animateCss", function() { })); it("should close all stacked animations after the last timeout runs on the same element", - inject(function($animateCss, $$body, $rootElement, $timeout, $animate) { + inject(function($animateCss, $document, $rootElement, $timeout, $animate) { var now = 0; spyOn(Date, 'now').andCallFake(function() { @@ -1177,7 +1177,7 @@ describe("ngAnimate $animateCss", function() { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); // timeout will be at 1500s animate(element, 'red', doneSpy); @@ -1218,11 +1218,11 @@ describe("ngAnimate $animateCss", function() { })); it("should not throw an error any pending timeout requests resolve after the element has already been removed", - inject(function($animateCss, $$body, $rootElement, $timeout, $animate) { + inject(function($animateCss, $document, $rootElement, $timeout, $animate) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.red', 'transition:1s linear all;'); @@ -1255,8 +1255,8 @@ describe("ngAnimate $animateCss", function() { } })); - return function($$body, $rootElement) { - $$body.append($rootElement); + return function($document, $rootElement) { + jqLite($document[0].body).append($rootElement); }; })); @@ -1340,7 +1340,7 @@ describe("ngAnimate $animateCss", function() { }); it('should avoid applying the same cache to an element a follow-up animation is run on the same element', - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { function endTransition(element, elapsedTime) { browserTrigger(element, 'transitionend', @@ -1357,7 +1357,7 @@ describe("ngAnimate $animateCss", function() { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); startAnimation(element, 0.5, 'red'); expect(element.attr('style')).toContain('transition'); @@ -1377,14 +1377,14 @@ describe("ngAnimate $animateCss", function() { })); it("should clear cache if no animation so follow-up animation on the same element will not be from cache", - inject(function($animateCss, $rootElement, $$body, $$rAF) { + inject(function($animateCss, $rootElement, $document, $$rAF) { var element = jqLite('
'); var options = { event: 'enter', structural: true }; $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, options); expect(animator.$$willAnimate).toBeFalsy(); @@ -1396,11 +1396,11 @@ describe("ngAnimate $animateCss", function() { })); it('should apply a custom temporary class when a non-structural animation is used', - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $animateCss(element, { event: 'super', @@ -1416,10 +1416,10 @@ describe("ngAnimate $animateCss", function() { describe("structural animations", function() { they('should decorate the element with the ng-$prop CSS class', ['enter', 'leave', 'move'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $animateCss(element, { event: event, @@ -1433,10 +1433,10 @@ describe("ngAnimate $animateCss", function() { they('should decorate the element with the ng-$prop-active CSS class', ['enter', 'leave', 'move'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: event, @@ -1454,10 +1454,10 @@ describe("ngAnimate $animateCss", function() { they('should remove the ng-$prop and ng-$prop-active CSS classes from the element once the animation is done', ['enter', 'leave', 'move'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var animator = $animateCss(element, { event: event, @@ -1511,10 +1511,10 @@ describe("ngAnimate $animateCss", function() { they('should place a CSS transition block after the preparation function to block accidental style changes', ['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.cool-animation', 'transition:1.5s linear all;'); element.addClass('cool-animation'); @@ -1541,10 +1541,10 @@ describe("ngAnimate $animateCss", function() { they('should not place a CSS transition block if options.skipBlocking is provided', ['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) { - inject(function($animateCss, $rootElement, $$body, $window) { + inject(function($animateCss, $rootElement, $document, $window) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.cool-animation', 'transition:1.5s linear all;'); element.addClass('cool-animation'); @@ -1582,10 +1582,10 @@ describe("ngAnimate $animateCss", function() { they('should place a CSS transition block after the preparation function even if a duration is provided', ['enter', 'leave', 'move', 'addClass', 'removeClass'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); ss.addRule('.cool-animation', 'transition:1.5s linear all;'); element.addClass('cool-animation'); @@ -1616,11 +1616,11 @@ describe("ngAnimate $animateCss", function() { }); it('should allow multiple events to be animated at the same time', - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $animateCss(element, { event: ['enter', 'leave', 'move'], @@ -1688,10 +1688,10 @@ describe("ngAnimate $animateCss", function() { they('should remove the class-$prop-add and class-$prop-active CSS classes from the element once the animation is done', ['enter', 'leave', 'move'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var options = {}; options.event = event; @@ -1713,7 +1713,7 @@ describe("ngAnimate $animateCss", function() { they('should allow the class duration styles to be recalculated once started if the CSS classes being applied result new transition styles', ['add', 'remove'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { var element = jqLite('
'); @@ -1728,7 +1728,7 @@ describe("ngAnimate $animateCss", function() { } $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var options = {}; options[event + 'Class'] = 'natural-class'; @@ -1749,13 +1749,13 @@ describe("ngAnimate $animateCss", function() { they('should force the class-based values to be applied early if no options.applyClassEarly is used as an option', ['enter', 'leave', 'move'], function(event) { - inject(function($animateCss, $rootElement, $$body) { + inject(function($animateCss, $rootElement, $document) { ss.addRule('.blue.ng-' + event, 'transition:2s linear all;'); var element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); var runner = $animateCss(element, { addClass: 'blue', @@ -1790,8 +1790,8 @@ describe("ngAnimate $animateCss", function() { describe("options", function() { var element; beforeEach(module(function() { - return function($rootElement, $$body) { - $$body.append($rootElement); + return function($rootElement, $document) { + jqLite($document[0].body).append($rootElement); element = jqLite('
'); $rootElement.append(element); @@ -2741,10 +2741,10 @@ describe("ngAnimate $animateCss", function() { describe("[easing]", function() { var element; - beforeEach(inject(function($$body, $rootElement) { + beforeEach(inject(function($document, $rootElement) { element = jqLite('
'); $rootElement.append(element); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); })); it("should apply easing to a transition animation if it exists", inject(function($animateCss) { @@ -2812,13 +2812,13 @@ describe("ngAnimate $animateCss", function() { describe('SVG', function() { it('should properly apply transitions on an SVG element', - inject(function($animateCss, $rootScope, $compile, $$body, $rootElement) { + inject(function($animateCss, $rootScope, $compile, $document, $rootElement) { var element = $compile('' + '' + '')($rootScope); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $rootElement.append(element); $animateCss(element, { diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index da7a628dfa14..c08808150420 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -26,12 +26,12 @@ describe("animations", function() { }); }); - inject(function($animate, $rootScope, $$body) { + inject(function($animate, $rootScope, $document) { $animate.enabled(true); element = jqLite('
'); - $animate.enter(element, $$body); + $animate.enter(element, jqLite($document[0].body)); $rootScope.$digest(); expect(capturedAnimation).toBeTruthy(); @@ -116,7 +116,7 @@ describe("animations", function() { return overriddenAnimationRunner || defaultFakeAnimationRunner; }); - return function($rootElement, $q, $animate, $$AnimateRunner, $$body) { + return function($rootElement, $q, $animate, $$AnimateRunner, $document) { defaultFakeAnimationRunner = new $$AnimateRunner(); $animate.enabled(true); @@ -126,7 +126,7 @@ describe("animations", function() { $rootElement.append(parent); $rootElement.append(parent2); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); }; })); @@ -749,7 +749,7 @@ describe("animations", function() { })); it("should disable all child animations for atleast one turn when a structural animation is issued", - inject(function($animate, $rootScope, $compile, $$body, $rootElement, $$AnimateRunner) { + inject(function($animate, $rootScope, $compile, $document, $rootElement, $$AnimateRunner) { element = $compile( '
' + @@ -759,7 +759,7 @@ describe("animations", function() { '
' )($rootScope); - $$body.append($rootElement); + jqLite($document[0].body).append($rootElement); $rootElement.append(element); var runner = new $$AnimateRunner(); @@ -1278,8 +1278,8 @@ describe("animations", function() { return new $$AnimateRunner(); }; }); - return function($rootElement, $$body, $animate) { - $$body.append($rootElement); + return function($rootElement, $document, $animate) { + jqLite($document[0].body).append($rootElement); parent = jqLite('
'); element = jqLite('
'); child = jqLite('
'); @@ -1383,14 +1383,14 @@ describe("animations", function() { })); it('should allow an element to pinned elsewhere and still be available in animations', - inject(function($animate, $compile, $$body, $rootElement, $rootScope) { + inject(function($animate, $compile, $document, $rootElement, $rootScope) { var innerParent = jqLite('
'); - $$body.append(innerParent); + jqLite($document[0].body).append(innerParent); innerParent.append($rootElement); var element = jqLite('
'); - $$body.append(element); + jqLite($document[0].body).append(element); $animate.addClass(element, 'red'); $rootScope.$digest(); @@ -1406,16 +1406,16 @@ describe("animations", function() { })); it('should adhere to the disabled state of the hosted parent when an element is pinned', - inject(function($animate, $compile, $$body, $rootElement, $rootScope) { + inject(function($animate, $compile, $document, $rootElement, $rootScope) { var innerParent = jqLite('
'); - $$body.append(innerParent); + jqLite($document[0].body).append(innerParent); innerParent.append($rootElement); var innerChild = jqLite('
'); $rootElement.append(innerChild); var element = jqLite('
'); - $$body.append(element); + jqLite($document[0].body).append(element); $animate.pin(element, innerChild); @@ -1450,17 +1450,17 @@ describe("animations", function() { }; }); - return function($$body, $rootElement, $animate) { - $$body.append($rootElement); + return function($document, $rootElement, $animate) { + jqLite($document[0].body).append($rootElement); $animate.enabled(true); }; })); it('should trigger a callback for an enter animation', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { var callbackTriggered = false; - $animate.on('enter', $$body, function() { + $animate.on('enter', jqLite($document[0].body), function() { callbackTriggered = true; }); @@ -1474,12 +1474,12 @@ describe("animations", function() { })); it('should fire the callback with the signature of (element, phase, data)', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { var capturedElement; var capturedPhase; var capturedData; - $animate.on('enter', $$body, + $animate.on('enter', jqLite($document[0].body), function(element, phase, data) { capturedElement = element; @@ -1537,13 +1537,13 @@ describe("animations", function() { })); it('should remove all the event-based event listeners when $animate.off(event) is called', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { element = jqLite('
'); var count = 0; $animate.on('enter', element, counter); - $animate.on('enter', $$body, counter); + $animate.on('enter', jqLite($document[0].body), counter); function counter(element, phase) { count++; @@ -1565,13 +1565,13 @@ describe("animations", function() { })); it('should remove the container-based event listeners when $animate.off(event, container) is called', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { element = jqLite('
'); var count = 0; $animate.on('enter', element, counter); - $animate.on('enter', $$body, counter); + $animate.on('enter', jqLite($document[0].body), counter); function counter(element, phase) { if (phase === 'start') { @@ -1585,7 +1585,7 @@ describe("animations", function() { expect(count).toBe(2); - $animate.off('enter', $$body); + $animate.off('enter', jqLite($document[0].body)); $animate.enter(element, $rootElement); $rootScope.$digest(); @@ -1631,13 +1631,13 @@ describe("animations", function() { })); it('should fire a `start` callback when the animation starts with the matching element', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { element = jqLite('
'); var capturedState; var capturedElement; - $animate.on('enter', $$body, function(element, phase) { + $animate.on('enter', jqLite($document[0].body), function(element, phase) { capturedState = phase; capturedElement = element; }); @@ -1651,13 +1651,13 @@ describe("animations", function() { })); it('should fire a `close` callback when the animation ends with the matching element', - inject(function($animate, $rootScope, $rootElement, $$body) { + inject(function($animate, $rootScope, $rootElement, $document) { element = jqLite('
'); var capturedState; var capturedElement; - $animate.on('enter', $$body, function(element, phase) { + $animate.on('enter', jqLite($document[0].body), function(element, phase) { capturedState = phase; capturedElement = element; }); diff --git a/test/ngAnimate/animationSpec.js b/test/ngAnimate/animationSpec.js index ff5d998076cf..04ba3e5949a3 100644 --- a/test/ngAnimate/animationSpec.js +++ b/test/ngAnimate/animationSpec.js @@ -836,8 +836,8 @@ describe('$$animation', function() { element = jqLite('
'); parent = jqLite('
'); - return function($$AnimateRunner, $q, $rootElement, $$body) { - $$body.append($rootElement); + return function($$AnimateRunner, $rootElement, $document) { + jqLite($document[0].body).append($rootElement); $rootElement.append(parent); mockedDriverFn = function(element, method, options, domOperation) { diff --git a/test/ngAnimate/bodySpec.js b/test/ngAnimate/bodySpec.js deleted file mode 100644 index f87dabf1e355..000000000000 --- a/test/ngAnimate/bodySpec.js +++ /dev/null @@ -1,9 +0,0 @@ -'use strict'; - -describe('$$body', function() { - beforeEach(module('ngAnimate')); - - it("should inject $document", inject(function($$body, $document) { - expect($$body).toEqual(jqLite($document[0].body)); - })); -}); diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index d4739b9c8cb5..8f6cde838b55 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -7,12 +7,12 @@ describe('ngAnimate integration tests', function() { var element, html, ss; beforeEach(module(function() { - return function($rootElement, $document, $$body, $window, $animate) { + return function($rootElement, $document, $window, $animate) { $animate.enabled(true); ss = createMockStyleSheet($document, $window); - var body = $$body; + var body = jqLite($document[0].body); html = function(element) { body.append($rootElement); $rootElement.append(element); From 9d3704ca467081f16b71b011eb50c53d5cdb2f34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 17 Sep 2015 17:55:28 -0700 Subject: [PATCH 012/354] fix(ngAnimate): ensure anchoring uses body as a container when needed Prior to this fix anchoring would allow for a container to be a document node or something higher beyond the body tag. This patch makes it fall back to body incase the rootElement node exists as a parent ancestor. Closes #12872 --- src/ngAnimate/animateCssDriver.js | 11 ++++++- test/ngAnimate/animateCssDriverSpec.js | 43 ++++++++++++++++++++++++-- 2 files changed, 51 insertions(+), 3 deletions(-) diff --git a/src/ngAnimate/animateCssDriver.js b/src/ngAnimate/animateCssDriver.js index 2e12b33a3df1..d2cb67db0f70 100644 --- a/src/ngAnimate/animateCssDriver.js +++ b/src/ngAnimate/animateCssDriver.js @@ -9,6 +9,10 @@ var $$AnimateCssDriverProvider = ['$$animationProvider', function($$animationPro var NG_OUT_ANCHOR_CLASS_NAME = 'ng-anchor-out'; var NG_IN_ANCHOR_CLASS_NAME = 'ng-anchor-in'; + function isDocumentFragment(node) { + return node.parentNode && node.parentNode.nodeType === 11; + } + this.$get = ['$animateCss', '$rootScope', '$$AnimateRunner', '$rootElement', '$sniffer', '$$jqLite', '$document', function($animateCss, $rootScope, $$AnimateRunner, $rootElement, $sniffer, $$jqLite, $document) { @@ -18,7 +22,12 @@ var $$AnimateCssDriverProvider = ['$$animationProvider', function($$animationPro var bodyNode = $document[0].body; var rootNode = getDomNode($rootElement); - var rootBodyElement = jqLite(bodyNode.parentNode === rootNode ? bodyNode : rootNode); + var rootBodyElement = jqLite( + // this is to avoid using something that exists outside of the body + // we also special case the doc fragement case because our unit test code + // appends the $rootElement to the body after the app has been bootstrapped + isDocumentFragment(rootNode) || bodyNode.contains(rootNode) ? rootNode : bodyNode + ); var applyAnimationClasses = applyAnimationClassesFactory($$jqLite); diff --git a/test/ngAnimate/animateCssDriverSpec.js b/test/ngAnimate/animateCssDriverSpec.js index 99ba41edc620..923f9e3f821c 100644 --- a/test/ngAnimate/animateCssDriverSpec.js +++ b/test/ngAnimate/animateCssDriverSpec.js @@ -129,8 +129,14 @@ describe("ngAnimate $$animateCssDriver", function() { $rootElement.append(from); $rootElement.append(to); - // we need to do this so that style detection works - jqLite($document[0].body).append($rootElement); + var doc = $document[0]; + + // there is one test in here that expects the rootElement + // to superceed the body node + if (!$rootElement[0].contains(doc.body)) { + // we need to do this so that style detection works + jqLite(doc.body).append($rootElement); + } }; })); @@ -975,6 +981,39 @@ describe("ngAnimate $$animateCssDriver", function() { expect(completed).toBe(true); })); + + it("should use as the element container if the rootElement exists outside of the tag", function() { + module(function($provide) { + $provide.factory('$rootElement', function($document) { + return jqLite($document[0].querySelector('html')); + }); + }); + inject(function($rootElement, $rootScope, $animate, $document) { + ss.addRule('.ending-element', 'width:9999px; height:6666px; display:inline-block;'); + + var fromAnchor = jqLite('
'); + from.append(fromAnchor); + + var toAnchor = jqLite('
'); + to.append(toAnchor); + + $rootElement.append(fromAnchor); + $rootElement.append(toAnchor); + + var completed = false; + driver({ + from: fromAnimation, + to: toAnimation, + anchors: [{ + 'out': fromAnchor, + 'in': toAnchor + }] + }).start(); + + var clone = captureLog[2].element[0]; + expect(clone.parentNode).toBe($document[0].body); + }); + }); }); }); }); From 1731d091f86cb2397b9c1722b2070f7ee10d6668 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Wed, 23 Sep 2015 17:35:06 +0200 Subject: [PATCH 013/354] docs(ngList): whitespace -> newline --- src/ng/directive/ngList.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngList.js b/src/ng/directive/ngList.js index 0b48853eb07d..637352b5190d 100644 --- a/src/ng/directive/ngList.js +++ b/src/ng/directive/ngList.js @@ -66,7 +66,7 @@ * * * - * ### Example - splitting on whitespace + * ### Example - splitting on newline * * * From ea829620b264008e2857cf1786af34901fb5a0f6 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 22 Sep 2015 21:28:17 -0700 Subject: [PATCH 014/354] build(travis): gracefully shut down the sauce connect tunnel after the tests are done running This is to prevent sauce connect tunnel leaks. Closes #12921 --- .travis.yml | 1 + lib/browserstack/teardown_tunnel.sh | 8 ++++++++ lib/saucelabs/teardown_tunnel.sh | 16 ++++++++++++++++ scripts/travis/tear_down_browser_provider.sh | 4 ++++ 4 files changed, 29 insertions(+) create mode 100755 lib/browserstack/teardown_tunnel.sh create mode 100755 lib/saucelabs/teardown_tunnel.sh create mode 100755 scripts/travis/tear_down_browser_provider.sh diff --git a/.travis.yml b/.travis.yml index db65c2d1bcef..28e2f72f52a1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -61,6 +61,7 @@ script: - ./scripts/travis/build.sh after_script: + - ./scripts/travis/tear_down_browser_provider.sh - ./scripts/travis/print_logs.sh notifications: diff --git a/lib/browserstack/teardown_tunnel.sh b/lib/browserstack/teardown_tunnel.sh new file mode 100755 index 000000000000..86fd334284e3 --- /dev/null +++ b/lib/browserstack/teardown_tunnel.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e -o pipefail + + +echo "Shutting down Browserstack tunnel" +echo "TODO: implement me" +exit 1 \ No newline at end of file diff --git a/lib/saucelabs/teardown_tunnel.sh b/lib/saucelabs/teardown_tunnel.sh new file mode 100755 index 000000000000..fb294747fdec --- /dev/null +++ b/lib/saucelabs/teardown_tunnel.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +set -e -o pipefail + + +echo "Shutting down Sauce Connect tunnel" + +killall sc + +while [[ -n `ps -ef | grep "bin/sc" | grep -v "grep"` ]]; do + printf "." + sleep .5 +done + +echo "" +echo "Sauce Connect tunnel has bee shut down" diff --git a/scripts/travis/tear_down_browser_provider.sh b/scripts/travis/tear_down_browser_provider.sh new file mode 100755 index 000000000000..1b1b7314cf5f --- /dev/null +++ b/scripts/travis/tear_down_browser_provider.sh @@ -0,0 +1,4 @@ +#!/bin/bash +# Has to be run from project root directory. + +./lib/${BROWSER_PROVIDER}/teardown_tunnel.sh From 9fde5648e4974a28bd4c751beeb3c47c2f8f4dbb Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 23 Sep 2015 11:00:31 -0700 Subject: [PATCH 015/354] build(travis): fix typo in a comment --- lib/saucelabs/teardown_tunnel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/saucelabs/teardown_tunnel.sh b/lib/saucelabs/teardown_tunnel.sh index fb294747fdec..72155b9cfd0b 100755 --- a/lib/saucelabs/teardown_tunnel.sh +++ b/lib/saucelabs/teardown_tunnel.sh @@ -13,4 +13,4 @@ while [[ -n `ps -ef | grep "bin/sc" | grep -v "grep"` ]]; do done echo "" -echo "Sauce Connect tunnel has bee shut down" +echo "Sauce Connect tunnel has been shut down" From 9c1f8ea70b59f6025642c6e11e34b216d364e9ce Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 9 Sep 2015 03:27:45 +0300 Subject: [PATCH 016/354] chore(check-node-modules): make check/reinstall node_modules work across platforms The previous implementations (based on shell scripts) threw errors on Windows, because it was not able to `rm -rf` 'node_modules' (due to the 255 character limit in file-paths). This implementation works consistently across platforms and is heavily based on 'https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js'. Fixes #11143 Closes #11353 Closes #12792 --- .travis.yml | 2 +- Gruntfile.js | 2 +- package.json | 4 ++ scripts/npm/check-node-modules.js | 74 +++++++++++++++++++++++++++++ scripts/npm/copy-npm-shrinkwrap.js | 60 +++++++++++++++++++++++ scripts/npm/install-dependencies.sh | 16 ------- 6 files changed, 140 insertions(+), 18 deletions(-) create mode 100644 scripts/npm/check-node-modules.js create mode 100644 scripts/npm/copy-npm-shrinkwrap.js delete mode 100755 scripts/npm/install-dependencies.sh diff --git a/.travis.yml b/.travis.yml index 28e2f72f52a1..cebf27e29b5c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,7 +48,7 @@ install: - npm config set loglevel http - npm install -g npm@2.5 # Instal npm dependecies and ensure that npm cache is not stale - - scripts/npm/install-dependencies.sh + - npm install before_script: - mkdir -p $LOGS_DIR diff --git a/Gruntfile.js b/Gruntfile.js index 53aaf59a9ad6..018f08b16f1c 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -305,7 +305,7 @@ module.exports = function(grunt) { shell: { "npm-install": { - command: path.normalize('scripts/npm/install-dependencies.sh') + command: 'node scripts/npm/check-node-modules.js' }, "promises-aplus-tests": { diff --git a/package.json b/package.json index 93503ac37fea..d1a44e26bb61 100644 --- a/package.json +++ b/package.json @@ -13,6 +13,10 @@ "npm": "~2.5" }, "engineStrict": true, + "scripts": { + "preinstall": "node scripts/npm/check-node-modules.js --purge", + "postinstall": "node scripts/npm/copy-npm-shrinkwrap.js" + }, "devDependencies": { "angular-benchpress": "0.x.x", "benchmark": "1.x.x", diff --git a/scripts/npm/check-node-modules.js b/scripts/npm/check-node-modules.js new file mode 100644 index 000000000000..a9bc24a9a593 --- /dev/null +++ b/scripts/npm/check-node-modules.js @@ -0,0 +1,74 @@ +// Implementation based on: +// https://github.com/angular/angular/blob/3b9c08676a4c921bbfa847802e08566fb601ba7a/tools/npm/check-node-modules.js +'use strict'; + +// Imports +var fs = require('fs'); +var path = require('path'); + +// Constants +var PROJECT_ROOT = path.join(__dirname, '../../'); +var NODE_MODULES_DIR = 'node_modules'; +var NPM_SHRINKWRAP_FILE = 'npm-shrinkwrap.json'; +var NPM_SHRINKWRAP_CACHED_FILE = NODE_MODULES_DIR + '/npm-shrinkwrap.cached.json'; + +// Run +_main(); + +// Functions - Definitions +function _main() { + var purgeIfStale = process.argv.indexOf('--purge') !== -1; + + process.chdir(PROJECT_ROOT); + checkNodeModules(purgeIfStale); +} + +function checkNodeModules(purgeIfStale) { + var nodeModulesOk = compareMarkerFiles(NPM_SHRINKWRAP_FILE, NPM_SHRINKWRAP_CACHED_FILE); + + if (nodeModulesOk) { + console.log(':-) npm dependencies are looking good!'); + } else if (purgeIfStale) { + console.log(':-( npm dependencies are stale or in an unknown state!'); + console.log(' Purging \'' + NODE_MODULES_DIR + '\'...'); + deleteDirSync(NODE_MODULES_DIR); + } else { + var separator = new Array(81).join('!'); + + console.warn(separator); + console.warn(':-( npm dependencies are stale or in an unknown state!'); + console.warn('You can rebuild the dependencies by running `npm install`.'); + console.warn(separator); + } + + return nodeModulesOk; +} + +function compareMarkerFiles(markerFilePath, cachedMarkerFilePath) { + if (!fs.existsSync(cachedMarkerFilePath)) return false; + + var opts = {encoding: 'utf-8'}; + var markerContent = fs.readFileSync(markerFilePath, opts); + var cachedMarkerContent = fs.readFileSync(cachedMarkerFilePath, opts); + + return markerContent === cachedMarkerContent; +} + +// Custom implementation of `rm -rf` that works consistently across OSes +function deleteDirSync(path) { + if (fs.existsSync(path)) { + fs.readdirSync(path).forEach(deleteDirOrFileSync); + fs.rmdirSync(path); + } + + // Helpers + function deleteDirOrFileSync(subpath) { + var curPath = path + '/' + subpath; + + if (fs.lstatSync(curPath).isDirectory()) { + deleteDirSync(curPath); + } else { + fs.unlinkSync(curPath); + } + } +} diff --git a/scripts/npm/copy-npm-shrinkwrap.js b/scripts/npm/copy-npm-shrinkwrap.js new file mode 100644 index 000000000000..78bfe3baaafa --- /dev/null +++ b/scripts/npm/copy-npm-shrinkwrap.js @@ -0,0 +1,60 @@ +'use strict'; + +// Imports +var fs = require('fs'); +var path = require('path'); + +// Constants +var PROJECT_ROOT = path.join(__dirname, '../../'); +var NODE_MODULES_DIR = 'node_modules'; +var NPM_SHRINKWRAP_FILE = 'npm-shrinkwrap.json'; +var NPM_SHRINKWRAP_CACHED_FILE = NODE_MODULES_DIR + '/npm-shrinkwrap.cached.json'; + +// Run +_main(); + +// Functions - Definitions +function _main() { + process.chdir(PROJECT_ROOT); + copyFile(NPM_SHRINKWRAP_FILE, NPM_SHRINKWRAP_CACHED_FILE, onCopied); +} + +// Implementation based on: +// https://stackoverflow.com/questions/11293857/fastest-way-to-copy-file-in-node-js#answer-21995878 +function copyFile(srcPath, dstPath, callback) { + var callbackCalled = false; + + if (!fs.existsSync(srcPath)) { + done(new Error('Missing source file: ' + srcPath)); + return; + } + + var rs = fs.createReadStream(srcPath); + rs.on('error', done); + + var ws = fs.createWriteStream(dstPath); + ws.on('error', done); + ws.on('finish', done); + + rs.pipe(ws); + + // Helpers + function done(err) { + if (callback && !callbackCalled) { + callbackCalled = true; + callback(err); + } + } +} + +function onCopied(err) { + if (err) { + var separator = new Array(81).join('!'); + + console.error(separator); + console.error( + 'Failed to copy `' + NPM_SHRINKWRAP_FILE + '` to `' + NPM_SHRINKWRAP_CACHED_FILE + '`:'); + console.error(err); + console.error(separator); + } +} diff --git a/scripts/npm/install-dependencies.sh b/scripts/npm/install-dependencies.sh deleted file mode 100755 index 1851d4ea6ae4..000000000000 --- a/scripts/npm/install-dependencies.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/bash - -set -e - -SHRINKWRAP_FILE=npm-shrinkwrap.json -SHRINKWRAP_CACHED_FILE=node_modules/npm-shrinkwrap.cached.json - -if diff -q $SHRINKWRAP_FILE $SHRINKWRAP_CACHED_FILE; then - echo 'No shrinkwrap changes detected. npm install will be skipped...'; -else - echo 'Blowing away node_modules and reinstalling npm dependencies...' - rm -rf node_modules - npm install - cp $SHRINKWRAP_FILE $SHRINKWRAP_CACHED_FILE - echo 'npm install successful!' -fi From 9b728430183f92eb3e8e61eab7e2061189f10c63 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Wed, 23 Sep 2015 14:00:09 -0700 Subject: [PATCH 017/354] build(travis): make sauce connect process query a bit more specific --- lib/saucelabs/teardown_tunnel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/saucelabs/teardown_tunnel.sh b/lib/saucelabs/teardown_tunnel.sh index 72155b9cfd0b..91b918a485e3 100755 --- a/lib/saucelabs/teardown_tunnel.sh +++ b/lib/saucelabs/teardown_tunnel.sh @@ -7,7 +7,7 @@ echo "Shutting down Sauce Connect tunnel" killall sc -while [[ -n `ps -ef | grep "bin/sc" | grep -v "grep"` ]]; do +while [[ -n `ps -ef | grep "sauce-connect-" | grep -v "grep"` ]]; do printf "." sleep .5 done From e52d731bfd1fbb6c616125fbde2fb365722254b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Wed, 23 Sep 2015 17:30:19 -0700 Subject: [PATCH 018/354] feat($animateCss): add support for temporary styles via `cleanupStyles` Some animations make use of the `from` and `to` styling only for the lifetime of the animation. This patch allows for those styles to be removed once the animation is closed automatically within `$animateCss`. Closes #12930 --- src/ng/animateCss.js | 7 ++++ src/ngAnimate/animateCss.js | 43 ++++++++++++++++++++- test/ng/animateCssSpec.js | 32 ++++++++++++++++ test/ngAnimate/animateCssSpec.js | 65 ++++++++++++++++++++++++++++++++ 4 files changed, 145 insertions(+), 2 deletions(-) diff --git a/src/ng/animateCss.js b/src/ng/animateCss.js index 4c08725d948e..5aaf78bea637 100644 --- a/src/ng/animateCss.js +++ b/src/ng/animateCss.js @@ -43,6 +43,13 @@ var $CoreAnimateCssProvider = function() { }; return function(element, options) { + // there is no point in applying the styles since + // there is no animation that goes on at all in + // this version of $animateCss. + if (options.cleanupStyles) { + options.from = options.to = null; + } + if (options.from) { element.css(options.from); options.from = null; diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index f15929614246..2c14ae9d9c86 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -204,6 +204,10 @@ var ANIMATE_TIMER_KEY = '$$animateCss'; * * `staggerIndex` - The numeric index representing the stagger item (e.g. a value of 5 is equal to the sixth item in the stagger; therefore when a * * `stagger` option value of `0.1` is used then there will be a stagger delay of `600ms`) * * `applyClassesEarly` - Whether or not the classes being added or removed will be used when detecting the animation. This is set by `$animate` when enter/leave/move animations are fired to ensure that the CSS classes are resolved in time. (Note that this will prevent any transitions from occuring on the classes being added and removed.) + * * `cleanupStyles` - Whether or not the provided `from` and `to` styles will be removed once + * the animation is closed. This is useful for when the styles are used purely for the sake of + * the animation and do not have a lasting visual effect on the element (e.g. a colapse and open animation). + * By default this value is set to `false`. * * @return {object} an object with start and end methods and details about the animation. * @@ -324,6 +328,23 @@ function createLocalCacheLookup() { }; } +// we do not reassign an already present style value since +// if we detect the style property value again we may be +// detecting styles that were added via the `from` styles. +// We make use of `isDefined` here since an empty string +// or null value (which is what getPropertyValue will return +// for a non-existing style) will still be marked as a valid +// value for the style (a falsy value implies that the style +// is to be removed at the end of the animation). If we had a simple +// "OR" statement then it would not be enough to catch that. +function registerRestorableStyles(backup, node, properties) { + forEach(properties, function(prop) { + backup[prop] = isDefined(backup[prop]) + ? backup[prop] + : node.style.getPropertyValue(prop); + }); +} + var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { var gcsLookup = createLocalCacheLookup(); var gcsStaggerLookup = createLocalCacheLookup(); @@ -424,6 +445,7 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { } return function init(element, options) { + var restoreStyles = {}; var node = getDomNode(element); if (!node || !node.parentNode @@ -625,7 +647,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { stagger.animationDuration === 0; } - applyAnimationFromStyles(element, options); + if (options.from) { + if (options.cleanupStyles) { + registerRestorableStyles(restoreStyles, node, Object.keys(options.from)); + } + applyAnimationFromStyles(element, options); + } if (flags.blockTransition || flags.blockKeyframeAnimation) { applyBlocking(maxDuration); @@ -692,6 +719,13 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { applyAnimationClasses(element, options); applyAnimationStyles(element, options); + if (Object.keys(restoreStyles).length) { + forEach(restoreStyles, function(value, prop) { + value ? node.style.setProperty(prop, value) + : node.style.removeProperty(prop); + }); + } + // the reason why we have this option is to allow a synchronous closing callback // that is fired as SOON as the animation ends (when the CSS is removed) or if // the animation never takes off at all. A good example is a leave animation since @@ -886,7 +920,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { } element.on(events.join(' '), onAnimationProgress); - applyAnimationToStyles(element, options); + if (options.to) { + if (options.cleanupStyles) { + registerRestorableStyles(restoreStyles, node, Object.keys(options.to)); + } + applyAnimationToStyles(element, options); + } } function onAnimationExpired() { diff --git a/test/ng/animateCssSpec.js b/test/ng/animateCssSpec.js index 52b697ba2834..cce232e960af 100644 --- a/test/ng/animateCssSpec.js +++ b/test/ng/animateCssSpec.js @@ -115,6 +115,38 @@ describe("$animateCss", function() { expect(cancelSpy).toHaveBeenCalled(); expect(doneSpy).not.toHaveBeenCalled(); })); + + it("should not bother applying the provided [from] and [to] styles to the element if [cleanupStyles] is present", + inject(function($animateCss, $rootScope) { + + var animator = $animateCss(element, { + cleanupStyles: true, + from: { width: '100px' }, + to: { width: '900px', height: '1000px' } + }); + + assertStyleIsEmpty(element, 'width'); + assertStyleIsEmpty(element, 'height'); + + var runner = animator.start(); + + assertStyleIsEmpty(element, 'width'); + assertStyleIsEmpty(element, 'height'); + + triggerRAF(); + + assertStyleIsEmpty(element, 'width'); + assertStyleIsEmpty(element, 'height'); + + runner.end(); + + assertStyleIsEmpty(element, 'width'); + assertStyleIsEmpty(element, 'height'); + + function assertStyleIsEmpty(element, prop) { + expect(element[0].style.getPropertyValue(prop)).toBeFalsy(); + } + })); }); }); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 36fbdac82f97..a708d0f6e888 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -2786,6 +2786,71 @@ describe("ngAnimate $animateCss", function() { })); }); + describe("[cleanupStyles]", function() { + it("should cleanup [from] and [to] styles that have been applied for the animation when true", + inject(function($animateCss) { + + var runner = $animateCss(element, { + duration: 1, + from: { background: 'gold' }, + to: { color: 'brown' }, + cleanupStyles: true + }).start(); + + assertStyleIsPresent(element, 'background', true); + assertStyleIsPresent(element, 'color', false); + + triggerAnimationStartFrame(); + + assertStyleIsPresent(element, 'background', true); + assertStyleIsPresent(element, 'color', true); + + runner.end(); + + assertStyleIsPresent(element, 'background', false); + assertStyleIsPresent(element, 'color', false); + + function assertStyleIsPresent(element, style, bool) { + expect(element[0].style[style])[bool ? 'toBeTruthy' : 'toBeFalsy'](); + } + })); + + it('should restore existing overidden styles already present on the element when true', + inject(function($animateCss) { + + element.css('height', '100px'); + element.css('width', '111px'); + + var runner = $animateCss(element, { + duration: 1, + from: { height: '200px', 'font-size':'66px' }, + to: { height: '300px', 'font-size': '99px', width: '222px' }, + cleanupStyles: true + }).start(); + + assertStyle(element, 'height', '200px'); + assertStyle(element, 'font-size', '66px'); + assertStyle(element, 'width', '111px'); + + triggerAnimationStartFrame(); + + assertStyle(element, 'height', '300px'); + assertStyle(element, 'width', '222px'); + assertStyle(element, 'font-size', '99px'); + + runner.end(); + + assertStyle(element, 'width', '111px'); + assertStyle(element, 'height', '100px'); + + expect(element[0].style.getPropertyValue('font-size')).not.toBe('66px'); + + function assertStyle(element, prop, value) { + expect(element[0].style.getPropertyValue(prop)).toBe(value); + } + })); + }); + it('should round up long elapsedTime values to close off a CSS3 animation', inject(function($animateCss) { From c4a1b6124e353c2225dde1c7327c044305c92d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 24 Sep 2015 10:06:22 -0700 Subject: [PATCH 019/354] docs($animateCss): `options.transition` should be `options.transitionStyle` --- src/ngAnimate/animateCss.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 2c14ae9d9c86..46eae9127c37 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -187,7 +187,7 @@ var ANIMATE_TIMER_KEY = '$$animateCss'; * * `event` - The DOM event (e.g. enter, leave, move). When used, a generated CSS class of `ng-EVENT` and `ng-EVENT-active` will be applied * to the element during the animation. Multiple events can be provided when spaces are used as a separator. (Note that this will not perform any DOM operation.) * * `easing` - The CSS easing value that will be applied to the transition or keyframe animation (or both). - * * `transition` - The raw CSS transition style that will be used (e.g. `1s linear all`). + * * `transitionStyle` - The raw CSS transition style that will be used (e.g. `1s linear all`). * * `keyframeStyle` - The raw CSS keyframe animation style that will be used (e.g. `1s my_animation linear`). * * `from` - The starting CSS styles (a key/value object) that will be applied at the start of the animation. * * `to` - The ending CSS styles (a key/value object) that will be applied across the animation via a CSS transition. From fa3ddba5f250d1005e7bbf16aec86d11c76021ca Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Wed, 23 Sep 2015 23:47:39 +0200 Subject: [PATCH 020/354] docs(ngModel): align $viewValue description with $setViewValue --- src/ng/directive/ngModel.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ng/directive/ngModel.js b/src/ng/directive/ngModel.js index 034c386a5527..028dbfefdc65 100644 --- a/src/ng/directive/ngModel.js +++ b/src/ng/directive/ngModel.js @@ -22,7 +22,9 @@ var ngModelMinErr = minErr('ngModel'); * @ngdoc type * @name ngModel.NgModelController * - * @property {string} $viewValue Actual string value in the view. + * @property {*} $viewValue The actual value from the control's view. For `input` elements, this is a + * String. See {@link ngModel.NgModelController#$setViewValue} for information about when the $viewValue + * is set. * @property {*} $modelValue The value in the model that the control is bound to. * @property {Array.} $parsers Array of functions to execute, as a pipeline, whenever the control reads value from the DOM. The functions are called in array order, each passing From 655c52a621cded684023c2e13c4537f2e2f655be Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Kr=C3=BCger?= Date: Sat, 5 Sep 2015 17:46:44 +0200 Subject: [PATCH 021/354] docs(guide/Directives): let myTabs directive ctrl use inline array notation modified `docsTabsExample` myTabs directive ctrl at [Creating Directives that Communicate Example](https://docs.angularjs.org/guide/directive#creating-directives-that-communicate) so that it uses [Inline Array Annotation](https://docs.angularjs.org/guide/di#inline-array-annotation) and is compatible with [Using Strict Dependency Injection](https://docs.angularjs.org/guide/di#using-strict-dependency-injection) Closes #12767 --- docs/content/guide/directive.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index c6c8b3dfb5b0..47c38d5fb450 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -902,7 +902,7 @@ to which tab is active. restrict: 'E', transclude: true, scope: {}, - controller: function($scope) { + controller: ['$scope', function($scope) { var panes = $scope.panes = []; $scope.select = function(pane) { @@ -918,7 +918,7 @@ to which tab is active. } panes.push(pane); }; - }, + }], templateUrl: 'my-tabs.html' }; }) From 03a4a96cf9b85537260ea746990a2bcf9aea1100 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sat, 26 Sep 2015 17:54:57 +0200 Subject: [PATCH 022/354] test(ngOptions): clarify a test description --- test/ng/directive/ngOptionsSpec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js index 40cb245253d5..77c068bf630e 100644 --- a/test/ng/directive/ngOptionsSpec.js +++ b/test/ng/directive/ngOptionsSpec.js @@ -2029,7 +2029,9 @@ describe('ngOptions', function() { expect(option.text()).toBe('is blank'); }); - it('should support option without a value attribute', function() { + it('should be ignored when it has no value attribute', function() { + // The option value is set to the textContent if there's no value attribute, + // so in that case it doesn't count as a blank option createSingleSelect(''); scope.$apply(function() { scope.values = [{name: 'A'}, {name: 'B'}, {name: 'C'}]; From 68d4dc5b71b23e4c7c2650e6da3d7200de99f1ae Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 25 Sep 2015 23:53:37 +0200 Subject: [PATCH 023/354] fix(ngOptions): skip comments when looking for option elements When the empty/blank option has a directive that transcludes, ngIf for example, a comment will be added into the select. Previously, ngOptions used this comment as the empty option, which would mess up the displayed options. Closes #12190 --- src/ng/directive/ngOptions.js | 5 ++++- test/ng/directive/ngOptionsSpec.js | 24 ++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/src/ng/directive/ngOptions.js b/src/ng/directive/ngOptions.js index 500a1182f8ff..b30ff6f5e36f 100644 --- a/src/ng/directive/ngOptions.js +++ b/src/ng/directive/ngOptions.js @@ -629,7 +629,10 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { if (emptyOption_ || unknownOption_) { while (current && (current === emptyOption_ || - current === unknownOption_)) { + current === unknownOption_ || + emptyOption_ && emptyOption_.nodeType === NODE_TYPE_COMMENT)) { + // Empty options might have directives that transclude + // and insert comments (e.g. ngIf) current = current.nextSibling; } } diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js index 77c068bf630e..918159b0d7a8 100644 --- a/test/ng/directive/ngOptionsSpec.js +++ b/test/ng/directive/ngOptionsSpec.js @@ -2086,6 +2086,30 @@ describe('ngOptions', function() { expect(element[0].selectedIndex).toEqual(0); expect(scope.selected).toEqual([]); }); + + + it('should be possible to use ngIf in the blank option', function() { + var option; + createSingleSelect(''); + + scope.$apply(function() { + scope.values = [{name: 'A'}]; + scope.isBlank = true; + }); + + expect(element.find('option').length).toBe(2); + option = element.find('option').eq(0); + expect(option.val()).toBe(''); + expect(option.text()).toBe('blank'); + + scope.$apply(function() { + scope.isBlank = false; + }); + + expect(element.find('option').length).toBe(1); + option = element.find('option').eq(0); + expect(option.text()).toBe('A'); + }); }); From 8c618d896bb00580540b882efa13ad32a84c113f Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 25 Sep 2015 21:38:47 +0200 Subject: [PATCH 024/354] docs($http): link to usage where config is mentioned; make drier Linking to usage section makes it easier for beginners to find out what the config object looks like. The General Usage section now features an example that actually uses $http(config), and the Shortcut Methods section has been moved so that it appears directly after. Closes #12949 Closes #12950 --- src/ng/http.js | 54 +++++++++++++++++++++----------------------------- 1 file changed, 23 insertions(+), 31 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index 6b553edc87f4..12e2fd3020b6 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -425,28 +425,18 @@ function $HttpProvider() { * * * ## General usage - * The `$http` service is a function which takes a single argument — a configuration object — + * The `$http` service is a function which takes a single argument — a {@link $http#usage configuration object} — * that is used to generate an HTTP request and returns a {@link ng.$q promise}. * * ```js - * // Simple GET request example : - * $http.get('/someUrl'). - * then(function(response) { + * // Simple GET request example: + * $http({ + * method: 'GET', + * url: '/someUrl' + * }).then(function successCallback(response) { * // this callback will be called asynchronously * // when the response is available - * }, function(response) { - * // called asynchronously if an error occurs - * // or server returns response with an error status. - * }); - * ``` - * - * ```js - * // Simple POST request example (passing data) : - * $http.post('/someUrl', {msg:'hello word!'}). - * then(function(response) { - * // this callback will be called asynchronously - * // when the response is available - * }, function(response) { + * }, function errorCallback(response) { * // called asynchronously if an error occurs * // or server returns response with an error status. * }); @@ -466,25 +456,16 @@ function $HttpProvider() { * XMLHttpRequest will transparently follow it, meaning that the error callback will not be * called for such responses. * - * ## Writing Unit Tests that use $http - * When unit testing (using {@link ngMock ngMock}), it is necessary to call - * {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending - * request using trained responses. - * - * ``` - * $httpBackend.expectGET(...); - * $http.get(...); - * $httpBackend.flush(); - * ``` * * ## Shortcut methods * * Shortcut methods are also available. All shortcut methods require passing in the URL, and - * request data must be passed in for POST/PUT requests. + * request data must be passed in for POST/PUT requests. An optional config can be passed as the + * last argument. * * ```js - * $http.get('/someUrl').then(successCallback); - * $http.post('/someUrl', data).then(successCallback); + * $http.get('/someUrl', config).then(successCallback, errorCallback); + * $http.post('/someUrl', data, config).then(successCallback, errorCallback); * ``` * * Complete list of shortcut methods: @@ -498,6 +479,17 @@ function $HttpProvider() { * - {@link ng.$http#patch $http.patch} * * + * ## Writing Unit Tests that use $http + * When unit testing (using {@link ngMock ngMock}), it is necessary to call + * {@link ngMock.$httpBackend#flush $httpBackend.flush()} to flush each pending + * request using trained responses. + * + * ``` + * $httpBackend.expectGET(...); + * $http.get(...); + * $httpBackend.flush(); + * ``` + * * ## Deprecation Notice *
* The `$http` legacy promise methods `success` and `error` have been deprecated. @@ -655,7 +647,7 @@ function $HttpProvider() { * * There are two kinds of interceptors (and two kinds of rejection interceptors): * - * * `request`: interceptors get called with a http `config` object. The function is free to + * * `request`: interceptors get called with a http {@link $http#usage config} object. The function is free to * modify the `config` object or create a new one. The function needs to return the `config` * object directly, or a promise containing the `config` or a new `config` object. * * `requestError`: interceptor gets called when a previous interceptor threw an error or From 2f61145475e495e0f477fca091c51674f5cff935 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 29 Sep 2015 13:30:53 -0700 Subject: [PATCH 025/354] chore(CHANGELOG): update with changes for 1.4.7 --- CHANGELOG.md | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6144c3a0965b..64f55e83736f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,55 @@ + +# 1.4.7 dark-luminescence (2015-09-29) + + +## Bug Fixes + +- **$compile:** use createMap() for $$observe listeners when initialized from attr interpolation + ([5a98e806](https://github.com/angular/angular.js/commit/5a98e806ef3c59916bb4668268125610b11effe8), + [#10446](https://github.com/angular/angular.js/issues/10446)) +- **$parse:** + - block assigning to fields of a constructor + ([a7f3761e](https://github.com/angular/angular.js/commit/a7f3761eda5309f76b73c6fb1d3173a270112899), + [#12860](https://github.com/angular/angular.js/issues/12860)) + - do not convert to string computed properties multiple times + ([698af191](https://github.com/angular/angular.js/commit/698af191ded2465ca4e0f97959b75fede5a531ab)) +- **filters:** ensure `formatNumber` observes i18n decimal separators + ([4994acd2](https://github.com/angular/angular.js/commit/4994acd26e582eec8a92b139bfc09ca79a9b8835), + [#10342](https://github.com/angular/angular.js/issues/10342), [#12850](https://github.com/angular/angular.js/issues/12850)) +- **jqLite:** properly handle dash-delimited node names in `jqLiteBuildFragment` + ([cdd1227a](https://github.com/angular/angular.js/commit/cdd1227a308edd34d31b67f338083b6e0c4c0db9), + [#10617](https://github.com/angular/angular.js/issues/10617), [#12759](https://github.com/angular/angular.js/issues/12759)) +- **ngAnimate:** + - ensure anchoring uses body as a container when needed + ([9d3704ca](https://github.com/angular/angular.js/commit/9d3704ca467081f16b71b011eb50c53d5cdb2f34), + [#12872](https://github.com/angular/angular.js/issues/12872)) + - callback detection should only use RAF when necessary + ([fa8c399f](https://github.com/angular/angular.js/commit/fa8c399fadc30b78710868fe59d2930fdc17c7a5)) +- **ngMessages:** prevent race condition with ngAnimate + ([7295c60f](https://github.com/angular/angular.js/commit/7295c60ffb9f2e4f32043c538ace740b187f565a), + [#12856](https://github.com/angular/angular.js/issues/12856), [#12903](https://github.com/angular/angular.js/issues/12903)) +- **ngOptions:** + - skip comments when looking for option elements + ([68d4dc5b](https://github.com/angular/angular.js/commit/68d4dc5b71b23e4c7c2650e6da3d7200de99f1ae), + [#12190](https://github.com/angular/angular.js/issues/12190)) + - prevent frozen select ui in IE + ([dbc69851](https://github.com/angular/angular.js/commit/dbc698517ff620b3a6279f65d4a9b6e3c15087b9), + [#11314](https://github.com/angular/angular.js/issues/11314), [#11795](https://github.com/angular/angular.js/issues/11795)) + + +## Features + +- **$animateCss:** add support for temporary styles via `cleanupStyles` + ([e52d731b](https://github.com/angular/angular.js/commit/e52d731bfd1fbb6c616125fbde2fb365722254b7), + [#12930](https://github.com/angular/angular.js/issues/12930)) +- **$http:** add `$xhrFactory` service to enable creation of custom xhr objects + ([7a413df5](https://github.com/angular/angular.js/commit/7a413df5e47e04e20a1c93d35922050bbcbfb492), + [#2318](https://github.com/angular/angular.js/issues/2318), [#9319](https://github.com/angular/angular.js/issues/9319), [#12159](https://github.com/angular/angular.js/issues/12159)) + + +## Breaking Changes + + # 1.4.6 multiplicative-elevation (2015-09-17) From 3485ba1e2b55284402e7734b528a1b7579d5d811 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 1 Oct 2015 18:17:52 +0200 Subject: [PATCH 026/354] docs(guide/Using $location): note that the fakeBrowser is not for actual projects Closes #12982 Closes #12987 --- docs/content/guide/$location.ngdoc | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/docs/content/guide/$location.ngdoc b/docs/content/guide/$location.ngdoc index 237c49a1b484..c54cc1a216d5 100644 --- a/docs/content/guide/$location.ngdoc +++ b/docs/content/guide/$location.ngdoc @@ -356,15 +356,15 @@ legacy browsers and hashbang links in modern browser: ### Example -Here you can see two `$location` instances, both in **Html5 mode**, but on different browsers, so -that you can see the differences. These `$location` services are connected to a fake browsers. Each -input represents the address bar of the browser. +Here you can see two `$location` instances that show the difference between **Html5 mode** and **Html5 Fallback mode**. +Note that to simulate different levels of browser support, the `$location` instances are connected to +a fakeBrowser service, which you don't have to set up in actual projects. -Note that when you type hashbang url into first browser (or vice versa) it doesn't rewrite / +Note that when you type hashbang url into the first browser (or vice versa) it doesn't rewrite / redirect to regular / hashbang url, as this conversion happens only during parsing the initial URL = on page reload. -In these examples we use `` +In these examples we use ``. The inputs represent the address bar of the browser. #### Browser in HTML5 mode @@ -389,6 +389,7 @@ In these examples we use `` angular.module('html5-mode', ['fake-browser', 'address-bar']) + // Configure the fakeBrowser. Do not set these values in actual projects. .constant('initUrl', 'http://www.example.com/base/path?a=b#h') .constant('baseHref', '/base/index.html') .value('$sniffer', { history: true }) @@ -538,6 +539,7 @@ In these examples we use `` angular.module('hashbang-mode', ['fake-browser', 'address-bar']) + // Configure the fakeBrowser. Do not set these values in actual projects. .constant('initUrl', 'http://www.example.com/base/index.html#!/path?a=b#h') .constant('baseHref', '/base/index.html') .value('$sniffer', { history: false }) From 48d0ffcbc4e7579a5088df2ed342734d000e6977 Mon Sep 17 00:00:00 2001 From: koyner Date: Thu, 1 Oct 2015 17:39:57 +0200 Subject: [PATCH 027/354] docs(guide/Forms): fix indentation. Closes #12988 --- docs/content/guide/forms.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index 336f26d7f07d..588f57ac40e7 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -383,7 +383,7 @@ In the following example we create two directives: return { require: 'ngModel', link: function(scope, elm, attrs, ctrl) { - var usernames = ['Jim', 'John', 'Jill', 'Jackie']; + var usernames = ['Jim', 'John', 'Jill', 'Jackie']; ctrl.$asyncValidators.username = function(modelValue, viewValue) { From f9387c6890dffca5a1d515f5f6533f2eacdfad38 Mon Sep 17 00:00:00 2001 From: Donghwan Kim Date: Thu, 1 Oct 2015 23:12:05 +0900 Subject: [PATCH 028/354] docs(guide/Running in Production): fix an incorrect indefinite article Closes #12986 --- docs/content/guide/production.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/production.ngdoc b/docs/content/guide/production.ngdoc index 1ecfd4cb3b96..52d088122ca3 100644 --- a/docs/content/guide/production.ngdoc +++ b/docs/content/guide/production.ngdoc @@ -44,7 +44,7 @@ and {@link angular.reloadWithDebugInfo `angular.reloadWithDebugInfo`}. ## Strict DI Mode -Using strict di mode in your production application will throw errors when a injectable +Using strict di mode in your production application will throw errors when an injectable function is not {@link di#dependency-annotation annotated explicitly}. Strict di mode is intended to help you make sure that your code will work when minified. However, it also will force you to From 3a8d1354ce49abc21aec32ac8091ba2e7eded799 Mon Sep 17 00:00:00 2001 From: John Zhang Date: Tue, 29 Sep 2015 11:31:18 -0700 Subject: [PATCH 029/354] docs($httpProvider): fix description of useLegacyPromiseExtensions useLegacyPromiseExtensions's default value is true, and the legacy methods exist when it is set to true. Closes #12974 --- src/ng/http.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index 12e2fd3020b6..e30d04e1ea71 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -345,9 +345,9 @@ function $HttpProvider() { * Configure `$http` service to return promises without the shorthand methods `success` and `error`. * This should be used to make sure that applications work without these methods. * - * Defaults to false. If no value is specified, returns the current configured value. + * Defaults to true. If no value is specified, returns the current configured value. * - * @param {boolean=} value If true, `$http` will return a normal promise without the `success` and `error` methods. + * @param {boolean=} value If true, `$http` will return a promise with the deprecated legacy `success` and `error` methods. * * @returns {boolean|Object} If a value is specified, returns the $httpProvider for chaining. * otherwise, returns the current configured value. From 4262f15e166242ef115df65bcb2b5a3ab4b3e1ab Mon Sep 17 00:00:00 2001 From: Alexandr Gureev Date: Thu, 1 Oct 2015 14:23:52 -0700 Subject: [PATCH 030/354] docs(ngAnimate): fix typos in examples Closes #12995 --- src/ngAnimate/module.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js index 2e4ec0171fdf..66b6c35308c0 100644 --- a/src/ngAnimate/module.js +++ b/src/ngAnimate/module.js @@ -290,7 +290,7 @@ * jQuery(element).fadeOut(1000, doneFn); * } * } - * }] + * }]); * ``` * * The nice thing about JS-based animations is that we can inject other services and make use of advanced animation libraries such as @@ -321,7 +321,7 @@ * // do some cool animation and call the doneFn * } * } - * }] + * }]); * ``` * * ## CSS + JS Animations Together @@ -343,7 +343,7 @@ * jQuery(element).slideIn(1000, doneFn); * } * } - * }] + * }]); * ``` * * ```css @@ -372,7 +372,7 @@ * runner.done(doneFn); * } * } - * }] + * }]); * ``` * * The nice thing here is that we can save bandwidth by sticking to our CSS-based animation code and we don't need to rely on a 3rd-party animation framework. @@ -396,7 +396,7 @@ * runner.done(doneFn); * } * } - * }] + * }]); * ``` * * Now we can fill in the rest via our transition CSS code: From 690b69b9cd1d42bf85577a8f926c9fb3ed594a72 Mon Sep 17 00:00:00 2001 From: Jason Hopper Date: Thu, 1 Oct 2015 13:20:07 -0600 Subject: [PATCH 031/354] docs(tutorial): update tutorial copy to reflect updates to tutorial source @bower.json excerpt for animations Code breaks if tutorial is followed without reset. bower.js exceprt copy does not match source. Changed to reflect in text body. Closes #12993 --- docs/content/tutorial/step_12.ngdoc | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/content/tutorial/step_12.ngdoc b/docs/content/tutorial/step_12.ngdoc index 17dd6241244f..ca712e4a4e20 100644 --- a/docs/content/tutorial/step_12.ngdoc +++ b/docs/content/tutorial/step_12.ngdoc @@ -36,20 +36,20 @@ We are using [Bower][bower] to install client side dependencies. This step upda "license": "MIT", "private": true, "dependencies": { - "angular": "~1.3.0", - "angular-mocks": "~1.3.0", - "bootstrap": "~3.1.1", - "angular-route": "~1.3.0", - "angular-resource": "~1.3.0", + "angular": "1.4.x", + "angular-mocks": "1.4.x", "jquery": "~2.1.1", - "angular-animate": "~1.3.0" + "bootstrap": "~3.1.1", + "angular-route": "1.4.x", + "angular-resource": "1.4.x", + "angular-animate": "1.4.x" } } ``` -* `"angular-animate": "~1.3.0"` tells bower to install a version of the -angular-animate component that is compatible with version 1.3.x. -* `"jquery": "2.1.1"` tells bower to install the 2.1.1 version of jQuery. Note that this is not an +* `"angular-animate": "1.4.x"` tells bower to install a version of the +angular-animate component that is compatible with version 1.4.x. +* `"jquery": "~2.1.1"` tells bower to install the 2.1.1 version of jQuery. Note that this is not an Angular library, it is the standard jQuery library. We can use bower to install a wide range of 3rd party libraries. @@ -111,7 +111,7 @@ __`app/index.html`.__ ```
- **Important:** Be sure to use jQuery version 2.1 or newer when using Angular 1.3; jQuery 1.x is + **Important:** Be sure to use jQuery version 2.1 or newer when using Angular 1.4; jQuery 1.x is not officially supported. Be sure to load jQuery before all AngularJS scripts, otherwise AngularJS won't detect jQuery and animations will not work as expected. From 99fc6cda981c01320e8516287d082e548a87cf0f Mon Sep 17 00:00:00 2001 From: spoonraker Date: Wed, 2 Sep 2015 15:12:12 -0500 Subject: [PATCH 032/354] docs(tutorial): updates for the text for animations in step 12 The grammar for the animation description has now been improved. Closes #12740 --- docs/content/tutorial/step_12.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/tutorial/step_12.ngdoc b/docs/content/tutorial/step_12.ngdoc index ca712e4a4e20..f9ac9adade07 100644 --- a/docs/content/tutorial/step_12.ngdoc +++ b/docs/content/tutorial/step_12.ngdoc @@ -239,9 +239,9 @@ The name of the starting class is the name of the event that is fired (like `ent The active class name is the same as the starting class's but with an `-active` suffix. This two-class CSS naming convention allows the developer to craft an animation, beginning to end. -In our example above, elements expand from a height of **0** to **120 pixels** when items are added or moved, -around and collapsing the items before removing them from the list. -There's also a nice fade-in and fade-out effect that also occurs at the same time. All of this is handled +In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the +list and are collapsed back down to **0 pixels** before being removed from the list. +There's also a nice fade-in and fade-out effect that occurs at the same time. All of this is handled by the CSS transition declarations at the top of the example code above. Although most modern browsers have good support for [CSS transitions](http://caniuse.com/#feat=css-transitions) From 256d9a948cf409b67407bad0b3b1cfdf0ef26e8f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Mon, 5 Oct 2015 10:55:56 -0700 Subject: [PATCH 033/354] docs(ngAnimate): simplify `$animateCss` example code --- src/ngAnimate/module.js | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js index 66b6c35308c0..059ebfda4229 100644 --- a/src/ngAnimate/module.js +++ b/src/ngAnimate/module.js @@ -363,13 +363,12 @@ * ```js * myModule.animation('.slide', ['$animateCss', function($animateCss) { * return { - * enter: function(element, doneFn) { + * enter: function(element) { * // this will trigger `.slide.ng-enter` and `.slide.ng-enter-active`. - * var runner = $animateCss(element, { + * return $animateCss(element, { * event: 'enter', * structural: true - * }).start(); -* runner.done(doneFn); + * }); * } * } * }]); @@ -384,16 +383,14 @@ * ```js * myModule.animation('.slide', ['$animateCss', function($animateCss) { * return { - * enter: function(element, doneFn) { - * var runner = $animateCss(element, { + * enter: function(element) { + * return $animateCss(element, { * event: 'enter', * structural: true, * addClass: 'maroon-setting', * from: { height:0 }, * to: { height: 200 } - * }).start(); - * - * runner.done(doneFn); + * }); * } * } * }]); From 7b2ecf42c697eb8d51a0f2d73b324bd900139e05 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 28 Sep 2015 23:39:21 +0200 Subject: [PATCH 034/354] fix(ngOptions): override select option registration When ngOptions is present on a select, the option directive should not be able to register options on the selectCtrl since this may cause errors during the ngOptions lifecycle. This can happen in the following cases: - there is a blank option below the select element, an ngModel directive, an ngOptions directive and some other directive on the select element, which compiles the children of the select (i.e. the option elements) before ngOptions is has finished linking. - there is a blank option below the select element, an ngModel directive, an ngOptions directive and another directive, which uses templateUrl and replace:true. What happens is: - the option directive is compiled and adds an element `$destroy` listener that will call `ngModel.$render` when the option element is removed. - when `ngOptions` processes the option, it removes the element, and triggers the `$destroy` listener on the option. - the registered `$destroy` listener calls `$render` on `ngModel`. - $render calls `selectCtrl.writeValue()`, which accesses the `options` object in the `ngOptions` directive. - Since `ngOptions` has not yet completed linking the `options` has not yet been defined and we get an error. This fix moves the registration code for the `option` directive into the `SelectController.registerOption()` method, which is then overridden by the `ngOptions` directive as a `noop`. Fixes #11685 Closes #12972 Closes #12968 Closes #13012 --- src/ng/directive/ngOptions.js | 19 +++-- src/ng/directive/select.js | 109 +++++++++++++++-------------- test/ng/directive/ngOptionsSpec.js | 78 ++++++++++++++++++++- 3 files changed, 146 insertions(+), 60 deletions(-) diff --git a/src/ng/directive/ngOptions.js b/src/ng/directive/ngOptions.js index b30ff6f5e36f..d3e0414130b0 100644 --- a/src/ng/directive/ngOptions.js +++ b/src/ng/directive/ngOptions.js @@ -392,11 +392,6 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { var optionTemplate = document.createElement('option'), optGroupTemplate = document.createElement('optgroup'); - return { - restrict: 'A', - terminal: true, - require: ['select', '?ngModel'], - link: function(scope, selectElement, attr, ctrls) { // if ngModel is not defined, we don't need to do anything var ngModelCtrl = ctrls[1]; @@ -451,7 +446,6 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { unknownOption.remove(); }; - // Update the controller methods for multiple selectable options if (!multiple) { @@ -729,7 +723,20 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { } } + } + return { + restrict: 'A', + terminal: true, + require: ['select', '?ngModel'], + link: { + pre: function ngOptionsPreLink(scope, selectElement, attr, ctrls) { + // Deactivate the SelectController.register method to prevent + // option directives from accidentally registering themselves + // (and unwanted $destroy handlers etc.) + ctrls[0].registerOption = noop; + }, + post: ngOptionsPostLink } }; }]; diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js index df2bcee32437..174343e5f9f0 100644 --- a/src/ng/directive/select.js +++ b/src/ng/directive/select.js @@ -2,6 +2,15 @@ var noopNgModelController = { $setViewValue: noop, $render: noop }; +function chromeHack(optionElement) { + // Workaround for https://code.google.com/p/chromium/issues/detail?id=381459 + // Adding an
angular.module('optionsExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.user = { name: 'say', data: '' }; + $scope.user = { name: 'John', data: '' }; $scope.cancel = function(e) { if (e.keyCode == 27) { @@ -1161,20 +1162,20 @@ var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/; var other = element(by.model('user.data')); it('should allow custom events', function() { - input.sendKeys(' hello'); + input.sendKeys(' Doe'); input.click(); - expect(model.getText()).toEqual('say'); + expect(model.getText()).toEqual('John'); other.click(); - expect(model.getText()).toEqual('say hello'); + expect(model.getText()).toEqual('John Doe'); }); it('should $rollbackViewValue when model changes', function() { - input.sendKeys(' hello'); - expect(input.getAttribute('value')).toEqual('say hello'); + input.sendKeys(' Doe'); + expect(input.getAttribute('value')).toEqual('John Doe'); input.sendKeys(protractor.Key.ESCAPE); - expect(input.getAttribute('value')).toEqual('say'); + expect(input.getAttribute('value')).toEqual('John'); other.click(); - expect(model.getText()).toEqual('say'); + expect(model.getText()).toEqual('John'); });
@@ -1200,7 +1201,7 @@ var DEFAULT_REGEXP = /(\s+|^)default(\s+|$)/; angular.module('optionsExample', []) .controller('ExampleController', ['$scope', function($scope) { - $scope.user = { name: 'say' }; + $scope.user = { name: 'Igor' }; }]); From 87b0055c80f40589c5bcf3765e59e872bcfae119 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 1 May 2015 14:47:29 +0100 Subject: [PATCH 067/354] fix($rootScope): stop IE9 memory leak when destroying scopes Ensure that all child scopes are completely disconnected when a parent is destroyed. Closes #10706 Closes #11786 --- src/ng/rootScope.js | 36 ++++++++++++++++++++++++++---------- test/ng/rootScopeSpec.js | 28 ++++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 10 deletions(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 952f4b92d484..ca83cf6fdf85 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -101,6 +101,29 @@ function $RootScopeProvider() { $event.currentScope.$$destroyed = true; } + function cleanUpScope($scope) { + + if (msie === 9) { + // There is a memory leak in IE9 if all child scopes are not disconnected + // completely when a scope is destroyed. So this code will recurse up through + // all this scopes children + // + // See issue https://github.com/angular/angular.js/issues/10706 + $scope.$$childHead && cleanUpScope($scope.$$childHead); + $scope.$$nextSibling && cleanUpScope($scope.$$nextSibling); + } + + // The code below works around IE9 and V8's memory leaks + // + // See: + // - https://code.google.com/p/v8/issues/detail?id=2073#c26 + // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909 + // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451 + + $scope.$parent = $scope.$$nextSibling = $scope.$$prevSibling = $scope.$$childHead = + $scope.$$childTail = $scope.$root = $scope.$$watchers = null; + } + /** * @ngdoc type * @name $rootScope.Scope @@ -897,16 +920,9 @@ function $RootScopeProvider() { this.$on = this.$watch = this.$watchGroup = function() { return noop; }; this.$$listeners = {}; - // All of the code below is bogus code that works around V8's memory leak via optimized code - // and inline caches. - // - // see: - // - https://code.google.com/p/v8/issues/detail?id=2073#c26 - // - https://github.com/angular/angular.js/issues/6794#issuecomment-38648909 - // - https://github.com/angular/angular.js/issues/1313#issuecomment-10378451 - - this.$parent = this.$$nextSibling = this.$$prevSibling = this.$$childHead = - this.$$childTail = this.$root = this.$$watchers = null; + // Disconnect the next sibling to prevent `cleanUpScope` destroying those too + this.$$nextSibling = null; + cleanUpScope(this); }, /** diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index 8bdc6b4c50f0..e704608db990 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -1211,6 +1211,34 @@ describe('Scope', function() { expect(child.parentModel).toBe('parent'); expect(child.childModel).toBe('child'); })); + + + if (msie === 9) { + // See issue https://github.com/angular/angular.js/issues/10706 + it('should completely disconnect all child scopes on IE9', inject(function($rootScope) { + var parent = $rootScope.$new(), + child1 = parent.$new(), + child2 = parent.$new(), + grandChild = child1.$new(); + parent.$destroy(); + + $rootScope.$digest(); + + expect(isDisconnected(parent)).toBe(true); + expect(isDisconnected(child1)).toBe(true); + expect(isDisconnected(child2)).toBe(true); + expect(isDisconnected(grandChild)).toBe(true); + + function isDisconnected($scope) { + return $scope.$$nextSibling === null && + $scope.$$prevSibling === null && + $scope.$$childHead === null && + $scope.$$childTail === null && + $scope.$root === null && + $scope.$$watchers === null; + } + })); + } }); From c690946469e09cfe6b774e63dbe14ace92ce6cb7 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 30 Sep 2015 16:56:48 +0300 Subject: [PATCH 068/354] fix($http): apply `transformResponse` even when `data` is empty Note, that (as a by-product of the previous implementation) only non-empty data was passed through the `transformResponse` pipeline. This is no longer the case. When using a custom `transformResponse` function, one should make sure it can also handle an empty (i.e. falsy) `data` argument appropriately. Fixes #12976 Closes #12979 --- src/ng/http.js | 7 ++----- test/ng/httpSpec.js | 19 +++++++++++++++++++ 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index e30d04e1ea71..09383a409bbd 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -999,11 +999,8 @@ function $HttpProvider() { function transformResponse(response) { // make a copy since the response must be cacheable var resp = extend({}, response); - if (!response.data) { - resp.data = response.data; - } else { - resp.data = transformData(response.data, response.headers, response.status, config.transformResponse); - } + resp.data = transformData(response.data, response.headers, response.status, + config.transformResponse); return (isSuccess(response.status)) ? resp : $q.reject(resp); diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js index 168305eab34f..7942dd9d567e 100644 --- a/test/ng/httpSpec.js +++ b/test/ng/httpSpec.js @@ -1391,6 +1391,25 @@ describe('$http', function() { expect(callback).toHaveBeenCalledOnce(); expect(callback.mostRecentCall.args[0]).toBe('RESP-FIRST:V1'); }); + + + it('should apply `transformResponse` even if the response data is empty', function(data) { + var callback = jasmine.createSpy('transformResponse'); + var config = {transformResponse: callback}; + + $httpBackend.expect('GET', '/url1').respond(200, undefined); + $httpBackend.expect('GET', '/url2').respond(200, null); + $httpBackend.expect('GET', '/url3').respond(200, ''); + $http.get('/url1', config); + $http.get('/url2', config); + $http.get('/url3', config); + $httpBackend.flush(); + + expect(callback.callCount).toBe(3); + expect(callback.calls[0].args[0]).toBe(undefined); + expect(callback.calls[1].args[0]).toBe(null); + expect(callback.calls[2].args[0]).toBe(''); + }); }); }); From 2a5a52a76ccf60c6e8c5d881e90e11a2666a6d3c Mon Sep 17 00:00:00 2001 From: Alicia Lauerman Date: Sat, 11 Jul 2015 19:29:21 -0400 Subject: [PATCH 069/354] fix($cacheFactory): check key exists before decreasing cache size count Previously, there was no check for the existence of an item in the cache when calling `$cacheFactory.remove()` before modifying the cache size count. Closes #12321 Closes #12329 --- src/ng/cacheFactory.js | 11 ++++++----- test/ng/cacheFactorySpec.js | 13 +++++++++++++ 2 files changed, 19 insertions(+), 5 deletions(-) diff --git a/src/ng/cacheFactory.js b/src/ng/cacheFactory.js index f2a55cb3d810..9e5576a7a57d 100644 --- a/src/ng/cacheFactory.js +++ b/src/ng/cacheFactory.js @@ -93,9 +93,9 @@ function $CacheFactoryProvider() { var size = 0, stats = extend({}, options, {id: cacheId}), - data = {}, + data = createMap(), capacity = (options && options.capacity) || Number.MAX_VALUE, - lruHash = {}, + lruHash = createMap(), freshEnd = null, staleEnd = null; @@ -223,6 +223,8 @@ function $CacheFactoryProvider() { delete lruHash[key]; } + if (!(key in data)) return; + delete data[key]; size--; }, @@ -237,9 +239,9 @@ function $CacheFactoryProvider() { * Clears the cache object of any entries. */ removeAll: function() { - data = {}; + data = createMap(); size = 0; - lruHash = {}; + lruHash = createMap(); freshEnd = staleEnd = null; }, @@ -399,4 +401,3 @@ function $TemplateCacheProvider() { return $cacheFactory('templates'); }]; } - diff --git a/test/ng/cacheFactorySpec.js b/test/ng/cacheFactorySpec.js index 7159484d68d4..cb65a1740679 100644 --- a/test/ng/cacheFactorySpec.js +++ b/test/ng/cacheFactorySpec.js @@ -133,6 +133,19 @@ describe('$cacheFactory', function() { expect(cache.info().size).toBe(0); })); + it('should only decrement size when an element is actually removed via remove', inject(function($cacheFactory) { + cache.put('foo', 'bar'); + expect(cache.info().size).toBe(1); + + cache.remove('undefined'); + expect(cache.info().size).toBe(1); + + cache.remove('hasOwnProperty'); + expect(cache.info().size).toBe(1); + + cache.remove('foo'); + expect(cache.info().size).toBe(0); + })); it('should return cache id', inject(function($cacheFactory) { expect(cache.info().id).toBe('test'); From 1c0f7213687f7e72ef8c028898c193e1834b2dd2 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 28 Oct 2015 22:03:42 +0000 Subject: [PATCH 070/354] test($rootScope): ensure that only child scopes are disconnected Related to #11786 and 8fe781fbe7c42c64eb895c28d9fd5479b037d020 --- test/ng/rootScopeSpec.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index e704608db990..a9a1ae120494 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -1219,15 +1219,17 @@ describe('Scope', function() { var parent = $rootScope.$new(), child1 = parent.$new(), child2 = parent.$new(), - grandChild = child1.$new(); - parent.$destroy(); + grandChild1 = child1.$new(), + grandChild2 = child1.$new(); + child1.$destroy(); $rootScope.$digest(); - expect(isDisconnected(parent)).toBe(true); + expect(isDisconnected(parent)).toBe(false); expect(isDisconnected(child1)).toBe(true); - expect(isDisconnected(child2)).toBe(true); - expect(isDisconnected(grandChild)).toBe(true); + expect(isDisconnected(child2)).toBe(false); + expect(isDisconnected(grandChild1)).toBe(true); + expect(isDisconnected(grandChild2)).toBe(true); function isDisconnected($scope) { return $scope.$$nextSibling === null && From 7170f9d9ca765c578f8d3eb4699860a9330a0a11 Mon Sep 17 00:00:00 2001 From: Stanislav Komanec Date: Sun, 23 Aug 2015 20:06:17 +0200 Subject: [PATCH 071/354] fix($resource): allow XHR request to be cancelled via timeout promise Closes #12657 Closes #12675 Closes #10890 Closes #9332 --- src/ngResource/resource.js | 13 +++++++++++-- test/ngResource/resourceSpec.js | 32 +++++++++++++++++++++++++++++++- 2 files changed, 42 insertions(+), 3 deletions(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 34ba768716b9..565b104ba074 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -568,8 +568,17 @@ angular.module('ngResource', ['ng']). undefined; forEach(action, function(value, key) { - if (key != 'params' && key != 'isArray' && key != 'interceptor') { - httpConfig[key] = copy(value); + switch (key) { + default: + httpConfig[key] = copy(value); + break; + case 'params': + case 'isArray': + case 'interceptor': + break; + case 'timeout': + httpConfig[key] = value; + break; } }); diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js index 79450e4f24ea..2ac1454bd48b 100644 --- a/test/ngResource/resourceSpec.js +++ b/test/ngResource/resourceSpec.js @@ -1308,7 +1308,7 @@ describe("resource", function() { }); describe('resource', function() { - var $httpBackend, $resource; + var $httpBackend, $resource, $q; beforeEach(module(function($exceptionHandlerProvider) { $exceptionHandlerProvider.mode('log'); @@ -1319,6 +1319,7 @@ describe('resource', function() { beforeEach(inject(function($injector) { $httpBackend = $injector.get('$httpBackend'); $resource = $injector.get('$resource'); + $q = $injector.get('$q'); })); @@ -1356,5 +1357,34 @@ describe('resource', function() { ); }); + it('should cancel the request if timeout promise is resolved', function() { + var canceler = $q.defer(); + + $httpBackend.when('GET', '/CreditCard').respond({data: '123'}); + + var CreditCard = $resource('/CreditCard', {}, { + query: { + method: 'GET', + timeout: canceler.promise + } + }); + + CreditCard.query(); + + canceler.resolve(); + expect($httpBackend.flush).toThrow(new Error("No pending request to flush !")); + + canceler = $q.defer(); + CreditCard = $resource('/CreditCard', {}, { + query: { + method: 'GET', + timeout: canceler.promise + } + }); + + CreditCard.query(); + expect($httpBackend.flush).not.toThrow(); + }); + }); From 6bd6dbff4961a601c03e9465442788781d329ba6 Mon Sep 17 00:00:00 2001 From: Sreenivasan K Date: Tue, 7 Jul 2015 01:08:59 +0800 Subject: [PATCH 072/354] fix($animate): ensure leave animation calls `close` callback Closes #12278 Closes #12096 Closes #13054 --- src/ngAnimate/animateQueue.js | 7 ++- test/ngAnimate/animateSpec.js | 81 +++++++++++++++++++++++++++++++++++ 2 files changed, 86 insertions(+), 2 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 3345dce7691d..04f837c8aaa9 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -139,8 +139,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { return mergeAnimationOptions(element, options, {}); } - function findCallbacks(element, event) { + function findCallbacks(parent, element, event) { var targetNode = getDomNode(element); + var targetParentNode = getDomNode(parent); var matches = []; var entries = callbackRegistry[event]; @@ -148,6 +149,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { forEach(entries, function(entry) { if (entry.node.contains(targetNode)) { matches.push(entry.callback); + } else if (event === 'leave' && entry.node.contains(targetParentNode)) { + matches.push(entry.callback); } }); } @@ -473,7 +476,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { function notifyProgress(runner, event, phase, data) { runInNextPostDigestOrNow(function() { - var callbacks = findCallbacks(element, event); + var callbacks = findCallbacks(parent, element, event); if (callbacks.length) { // do not optimize this call here to RAF because // we don't know how heavy the callback code here will diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index c08808150420..9df3b400bdc3 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1781,5 +1781,86 @@ describe("animations", function() { expect(isElementRemoved).toBe(true); })); + it('leave : should trigger a callback for an leave animation', + inject(function($animate, $rootScope, $$rAF, $rootElement, $document) { + + var callbackTriggered = false; + $animate.on('leave', jqLite($document[0].body), function() { + callbackTriggered = true; + }); + + element = jqLite('
'); + $rootElement.append(element); + $animate.leave(element, $rootElement); + $rootScope.$digest(); + + $$rAF.flush(); + + expect(callbackTriggered).toBe(true); + })); + + it('leave : should not fire a callback if the element is outside of the given container', + inject(function($animate, $rootScope, $$rAF, $rootElement) { + + var callbackTriggered = false; + var innerContainer = jqLite('
'); + $rootElement.append(innerContainer); + + $animate.on('leave', innerContainer, + function(element, phase, data) { + callbackTriggered = true; + }); + + element = jqLite('
'); + $rootElement.append(element); + $animate.leave(element, $rootElement); + $rootScope.$digest(); + + expect(callbackTriggered).toBe(false); + })); + + it('leave : should fire a `start` callback when the animation starts with the matching element', + inject(function($animate, $rootScope, $$rAF, $rootElement, $document) { + + element = jqLite('
'); + + var capturedState; + var capturedElement; + $animate.on('leave', jqLite($document[0].body), function(element, phase) { + capturedState = phase; + capturedElement = element; + }); + + $rootElement.append(element); + $animate.leave(element, $rootElement); + $rootScope.$digest(); + $$rAF.flush(); + + expect(capturedState).toBe('start'); + expect(capturedElement).toBe(element); + })); + + it('leave : should fire a `close` callback when the animation ends with the matching element', + inject(function($animate, $rootScope, $$rAF, $rootElement, $document) { + + element = jqLite('
'); + + var capturedState; + var capturedElement; + $animate.on('leave', jqLite($document[0].body), function(element, phase) { + capturedState = phase; + capturedElement = element; + }); + + $rootElement.append(element); + var runner = $animate.leave(element, $rootElement); + $rootScope.$digest(); + runner.end(); + $$rAF.flush(); + + expect(capturedState).toBe('close'); + expect(capturedElement).toBe(element); + })); + }); }); From 5758d7396449a3422e4a109e2e8beceb473e84a4 Mon Sep 17 00:00:00 2001 From: Pablo Villoslada Puigcerber Date: Mon, 19 Oct 2015 03:10:31 +0200 Subject: [PATCH 073/354] docs(select): document the `multiple` attribute Add the `multiple` attribute to the documentation of the select directive. Closes #13119 --- src/ng/directive/select.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js index 174343e5f9f0..b5105589c122 100644 --- a/src/ng/directive/select.js +++ b/src/ng/directive/select.js @@ -187,6 +187,8 @@ var SelectController = * * @param {string} ngModel Assignable angular expression to data-bind to. * @param {string=} name Property name of the form under which the control is published. + * @param {string=} multiple Allows multiple options to be selected. The selected values will be + * bound to the model as an array. * @param {string=} required Sets `required` validation error key if the value is not entered. * @param {string=} ngRequired Adds required attribute and required validation constraint to * the element when the ngRequired expression evaluates to true. Use ngRequired instead of required From 44c9d1616ab477021cd3f0cd4b00c435ef988415 Mon Sep 17 00:00:00 2001 From: Michael George Attard Date: Fri, 16 Oct 2015 13:09:53 +0200 Subject: [PATCH 074/354] docs($rootScope): improve clarity and consistency Closes #13110 --- src/ng/rootScope.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index ca83cf6fdf85..ae374d6d7cd9 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -14,15 +14,15 @@ * exposed as $$____ properties * * Loop operations are optimized by using while(count--) { ... } - * - this means that in order to keep the same order of execution as addition we have to add + * - This means that in order to keep the same order of execution as addition we have to add * items to the array at the beginning (unshift) instead of at the end (push) * * Child scopes are created and removed often - * - Using an array would be slow since inserts in middle are expensive so we use linked list + * - Using an array would be slow since inserts in the middle are expensive; so we use linked lists * - * There are few watches then a lot of observers. This is why you don't want the observer to be - * implemented in the same way as watch. Watch requires return of initialization function which - * are expensive to construct. + * There are fewer watches than observers. This is why you don't want the observer to be implemented + * in the same way as watch. Watch requires return of the initialization function which is expensive + * to construct. */ @@ -64,7 +64,7 @@ * Every application has a single root {@link ng.$rootScope.Scope scope}. * All other scopes are descendant scopes of the root scope. Scopes provide separation * between the model and the view, via a mechanism for watching the model for changes. - * They also provide an event emission/broadcast and subscription facility. See the + * They also provide event emission/broadcast and subscription facility. See the * {@link guide/scope developer guide on scopes}. */ function $RootScopeProvider() { From 2512a81e09523f587c7df6d0715db896a318e9f0 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 30 Oct 2015 22:02:21 +0100 Subject: [PATCH 075/354] docs(error/ctreq): fix typo Closes #13083 --- docs/content/error/$compile/ctreq.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/$compile/ctreq.ngdoc b/docs/content/error/$compile/ctreq.ngdoc index d222a1bdc65f..8aedd10a38c5 100644 --- a/docs/content/error/$compile/ctreq.ngdoc +++ b/docs/content/error/$compile/ctreq.ngdoc @@ -8,7 +8,7 @@ but the required directive controller is not present on the current DOM element To resolve this error ensure that there is no typo in the required controller name and that the required directive controller is present on the current element. -If the required controller is expected to be on a ancestor element, make sure that you prefix the controller name in the `require` definition with `^`. +If the required controller is expected to be on an ancestor element, make sure that you prefix the controller name in the `require` definition with `^`. If the required controller is optionally requested, use `?` or `^?` to specify that. From 7a4124c298c91ea3acb8c81146d408f75f85f3f2 Mon Sep 17 00:00:00 2001 From: Bert Verhelst Date: Mon, 12 Oct 2015 11:15:06 +0200 Subject: [PATCH 076/354] docs($location): improve style Closes #13072 --- src/ng/location.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ng/location.js b/src/ng/location.js index a904b100b7c6..f575a653f916 100644 --- a/src/ng/location.js +++ b/src/ng/location.js @@ -574,9 +574,9 @@ var locationPrototype = { * @description * This method is getter / setter. * - * Return hash fragment when called without any parameter. + * Returns the hash fragment when called without any parameters. * - * Change hash fragment when called with parameter and return `$location`. + * Changes the hash fragment when called with a parameter and returns `$location`. * * * ```js @@ -597,8 +597,8 @@ var locationPrototype = { * @name $location#replace * * @description - * If called, all changes to $location during current `$digest` will be replacing current history - * record, instead of adding new one. + * If called, all changes to $location during the current `$digest` will replace the current history + * record, instead of adding a new one. */ replace: function() { this.$$replace = true; From 1bba358a757138c94c4bbcf344aa2742907abf94 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 31 Oct 2015 20:43:13 +0000 Subject: [PATCH 077/354] chore(package.json): add commitizen, adapter and npm script Closes #13194 --- npm-shrinkwrap.clean.json | 3125 +++++++++++++++++++++++ npm-shrinkwrap.json | 5072 ++++++++++++++++++++++++++++++++++++- package.json | 12 +- 3 files changed, 8077 insertions(+), 132 deletions(-) diff --git a/npm-shrinkwrap.clean.json b/npm-shrinkwrap.clean.json index a7555fce9dc9..af9e09f46308 100644 --- a/npm-shrinkwrap.clean.json +++ b/npm-shrinkwrap.clean.json @@ -2266,6 +2266,3131 @@ } } }, + "commitizen": { + "version": "2.3.0", + "dependencies": { + "babel": { + "version": "5.8.23", + "dependencies": { + "babel-core": { + "version": "5.8.33", + "dependencies": { + "babel-plugin-constant-folding": { + "version": "1.0.1" + }, + "babel-plugin-dead-code-elimination": { + "version": "1.0.2" + }, + "babel-plugin-eval": { + "version": "1.0.1" + }, + "babel-plugin-inline-environment-variables": { + "version": "1.0.1" + }, + "babel-plugin-jscript": { + "version": "1.0.4" + }, + "babel-plugin-member-expression-literals": { + "version": "1.0.1" + }, + "babel-plugin-property-literals": { + "version": "1.0.1" + }, + "babel-plugin-proto-to-assign": { + "version": "1.0.4" + }, + "babel-plugin-react-constant-elements": { + "version": "1.0.3" + }, + "babel-plugin-react-display-name": { + "version": "1.0.3" + }, + "babel-plugin-remove-console": { + "version": "1.0.1" + }, + "babel-plugin-remove-debugger": { + "version": "1.0.1" + }, + "babel-plugin-runtime": { + "version": "1.0.7" + }, + "babel-plugin-undeclared-variables-check": { + "version": "1.0.2", + "dependencies": { + "leven": { + "version": "1.0.2" + } + } + }, + "babel-plugin-undefined-to-void": { + "version": "1.1.6" + }, + "babylon": { + "version": "5.8.29" + }, + "bluebird": { + "version": "2.10.2" + }, + "core-js": { + "version": "1.2.3" + }, + "debug": { + "version": "2.2.0", + "dependencies": { + "ms": { + "version": "0.7.1" + } + } + }, + "detect-indent": { + "version": "3.0.1", + "dependencies": { + "get-stdin": { + "version": "4.0.1" + } + } + }, + "esutils": { + "version": "2.0.2" + }, + "globals": { + "version": "6.4.1" + }, + "home-or-tmp": { + "version": "1.0.0", + "dependencies": { + "os-tmpdir": { + "version": "1.0.1" + }, + "user-home": { + "version": "1.1.1" + } + } + }, + "is-integer": { + "version": "1.0.6", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + } + } + }, + "js-tokens": { + "version": "1.0.1" + }, + "json5": { + "version": "0.4.0" + }, + "line-numbers": { + "version": "0.2.0", + "dependencies": { + "left-pad": { + "version": "0.0.3" + } + } + }, + "minimatch": { + "version": "2.0.10", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "private": { + "version": "0.1.6" + }, + "regenerator": { + "version": "0.8.40", + "dependencies": { + "commoner": { + "version": "0.10.3", + "dependencies": { + "q": { + "version": "1.1.2" + }, + "commander": { + "version": "2.5.1" + }, + "graceful-fs": { + "version": "3.0.8" + }, + "glob": { + "version": "4.2.2", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "1.0.0", + "dependencies": { + "lru-cache": { + "version": "2.7.0" + }, + "sigmund": { + "version": "1.0.1" + } + } + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "install": { + "version": "0.1.8" + }, + "iconv-lite": { + "version": "0.4.13" + } + } + }, + "defs": { + "version": "1.1.1", + "dependencies": { + "alter": { + "version": "0.2.0", + "dependencies": { + "stable": { + "version": "0.1.5" + } + } + }, + "ast-traverse": { + "version": "0.1.1" + }, + "breakable": { + "version": "1.0.0" + }, + "simple-fmt": { + "version": "0.1.0" + }, + "simple-is": { + "version": "0.2.0" + }, + "stringset": { + "version": "0.2.1" + }, + "tryor": { + "version": "0.1.2" + }, + "yargs": { + "version": "3.27.0", + "dependencies": { + "camelcase": { + "version": "1.2.1" + }, + "cliui": { + "version": "2.1.0", + "dependencies": { + "center-align": { + "version": "0.1.2", + "dependencies": { + "align-text": { + "version": "0.1.3", + "dependencies": { + "kind-of": { + "version": "2.0.1", + "dependencies": { + "is-buffer": { + "version": "1.1.0" + } + } + }, + "longest": { + "version": "1.0.1" + }, + "repeat-string": { + "version": "1.5.2" + } + } + }, + "lazy-cache": { + "version": "0.2.4" + } + } + }, + "right-align": { + "version": "0.1.3", + "dependencies": { + "align-text": { + "version": "0.1.3", + "dependencies": { + "kind-of": { + "version": "2.0.1", + "dependencies": { + "is-buffer": { + "version": "1.1.0" + } + } + }, + "longest": { + "version": "1.0.1" + }, + "repeat-string": { + "version": "1.5.2" + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2" + } + } + }, + "decamelize": { + "version": "1.1.1" + }, + "os-locale": { + "version": "1.4.0", + "dependencies": { + "lcid": { + "version": "1.0.0", + "dependencies": { + "invert-kv": { + "version": "1.0.0" + } + } + } + } + }, + "window-size": { + "version": "0.1.2" + }, + "y18n": { + "version": "3.2.0" + } + } + } + } + }, + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb" + }, + "recast": { + "version": "0.10.33", + "dependencies": { + "ast-types": { + "version": "0.8.12" + } + } + }, + "through": { + "version": "2.3.8" + } + } + }, + "regexpu": { + "version": "1.3.0", + "dependencies": { + "esprima": { + "version": "2.7.0" + }, + "recast": { + "version": "0.10.34", + "dependencies": { + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb" + }, + "ast-types": { + "version": "0.8.12" + } + } + }, + "regenerate": { + "version": "1.2.1" + }, + "regjsgen": { + "version": "0.2.0" + }, + "regjsparser": { + "version": "0.1.5", + "dependencies": { + "jsesc": { + "version": "0.5.0" + } + } + } + } + }, + "repeating": { + "version": "1.1.3", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + } + } + }, + "resolve": { + "version": "1.1.6" + }, + "shebang-regex": { + "version": "1.0.0" + }, + "source-map": { + "version": "0.5.3" + }, + "source-map-support": { + "version": "0.2.10", + "dependencies": { + "source-map": { + "version": "0.1.32", + "dependencies": { + "amdefine": { + "version": "1.0.0" + } + } + } + } + }, + "to-fast-properties": { + "version": "1.0.1" + }, + "trim-right": { + "version": "1.0.1" + }, + "try-resolve": { + "version": "1.0.1" + } + } + }, + "chokidar": { + "version": "1.2.0", + "dependencies": { + "anymatch": { + "version": "1.3.0", + "dependencies": { + "micromatch": { + "version": "2.2.0", + "dependencies": { + "arr-diff": { + "version": "1.1.0", + "dependencies": { + "arr-flatten": { + "version": "1.0.1" + }, + "array-slice": { + "version": "0.2.3" + } + } + }, + "array-unique": { + "version": "0.2.1" + }, + "braces": { + "version": "1.8.2", + "dependencies": { + "expand-range": { + "version": "1.8.1", + "dependencies": { + "fill-range": { + "version": "2.2.2", + "dependencies": { + "is-number": { + "version": "1.1.2" + }, + "isobject": { + "version": "1.0.2" + }, + "randomatic": { + "version": "1.1.0" + }, + "repeat-string": { + "version": "1.5.2" + } + } + } + } + }, + "lazy-cache": { + "version": "0.2.4" + }, + "preserve": { + "version": "0.2.0" + }, + "repeat-element": { + "version": "1.1.2" + } + } + }, + "expand-brackets": { + "version": "0.1.4" + }, + "extglob": { + "version": "0.3.1", + "dependencies": { + "ansi-green": { + "version": "0.1.1", + "dependencies": { + "ansi-wrap": { + "version": "0.1.0" + } + } + }, + "is-extglob": { + "version": "1.0.0" + }, + "success-symbol": { + "version": "0.1.0" + } + } + }, + "filename-regex": { + "version": "2.0.0" + }, + "is-glob": { + "version": "1.1.3" + }, + "kind-of": { + "version": "1.1.0" + }, + "object.omit": { + "version": "1.1.0", + "dependencies": { + "for-own": { + "version": "0.1.3", + "dependencies": { + "for-in": { + "version": "0.1.4" + } + } + }, + "isobject": { + "version": "1.0.2" + } + } + }, + "parse-glob": { + "version": "3.0.4", + "dependencies": { + "glob-base": { + "version": "0.3.0" + }, + "is-dotfile": { + "version": "1.0.2" + }, + "is-extglob": { + "version": "1.0.0" + }, + "is-glob": { + "version": "2.0.1" + } + } + }, + "regex-cache": { + "version": "0.4.2", + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3" + }, + "is-primitive": { + "version": "2.0.0" + } + } + } + } + } + } + }, + "arrify": { + "version": "1.0.0" + }, + "async-each": { + "version": "0.1.6" + }, + "glob-parent": { + "version": "2.0.0" + }, + "is-binary-path": { + "version": "1.0.1", + "dependencies": { + "binary-extensions": { + "version": "1.3.1" + } + } + }, + "is-glob": { + "version": "2.0.1", + "dependencies": { + "is-extglob": { + "version": "1.0.0" + } + } + }, + "lodash.flatten": { + "version": "3.0.2", + "dependencies": { + "lodash._baseflatten": { + "version": "3.1.4", + "dependencies": { + "lodash.isarguments": { + "version": "3.0.4" + }, + "lodash.isarray": { + "version": "3.0.4" + } + } + }, + "lodash._isiterateecall": { + "version": "3.0.9" + } + } + }, + "readdirp": { + "version": "2.0.0", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + }, + "minimatch": { + "version": "2.0.10", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "fsevents": { + "version": "1.0.2", + "dependencies": { + "nan": { + "version": "2.1.0" + }, + "node-pre-gyp": { + "version": "0.6.12", + "dependencies": { + "nopt": { + "version": "3.0.4", + "dependencies": { + "abbrev": { + "version": "1.0.7" + } + } + }, + "npmlog": { + "version": "1.2.1", + "dependencies": { + "ansi": { + "version": "0.3.0" + }, + "are-we-there-yet": { + "version": "1.0.4", + "dependencies": { + "delegates": { + "version": "0.1.0" + }, + "readable-stream": { + "version": "1.1.13", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + } + } + }, + "gauge": { + "version": "1.2.2", + "dependencies": { + "has-unicode": { + "version": "1.0.0" + }, + "lodash.pad": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + }, + "lodash.padleft": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + }, + "lodash.padright": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + } + } + } + } + }, + "request": { + "version": "2.64.0", + "dependencies": { + "bl": { + "version": "1.0.0", + "dependencies": { + "readable-stream": { + "version": "2.0.2", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.1" + } + } + } + } + }, + "caseless": { + "version": "0.11.0" + }, + "extend": { + "version": "3.0.0" + }, + "forever-agent": { + "version": "0.6.1" + }, + "form-data": { + "version": "1.0.0-rc3", + "dependencies": { + "async": { + "version": "1.4.2" + } + } + }, + "json-stringify-safe": { + "version": "5.0.1" + }, + "mime-types": { + "version": "2.1.7", + "dependencies": { + "mime-db": { + "version": "1.19.0" + } + } + }, + "node-uuid": { + "version": "1.4.3" + }, + "qs": { + "version": "5.1.0" + }, + "tunnel-agent": { + "version": "0.4.1" + }, + "tough-cookie": { + "version": "2.1.0" + }, + "http-signature": { + "version": "0.11.0", + "dependencies": { + "assert-plus": { + "version": "0.1.5" + }, + "asn1": { + "version": "0.1.11" + }, + "ctype": { + "version": "0.5.3" + } + } + }, + "oauth-sign": { + "version": "0.8.0" + }, + "hawk": { + "version": "3.1.0", + "dependencies": { + "hoek": { + "version": "2.16.3" + }, + "boom": { + "version": "2.9.0" + }, + "cryptiles": { + "version": "2.0.5" + }, + "sntp": { + "version": "1.0.9" + } + } + }, + "aws-sign2": { + "version": "0.5.0" + }, + "stringstream": { + "version": "0.0.4" + }, + "combined-stream": { + "version": "1.0.5", + "dependencies": { + "delayed-stream": { + "version": "1.0.0" + } + } + }, + "isstream": { + "version": "0.1.2" + }, + "har-validator": { + "version": "1.8.0", + "dependencies": { + "bluebird": { + "version": "2.10.2" + }, + "chalk": { + "version": "1.1.1", + "dependencies": { + "ansi-styles": { + "version": "2.1.0" + }, + "escape-string-regexp": { + "version": "1.0.3" + }, + "has-ansi": { + "version": "2.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "supports-color": { + "version": "2.0.0" + } + } + }, + "commander": { + "version": "2.8.1", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1" + } + } + }, + "is-my-json-valid": { + "version": "2.12.2", + "dependencies": { + "generate-function": { + "version": "2.0.0" + }, + "generate-object-property": { + "version": "1.2.0", + "dependencies": { + "is-property": { + "version": "1.0.2" + } + } + }, + "jsonpointer": { + "version": "2.0.0" + }, + "xtend": { + "version": "4.0.0" + } + } + } + } + } + } + }, + "semver": { + "version": "5.0.3" + }, + "tar": { + "version": "2.2.1", + "dependencies": { + "block-stream": { + "version": "0.0.8" + }, + "fstream": { + "version": "1.0.8", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + } + } + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "tar-pack": { + "version": "2.0.0", + "dependencies": { + "uid-number": { + "version": "0.0.3" + }, + "once": { + "version": "1.1.1" + }, + "debug": { + "version": "0.7.4" + }, + "rimraf": { + "version": "2.2.8" + }, + "fstream": { + "version": "0.1.31", + "dependencies": { + "graceful-fs": { + "version": "3.0.8" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "tar": { + "version": "0.1.20", + "dependencies": { + "block-stream": { + "version": "0.0.8" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "fstream-ignore": { + "version": "0.0.7", + "dependencies": { + "minimatch": { + "version": "0.2.14", + "dependencies": { + "lru-cache": { + "version": "2.7.0" + }, + "sigmund": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "readable-stream": { + "version": "1.0.33", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "graceful-fs": { + "version": "1.2.3" + } + } + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "rc": { + "version": "1.1.2", + "dependencies": { + "minimist": { + "version": "1.2.0" + }, + "deep-extend": { + "version": "0.2.11" + }, + "strip-json-comments": { + "version": "0.1.3" + }, + "ini": { + "version": "1.3.4" + } + } + }, + "rimraf": { + "version": "2.4.3", + "dependencies": { + "glob": { + "version": "5.0.15", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.0" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "path-is-absolute": { + "version": "1.0.0" + } + } + } + } + } + } + } + } + } + } + }, + "commander": { + "version": "2.9.0", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1" + } + } + }, + "convert-source-map": { + "version": "1.1.1" + }, + "fs-readdir-recursive": { + "version": "0.1.2" + }, + "lodash": { + "version": "3.10.1" + }, + "output-file-sync": { + "version": "1.1.1", + "dependencies": { + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "xtend": { + "version": "4.0.0" + } + } + }, + "path-exists": { + "version": "1.0.0" + }, + "path-is-absolute": { + "version": "1.0.0" + }, + "source-map": { + "version": "0.4.4", + "dependencies": { + "amdefine": { + "version": "1.0.0" + } + } + }, + "slash": { + "version": "1.0.0" + } + } + }, + "chalk": { + "version": "1.1.1", + "dependencies": { + "ansi-styles": { + "version": "2.1.0" + }, + "escape-string-regexp": { + "version": "1.0.3" + }, + "has-ansi": { + "version": "2.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "supports-color": { + "version": "2.0.0" + } + } + }, + "dedent": { + "version": "0.4.0" + }, + "find-node-modules": { + "version": "1.0.1", + "dependencies": { + "findup-sync": { + "version": "0.2.1", + "dependencies": { + "glob": { + "version": "4.3.5", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "2.0.10", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + } + } + }, + "merge": { + "version": "1.2.0" + } + } + }, + "glob": { + "version": "5.0.15", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "path-is-absolute": { + "version": "1.0.0" + } + } + }, + "gulp": { + "version": "3.9.0", + "dependencies": { + "archy": { + "version": "1.0.0" + }, + "deprecated": { + "version": "0.0.1" + }, + "interpret": { + "version": "0.6.6" + }, + "liftoff": { + "version": "2.2.0", + "dependencies": { + "extend": { + "version": "2.0.1" + }, + "findup-sync": { + "version": "0.3.0" + }, + "flagged-respawn": { + "version": "0.3.1" + }, + "rechoir": { + "version": "0.6.2" + }, + "resolve": { + "version": "1.1.6" + } + } + }, + "orchestrator": { + "version": "0.3.7", + "dependencies": { + "end-of-stream": { + "version": "0.1.5", + "dependencies": { + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + }, + "sequencify": { + "version": "0.0.7" + }, + "stream-consume": { + "version": "0.1.0" + } + } + }, + "pretty-hrtime": { + "version": "1.0.1" + }, + "semver": { + "version": "4.3.6" + }, + "tildify": { + "version": "1.1.2", + "dependencies": { + "os-homedir": { + "version": "1.0.1" + } + } + }, + "v8flags": { + "version": "2.0.10", + "dependencies": { + "user-home": { + "version": "1.1.1" + } + } + }, + "vinyl-fs": { + "version": "0.3.14", + "dependencies": { + "defaults": { + "version": "1.0.3", + "dependencies": { + "clone": { + "version": "1.0.2" + } + } + }, + "glob-stream": { + "version": "3.1.18", + "dependencies": { + "glob": { + "version": "4.5.3", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + }, + "minimatch": { + "version": "2.0.10", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "ordered-read-streams": { + "version": "0.1.0" + }, + "glob2base": { + "version": "0.0.12", + "dependencies": { + "find-index": { + "version": "0.1.1" + } + } + }, + "unique-stream": { + "version": "1.0.0" + } + } + }, + "glob-watcher": { + "version": "0.0.6", + "dependencies": { + "gaze": { + "version": "0.5.2", + "dependencies": { + "globule": { + "version": "0.1.0", + "dependencies": { + "lodash": { + "version": "1.0.2" + }, + "glob": { + "version": "3.1.21", + "dependencies": { + "graceful-fs": { + "version": "1.2.3" + }, + "inherits": { + "version": "1.0.2" + } + } + }, + "minimatch": { + "version": "0.2.14", + "dependencies": { + "lru-cache": { + "version": "2.7.0" + }, + "sigmund": { + "version": "1.0.1" + } + } + } + } + } + } + } + } + }, + "graceful-fs": { + "version": "3.0.8" + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "strip-bom": { + "version": "1.0.0", + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0" + }, + "is-utf8": { + "version": "0.2.0" + } + } + }, + "through2": { + "version": "0.6.5", + "dependencies": { + "readable-stream": { + "version": "1.0.33", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "xtend": { + "version": "4.0.0" + } + } + }, + "vinyl": { + "version": "0.4.6", + "dependencies": { + "clone": { + "version": "0.2.0" + }, + "clone-stats": { + "version": "0.0.1" + } + } + } + } + } + } + }, + "gulp-git": { + "version": "1.6.0", + "dependencies": { + "any-shell-escape": { + "version": "0.1.1" + }, + "gulp-util": { + "version": "3.0.7", + "dependencies": { + "array-differ": { + "version": "1.0.0" + }, + "array-uniq": { + "version": "1.0.2" + }, + "beeper": { + "version": "1.1.0" + }, + "dateformat": { + "version": "1.0.11", + "dependencies": { + "get-stdin": { + "version": "5.0.0" + }, + "meow": { + "version": "3.5.0", + "dependencies": { + "camelcase-keys": { + "version": "1.0.0", + "dependencies": { + "camelcase": { + "version": "1.2.1" + }, + "map-obj": { + "version": "1.0.1" + } + } + }, + "loud-rejection": { + "version": "1.0.0" + }, + "normalize-package-data": { + "version": "2.3.4", + "dependencies": { + "hosted-git-info": { + "version": "2.1.4" + }, + "is-builtin-module": { + "version": "1.0.0", + "dependencies": { + "builtin-modules": { + "version": "1.1.0" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "dependencies": { + "spdx-license-ids": { + "version": "1.1.0" + } + } + }, + "spdx-expression-parse": { + "version": "1.0.0", + "dependencies": { + "spdx-exceptions": { + "version": "1.0.3" + }, + "spdx-license-ids": { + "version": "1.1.0" + } + } + } + } + } + } + }, + "object-assign": { + "version": "4.0.1" + }, + "read-pkg-up": { + "version": "1.0.1", + "dependencies": { + "find-up": { + "version": "1.0.0", + "dependencies": { + "path-exists": { + "version": "2.0.0" + }, + "pinkie-promise": { + "version": "1.0.0", + "dependencies": { + "pinkie": { + "version": "1.0.0" + } + } + } + } + }, + "read-pkg": { + "version": "1.1.0", + "dependencies": { + "load-json-file": { + "version": "1.0.1", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + }, + "parse-json": { + "version": "2.2.0", + "dependencies": { + "error-ex": { + "version": "1.2.0" + } + } + }, + "pify": { + "version": "2.3.0" + }, + "pinkie-promise": { + "version": "1.0.0", + "dependencies": { + "pinkie": { + "version": "1.0.0" + } + } + }, + "strip-bom": { + "version": "2.0.0", + "dependencies": { + "is-utf8": { + "version": "0.2.0" + } + } + } + } + }, + "path-type": { + "version": "1.0.0", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + }, + "pify": { + "version": "2.3.0" + }, + "pinkie-promise": { + "version": "1.0.0", + "dependencies": { + "pinkie": { + "version": "1.0.0" + } + } + } + } + } + } + } + } + }, + "redent": { + "version": "1.0.0", + "dependencies": { + "indent-string": { + "version": "2.1.0", + "dependencies": { + "repeating": { + "version": "2.0.0", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + } + } + } + } + }, + "strip-indent": { + "version": "1.0.1", + "dependencies": { + "get-stdin": { + "version": "4.0.1" + } + } + } + } + }, + "trim-newlines": { + "version": "1.0.0" + } + } + } + } + }, + "fancy-log": { + "version": "1.1.0" + }, + "gulplog": { + "version": "1.0.0", + "dependencies": { + "glogg": { + "version": "1.0.0", + "dependencies": { + "sparkles": { + "version": "1.0.0" + } + } + } + } + }, + "has-gulplog": { + "version": "0.1.0", + "dependencies": { + "sparkles": { + "version": "1.0.0" + } + } + }, + "lodash._reescape": { + "version": "3.0.0" + }, + "lodash._reevaluate": { + "version": "3.0.0" + }, + "lodash._reinterpolate": { + "version": "3.0.0" + }, + "lodash.template": { + "version": "3.6.2", + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1" + }, + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._basevalues": { + "version": "3.0.0" + }, + "lodash._isiterateecall": { + "version": "3.0.9" + }, + "lodash.escape": { + "version": "3.0.0" + }, + "lodash.keys": { + "version": "3.1.2", + "dependencies": { + "lodash._getnative": { + "version": "3.9.1" + }, + "lodash.isarguments": { + "version": "3.0.4" + }, + "lodash.isarray": { + "version": "3.0.4" + } + } + }, + "lodash.restparam": { + "version": "3.6.1" + }, + "lodash.templatesettings": { + "version": "3.1.0" + } + } + }, + "multipipe": { + "version": "0.1.2", + "dependencies": { + "duplexer2": { + "version": "0.0.2", + "dependencies": { + "readable-stream": { + "version": "1.1.13", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + } + } + } + } + }, + "object-assign": { + "version": "3.0.0" + }, + "replace-ext": { + "version": "0.0.1" + }, + "through2": { + "version": "2.0.0", + "dependencies": { + "readable-stream": { + "version": "2.0.4", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + }, + "xtend": { + "version": "4.0.0" + } + } + }, + "vinyl": { + "version": "0.5.3", + "dependencies": { + "clone": { + "version": "1.0.2" + }, + "clone-stats": { + "version": "0.0.1" + } + } + } + } + }, + "require-dir": { + "version": "0.1.0" + }, + "through2": { + "version": "0.6.5", + "dependencies": { + "readable-stream": { + "version": "1.0.33", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "xtend": { + "version": "4.0.0" + } + } + } + } + }, + "inquirer": { + "version": "0.10.1", + "dependencies": { + "ansi-escapes": { + "version": "1.1.0" + }, + "ansi-regex": { + "version": "2.0.0" + }, + "cli-cursor": { + "version": "1.0.2", + "dependencies": { + "restore-cursor": { + "version": "1.0.1", + "dependencies": { + "exit-hook": { + "version": "1.1.1" + }, + "onetime": { + "version": "1.0.0" + } + } + } + } + }, + "cli-width": { + "version": "1.1.0" + }, + "figures": { + "version": "1.4.0" + }, + "lodash": { + "version": "3.10.1" + }, + "readline2": { + "version": "1.0.1", + "dependencies": { + "code-point-at": { + "version": "1.0.0", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + }, + "mute-stream": { + "version": "0.0.5" + } + } + }, + "run-async": { + "version": "0.1.0", + "dependencies": { + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + }, + "rx-lite": { + "version": "3.1.2" + }, + "strip-ansi": { + "version": "3.0.0" + }, + "through": { + "version": "2.3.8" + } + } + }, + "json": { + "version": "9.0.3" + }, + "minimist": { + "version": "1.2.0" + }, + "node-uuid": { + "version": "1.4.3" + }, + "nodemon": { + "version": "1.7.3", + "dependencies": { + "chokidar": { + "version": "1.2.0", + "dependencies": { + "anymatch": { + "version": "1.3.0", + "dependencies": { + "micromatch": { + "version": "2.2.0", + "dependencies": { + "arr-diff": { + "version": "1.1.0", + "dependencies": { + "arr-flatten": { + "version": "1.0.1" + }, + "array-slice": { + "version": "0.2.3" + } + } + }, + "array-unique": { + "version": "0.2.1" + }, + "braces": { + "version": "1.8.2", + "dependencies": { + "expand-range": { + "version": "1.8.1", + "dependencies": { + "fill-range": { + "version": "2.2.2", + "dependencies": { + "is-number": { + "version": "1.1.2" + }, + "isobject": { + "version": "1.0.2" + }, + "randomatic": { + "version": "1.1.0" + }, + "repeat-string": { + "version": "1.5.2" + } + } + } + } + }, + "lazy-cache": { + "version": "0.2.4" + }, + "preserve": { + "version": "0.2.0" + }, + "repeat-element": { + "version": "1.1.2" + } + } + }, + "expand-brackets": { + "version": "0.1.4" + }, + "extglob": { + "version": "0.3.1", + "dependencies": { + "ansi-green": { + "version": "0.1.1", + "dependencies": { + "ansi-wrap": { + "version": "0.1.0" + } + } + }, + "is-extglob": { + "version": "1.0.0" + }, + "success-symbol": { + "version": "0.1.0" + } + } + }, + "filename-regex": { + "version": "2.0.0" + }, + "is-glob": { + "version": "1.1.3" + }, + "kind-of": { + "version": "1.1.0" + }, + "object.omit": { + "version": "1.1.0", + "dependencies": { + "for-own": { + "version": "0.1.3", + "dependencies": { + "for-in": { + "version": "0.1.4" + } + } + }, + "isobject": { + "version": "1.0.2" + } + } + }, + "parse-glob": { + "version": "3.0.4", + "dependencies": { + "glob-base": { + "version": "0.3.0" + }, + "is-dotfile": { + "version": "1.0.2" + }, + "is-extglob": { + "version": "1.0.0" + }, + "is-glob": { + "version": "2.0.1" + } + } + }, + "regex-cache": { + "version": "0.4.2", + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3" + }, + "is-primitive": { + "version": "2.0.0" + } + } + } + } + } + } + }, + "arrify": { + "version": "1.0.0" + }, + "async-each": { + "version": "0.1.6" + }, + "glob-parent": { + "version": "2.0.0" + }, + "is-binary-path": { + "version": "1.0.1", + "dependencies": { + "binary-extensions": { + "version": "1.3.1" + } + } + }, + "is-glob": { + "version": "2.0.1", + "dependencies": { + "is-extglob": { + "version": "1.0.0" + } + } + }, + "lodash.flatten": { + "version": "3.0.2", + "dependencies": { + "lodash._baseflatten": { + "version": "3.1.4", + "dependencies": { + "lodash.isarguments": { + "version": "3.0.4" + }, + "lodash.isarray": { + "version": "3.0.4" + } + } + }, + "lodash._isiterateecall": { + "version": "3.0.9" + } + } + }, + "path-is-absolute": { + "version": "1.0.0" + }, + "readdirp": { + "version": "2.0.0", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + }, + "minimatch": { + "version": "2.0.10", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "fsevents": { + "version": "1.0.2", + "dependencies": { + "nan": { + "version": "2.1.0" + }, + "node-pre-gyp": { + "version": "0.6.12", + "dependencies": { + "nopt": { + "version": "3.0.4", + "dependencies": { + "abbrev": { + "version": "1.0.7" + } + } + }, + "npmlog": { + "version": "1.2.1", + "dependencies": { + "ansi": { + "version": "0.3.0" + }, + "are-we-there-yet": { + "version": "1.0.4", + "dependencies": { + "delegates": { + "version": "0.1.0" + }, + "readable-stream": { + "version": "1.1.13", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + } + } + }, + "gauge": { + "version": "1.2.2", + "dependencies": { + "has-unicode": { + "version": "1.0.0" + }, + "lodash.pad": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + }, + "lodash.padleft": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + }, + "lodash.padright": { + "version": "3.1.1", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1" + }, + "lodash._createpadding": { + "version": "3.6.1", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1" + } + } + } + } + } + } + } + } + }, + "request": { + "version": "2.64.0", + "dependencies": { + "bl": { + "version": "1.0.0", + "dependencies": { + "readable-stream": { + "version": "2.0.2", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.1" + } + } + } + } + }, + "caseless": { + "version": "0.11.0" + }, + "extend": { + "version": "3.0.0" + }, + "forever-agent": { + "version": "0.6.1" + }, + "form-data": { + "version": "1.0.0-rc3", + "dependencies": { + "async": { + "version": "1.4.2" + } + } + }, + "json-stringify-safe": { + "version": "5.0.1" + }, + "mime-types": { + "version": "2.1.7", + "dependencies": { + "mime-db": { + "version": "1.19.0" + } + } + }, + "node-uuid": { + "version": "1.4.3" + }, + "qs": { + "version": "5.1.0" + }, + "tunnel-agent": { + "version": "0.4.1" + }, + "tough-cookie": { + "version": "2.1.0" + }, + "http-signature": { + "version": "0.11.0", + "dependencies": { + "assert-plus": { + "version": "0.1.5" + }, + "asn1": { + "version": "0.1.11" + }, + "ctype": { + "version": "0.5.3" + } + } + }, + "oauth-sign": { + "version": "0.8.0" + }, + "hawk": { + "version": "3.1.0", + "dependencies": { + "hoek": { + "version": "2.16.3" + }, + "boom": { + "version": "2.9.0" + }, + "cryptiles": { + "version": "2.0.5" + }, + "sntp": { + "version": "1.0.9" + } + } + }, + "aws-sign2": { + "version": "0.5.0" + }, + "stringstream": { + "version": "0.0.4" + }, + "combined-stream": { + "version": "1.0.5", + "dependencies": { + "delayed-stream": { + "version": "1.0.0" + } + } + }, + "isstream": { + "version": "0.1.2" + }, + "har-validator": { + "version": "1.8.0", + "dependencies": { + "bluebird": { + "version": "2.10.2" + }, + "chalk": { + "version": "1.1.1", + "dependencies": { + "ansi-styles": { + "version": "2.1.0" + }, + "escape-string-regexp": { + "version": "1.0.3" + }, + "has-ansi": { + "version": "2.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + }, + "supports-color": { + "version": "2.0.0" + } + } + }, + "commander": { + "version": "2.8.1", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1" + } + } + }, + "is-my-json-valid": { + "version": "2.12.2", + "dependencies": { + "generate-function": { + "version": "2.0.0" + }, + "generate-object-property": { + "version": "1.2.0", + "dependencies": { + "is-property": { + "version": "1.0.2" + } + } + }, + "jsonpointer": { + "version": "2.0.0" + }, + "xtend": { + "version": "4.0.0" + } + } + } + } + } + } + }, + "semver": { + "version": "5.0.3" + }, + "tar": { + "version": "2.2.1", + "dependencies": { + "block-stream": { + "version": "0.0.8" + }, + "fstream": { + "version": "1.0.8", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + } + } + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "tar-pack": { + "version": "2.0.0", + "dependencies": { + "uid-number": { + "version": "0.0.3" + }, + "once": { + "version": "1.1.1" + }, + "debug": { + "version": "0.7.4" + }, + "rimraf": { + "version": "2.2.8" + }, + "fstream": { + "version": "0.1.31", + "dependencies": { + "graceful-fs": { + "version": "3.0.8" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "tar": { + "version": "0.1.20", + "dependencies": { + "block-stream": { + "version": "0.0.8" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "fstream-ignore": { + "version": "0.0.7", + "dependencies": { + "minimatch": { + "version": "0.2.14", + "dependencies": { + "lru-cache": { + "version": "2.7.0" + }, + "sigmund": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "readable-stream": { + "version": "1.0.33", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "string_decoder": { + "version": "0.10.31" + }, + "inherits": { + "version": "2.0.1" + } + } + }, + "graceful-fs": { + "version": "1.2.3" + } + } + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "rc": { + "version": "1.1.2", + "dependencies": { + "minimist": { + "version": "1.2.0" + }, + "deep-extend": { + "version": "0.2.11" + }, + "strip-json-comments": { + "version": "0.1.3" + }, + "ini": { + "version": "1.3.4" + } + } + }, + "rimraf": { + "version": "2.4.3", + "dependencies": { + "glob": { + "version": "5.0.15", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.0" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "path-is-absolute": { + "version": "1.0.0" + } + } + } + } + } + } + } + } + } + } + }, + "debug": { + "version": "2.2.0", + "dependencies": { + "ms": { + "version": "0.7.1" + } + } + }, + "es6-promise": { + "version": "3.0.2" + }, + "lodash.defaults": { + "version": "3.1.2", + "dependencies": { + "lodash.assign": { + "version": "3.2.0", + "dependencies": { + "lodash._baseassign": { + "version": "3.2.0", + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1" + } + } + }, + "lodash._createassigner": { + "version": "3.1.1", + "dependencies": { + "lodash._bindcallback": { + "version": "3.0.1" + }, + "lodash._isiterateecall": { + "version": "3.0.9" + } + } + }, + "lodash.keys": { + "version": "3.1.2", + "dependencies": { + "lodash._getnative": { + "version": "3.9.1" + }, + "lodash.isarguments": { + "version": "3.0.4" + }, + "lodash.isarray": { + "version": "3.0.4" + } + } + } + } + }, + "lodash.restparam": { + "version": "3.6.1" + } + } + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "dependencies": { + "balanced-match": { + "version": "0.2.1" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "ps-tree": { + "version": "1.0.1", + "dependencies": { + "event-stream": { + "version": "3.3.2", + "dependencies": { + "through": { + "version": "2.3.8" + }, + "duplexer": { + "version": "0.1.1" + }, + "from": { + "version": "0.1.3" + }, + "map-stream": { + "version": "0.1.0" + }, + "pause-stream": { + "version": "0.0.11" + }, + "split": { + "version": "0.3.3" + }, + "stream-combiner": { + "version": "0.0.4" + } + } + } + } + }, + "touch": { + "version": "1.0.0", + "dependencies": { + "nopt": { + "version": "1.0.10", + "dependencies": { + "abbrev": { + "version": "1.0.7" + } + } + } + } + }, + "undefsafe": { + "version": "0.0.3" + }, + "update-notifier": { + "version": "0.5.0", + "dependencies": { + "configstore": { + "version": "1.3.0", + "dependencies": { + "graceful-fs": { + "version": "4.1.2" + }, + "mkdirp": { + "version": "0.5.1", + "dependencies": { + "minimist": { + "version": "0.0.8" + } + } + }, + "object-assign": { + "version": "4.0.1" + }, + "os-tmpdir": { + "version": "1.0.1" + }, + "osenv": { + "version": "0.1.3", + "dependencies": { + "os-homedir": { + "version": "1.0.1" + } + } + }, + "uuid": { + "version": "2.0.1" + }, + "write-file-atomic": { + "version": "1.1.3", + "dependencies": { + "slide": { + "version": "1.1.6" + } + } + }, + "xdg-basedir": { + "version": "2.0.0", + "dependencies": { + "os-homedir": { + "version": "1.0.1" + } + } + } + } + }, + "is-npm": { + "version": "1.0.0" + }, + "latest-version": { + "version": "1.0.1", + "dependencies": { + "package-json": { + "version": "1.2.0", + "dependencies": { + "got": { + "version": "3.3.1", + "dependencies": { + "duplexify": { + "version": "3.4.2", + "dependencies": { + "end-of-stream": { + "version": "1.0.0", + "dependencies": { + "once": { + "version": "1.3.2", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "infinity-agent": { + "version": "2.0.3" + }, + "is-redirect": { + "version": "1.0.0" + }, + "is-stream": { + "version": "1.0.1" + }, + "lowercase-keys": { + "version": "1.0.0" + }, + "nested-error-stacks": { + "version": "1.0.1", + "dependencies": { + "inherits": { + "version": "2.0.1" + } + } + }, + "object-assign": { + "version": "3.0.0" + }, + "prepend-http": { + "version": "1.0.3" + }, + "read-all-stream": { + "version": "3.0.1", + "dependencies": { + "pinkie-promise": { + "version": "1.0.0", + "dependencies": { + "pinkie": { + "version": "1.0.0" + } + } + }, + "readable-stream": { + "version": "2.0.4", + "dependencies": { + "core-util-is": { + "version": "1.0.1" + }, + "inherits": { + "version": "2.0.1" + }, + "isarray": { + "version": "0.0.1" + }, + "process-nextick-args": { + "version": "1.0.3" + }, + "string_decoder": { + "version": "0.10.31" + }, + "util-deprecate": { + "version": "1.0.2" + } + } + } + } + }, + "timed-out": { + "version": "2.0.0" + } + } + }, + "registry-url": { + "version": "3.0.3", + "dependencies": { + "rc": { + "version": "1.1.2", + "dependencies": { + "deep-extend": { + "version": "0.2.11" + }, + "strip-json-comments": { + "version": "0.1.3" + }, + "ini": { + "version": "1.3.4" + } + } + } + } + } + } + } + } + }, + "repeating": { + "version": "1.1.3", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "dependencies": { + "number-is-nan": { + "version": "1.0.0" + } + } + } + } + }, + "semver-diff": { + "version": "2.0.0", + "dependencies": { + "semver": { + "version": "4.3.6" + } + } + }, + "string-length": { + "version": "1.0.1", + "dependencies": { + "strip-ansi": { + "version": "3.0.0", + "dependencies": { + "ansi-regex": { + "version": "2.0.0" + } + } + } + } + } + } + } + } + }, + "rimraf": { + "version": "2.4.3" + }, + "semver": { + "version": "5.0.3" + }, + "shelljs": { + "version": "0.5.3" + }, + "strip-json-comments": { + "version": "1.0.4" + } + } + }, + "cz-conventional-changelog": { + "version": "1.1.4", + "dependencies": { + "word-wrap": { + "version": "1.1.0" + } + } + }, "dgeni": { "version": "0.4.1", "dependencies": { diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index fce8997ee875..2af87b4d6062 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -3480,6 +3480,4817 @@ } } }, + "commitizen": { + "version": "2.3.0", + "from": "commitizen@*", + "resolved": "https://registry.npmjs.org/commitizen/-/commitizen-2.3.0.tgz", + "dependencies": { + "babel": { + "version": "5.8.23", + "from": "babel@5.8.23", + "resolved": "https://registry.npmjs.org/babel/-/babel-5.8.23.tgz", + "dependencies": { + "babel-core": { + "version": "5.8.33", + "from": "babel-core@>=5.6.21 <6.0.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-5.8.33.tgz", + "dependencies": { + "babel-plugin-constant-folding": { + "version": "1.0.1", + "from": "babel-plugin-constant-folding@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-constant-folding/-/babel-plugin-constant-folding-1.0.1.tgz" + }, + "babel-plugin-dead-code-elimination": { + "version": "1.0.2", + "from": "babel-plugin-dead-code-elimination@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-dead-code-elimination/-/babel-plugin-dead-code-elimination-1.0.2.tgz" + }, + "babel-plugin-eval": { + "version": "1.0.1", + "from": "babel-plugin-eval@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-eval/-/babel-plugin-eval-1.0.1.tgz" + }, + "babel-plugin-inline-environment-variables": { + "version": "1.0.1", + "from": "babel-plugin-inline-environment-variables@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-inline-environment-variables/-/babel-plugin-inline-environment-variables-1.0.1.tgz" + }, + "babel-plugin-jscript": { + "version": "1.0.4", + "from": "babel-plugin-jscript@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jscript/-/babel-plugin-jscript-1.0.4.tgz" + }, + "babel-plugin-member-expression-literals": { + "version": "1.0.1", + "from": "babel-plugin-member-expression-literals@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-member-expression-literals/-/babel-plugin-member-expression-literals-1.0.1.tgz" + }, + "babel-plugin-property-literals": { + "version": "1.0.1", + "from": "babel-plugin-property-literals@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-property-literals/-/babel-plugin-property-literals-1.0.1.tgz" + }, + "babel-plugin-proto-to-assign": { + "version": "1.0.4", + "from": "babel-plugin-proto-to-assign@>=1.0.3 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-proto-to-assign/-/babel-plugin-proto-to-assign-1.0.4.tgz" + }, + "babel-plugin-react-constant-elements": { + "version": "1.0.3", + "from": "babel-plugin-react-constant-elements@>=1.0.3 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-react-constant-elements/-/babel-plugin-react-constant-elements-1.0.3.tgz" + }, + "babel-plugin-react-display-name": { + "version": "1.0.3", + "from": "babel-plugin-react-display-name@>=1.0.3 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-react-display-name/-/babel-plugin-react-display-name-1.0.3.tgz" + }, + "babel-plugin-remove-console": { + "version": "1.0.1", + "from": "babel-plugin-remove-console@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-console/-/babel-plugin-remove-console-1.0.1.tgz" + }, + "babel-plugin-remove-debugger": { + "version": "1.0.1", + "from": "babel-plugin-remove-debugger@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-remove-debugger/-/babel-plugin-remove-debugger-1.0.1.tgz" + }, + "babel-plugin-runtime": { + "version": "1.0.7", + "from": "babel-plugin-runtime@>=1.0.7 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-runtime/-/babel-plugin-runtime-1.0.7.tgz" + }, + "babel-plugin-undeclared-variables-check": { + "version": "1.0.2", + "from": "babel-plugin-undeclared-variables-check@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-undeclared-variables-check/-/babel-plugin-undeclared-variables-check-1.0.2.tgz", + "dependencies": { + "leven": { + "version": "1.0.2", + "from": "leven@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-1.0.2.tgz" + } + } + }, + "babel-plugin-undefined-to-void": { + "version": "1.1.6", + "from": "babel-plugin-undefined-to-void@>=1.1.6 <2.0.0", + "resolved": "https://registry.npmjs.org/babel-plugin-undefined-to-void/-/babel-plugin-undefined-to-void-1.1.6.tgz" + }, + "babylon": { + "version": "5.8.29", + "from": "babylon@>=5.8.29 <6.0.0", + "resolved": "https://registry.npmjs.org/babylon/-/babylon-5.8.29.tgz" + }, + "bluebird": { + "version": "2.10.2", + "from": "bluebird@>=2.9.33 <3.0.0", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" + }, + "core-js": { + "version": "1.2.3", + "from": "core-js@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-1.2.3.tgz" + }, + "debug": { + "version": "2.2.0", + "from": "debug@>=2.1.1 <3.0.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "dependencies": { + "ms": { + "version": "0.7.1", + "from": "ms@0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" + } + } + }, + "detect-indent": { + "version": "3.0.1", + "from": "detect-indent@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-3.0.1.tgz", + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "from": "get-stdin@>=4.0.1 <5.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz" + } + } + }, + "esutils": { + "version": "2.0.2", + "from": "esutils@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz" + }, + "globals": { + "version": "6.4.1", + "from": "globals@>=6.4.0 <7.0.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-6.4.1.tgz" + }, + "home-or-tmp": { + "version": "1.0.0", + "from": "home-or-tmp@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/home-or-tmp/-/home-or-tmp-1.0.0.tgz", + "dependencies": { + "os-tmpdir": { + "version": "1.0.1", + "from": "os-tmpdir@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz" + }, + "user-home": { + "version": "1.1.1", + "from": "user-home@>=1.1.1 <2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" + } + } + }, + "is-integer": { + "version": "1.0.6", + "from": "is-integer@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/is-integer/-/is-integer-1.0.6.tgz", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "from": "is-finite@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + } + } + }, + "js-tokens": { + "version": "1.0.1", + "from": "js-tokens@1.0.1", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-1.0.1.tgz" + }, + "json5": { + "version": "0.4.0", + "from": "json5@>=0.4.0 <0.5.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-0.4.0.tgz" + }, + "line-numbers": { + "version": "0.2.0", + "from": "line-numbers@0.2.0", + "resolved": "https://registry.npmjs.org/line-numbers/-/line-numbers-0.2.0.tgz", + "dependencies": { + "left-pad": { + "version": "0.0.3", + "from": "left-pad@0.0.3", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-0.0.3.tgz" + } + } + }, + "minimatch": { + "version": "2.0.10", + "from": "minimatch@>=2.0.3 <3.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "private": { + "version": "0.1.6", + "from": "private@>=0.1.6 <0.2.0", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.6.tgz" + }, + "regenerator": { + "version": "0.8.40", + "from": "regenerator@0.8.40", + "resolved": "https://registry.npmjs.org/regenerator/-/regenerator-0.8.40.tgz", + "dependencies": { + "commoner": { + "version": "0.10.3", + "from": "commoner@>=0.10.3 <0.11.0", + "resolved": "https://registry.npmjs.org/commoner/-/commoner-0.10.3.tgz", + "dependencies": { + "q": { + "version": "1.1.2", + "from": "q@>=1.1.2 <1.2.0", + "resolved": "https://registry.npmjs.org/q/-/q-1.1.2.tgz" + }, + "commander": { + "version": "2.5.1", + "from": "commander@>=2.5.0 <2.6.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.5.1.tgz" + }, + "graceful-fs": { + "version": "3.0.8", + "from": "graceful-fs@>=3.0.4 <3.1.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" + }, + "glob": { + "version": "4.2.2", + "from": "glob@>=4.2.1 <4.3.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.2.2.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "1.0.0", + "from": "minimatch@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-1.0.0.tgz", + "dependencies": { + "lru-cache": { + "version": "2.7.0", + "from": "lru-cache@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" + }, + "sigmund": { + "version": "1.0.1", + "from": "sigmund@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" + } + } + }, + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "install": { + "version": "0.1.8", + "from": "install@>=0.1.7 <0.2.0", + "resolved": "https://registry.npmjs.org/install/-/install-0.1.8.tgz" + }, + "iconv-lite": { + "version": "0.4.13", + "from": "iconv-lite@>=0.4.5 <0.5.0", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz" + } + } + }, + "defs": { + "version": "1.1.1", + "from": "defs@>=1.1.0 <1.2.0", + "resolved": "https://registry.npmjs.org/defs/-/defs-1.1.1.tgz", + "dependencies": { + "alter": { + "version": "0.2.0", + "from": "alter@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/alter/-/alter-0.2.0.tgz", + "dependencies": { + "stable": { + "version": "0.1.5", + "from": "stable@>=0.1.3 <0.2.0", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.5.tgz" + } + } + }, + "ast-traverse": { + "version": "0.1.1", + "from": "ast-traverse@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/ast-traverse/-/ast-traverse-0.1.1.tgz" + }, + "breakable": { + "version": "1.0.0", + "from": "breakable@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/breakable/-/breakable-1.0.0.tgz" + }, + "simple-fmt": { + "version": "0.1.0", + "from": "simple-fmt@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/simple-fmt/-/simple-fmt-0.1.0.tgz" + }, + "simple-is": { + "version": "0.2.0", + "from": "simple-is@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/simple-is/-/simple-is-0.2.0.tgz" + }, + "stringset": { + "version": "0.2.1", + "from": "stringset@>=0.2.1 <0.3.0", + "resolved": "https://registry.npmjs.org/stringset/-/stringset-0.2.1.tgz" + }, + "tryor": { + "version": "0.1.2", + "from": "tryor@>=0.1.2 <0.2.0", + "resolved": "https://registry.npmjs.org/tryor/-/tryor-0.1.2.tgz" + }, + "yargs": { + "version": "3.27.0", + "from": "yargs@>=3.27.0 <3.28.0", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.27.0.tgz", + "dependencies": { + "camelcase": { + "version": "1.2.1", + "from": "camelcase@>=1.2.1 <2.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" + }, + "cliui": { + "version": "2.1.0", + "from": "cliui@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", + "dependencies": { + "center-align": { + "version": "0.1.2", + "from": "center-align@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.2.tgz", + "dependencies": { + "align-text": { + "version": "0.1.3", + "from": "align-text@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.3.tgz", + "dependencies": { + "kind-of": { + "version": "2.0.1", + "from": "kind-of@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "dependencies": { + "is-buffer": { + "version": "1.1.0", + "from": "is-buffer@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.0.tgz" + } + } + }, + "longest": { + "version": "1.0.1", + "from": "longest@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" + }, + "repeat-string": { + "version": "1.5.2", + "from": "repeat-string@>=1.5.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" + } + } + }, + "lazy-cache": { + "version": "0.2.4", + "from": "lazy-cache@>=0.2.4 <0.3.0", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.4.tgz" + } + } + }, + "right-align": { + "version": "0.1.3", + "from": "right-align@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", + "dependencies": { + "align-text": { + "version": "0.1.3", + "from": "align-text@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.3.tgz", + "dependencies": { + "kind-of": { + "version": "2.0.1", + "from": "kind-of@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-2.0.1.tgz", + "dependencies": { + "is-buffer": { + "version": "1.1.0", + "from": "is-buffer@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.0.tgz" + } + } + }, + "longest": { + "version": "1.0.1", + "from": "longest@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz" + }, + "repeat-string": { + "version": "1.5.2", + "from": "repeat-string@>=1.5.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" + } + } + } + } + }, + "wordwrap": { + "version": "0.0.2", + "from": "wordwrap@0.0.2", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz" + } + } + }, + "decamelize": { + "version": "1.1.1", + "from": "decamelize@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.1.1.tgz" + }, + "os-locale": { + "version": "1.4.0", + "from": "os-locale@>=1.4.0 <2.0.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", + "dependencies": { + "lcid": { + "version": "1.0.0", + "from": "lcid@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", + "dependencies": { + "invert-kv": { + "version": "1.0.0", + "from": "invert-kv@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz" + } + } + } + } + }, + "window-size": { + "version": "0.1.2", + "from": "window-size@>=0.1.2 <0.2.0", + "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.2.tgz" + }, + "y18n": { + "version": "3.2.0", + "from": "y18n@>=3.2.0 <4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.0.tgz" + } + } + } + } + }, + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb", + "from": "esprima-fb@>=15001.1001.0-dev-harmony-fb <15001.1002.0", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz" + }, + "recast": { + "version": "0.10.33", + "from": "recast@0.10.33", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.10.33.tgz", + "dependencies": { + "ast-types": { + "version": "0.8.12", + "from": "ast-types@0.8.12", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.8.12.tgz" + } + } + }, + "through": { + "version": "2.3.8", + "from": "through@>=2.3.8 <2.4.0", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + } + } + }, + "regexpu": { + "version": "1.3.0", + "from": "regexpu@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/regexpu/-/regexpu-1.3.0.tgz", + "dependencies": { + "esprima": { + "version": "2.7.0", + "from": "esprima@>=2.6.0 <3.0.0", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.0.tgz" + }, + "recast": { + "version": "0.10.34", + "from": "recast@>=0.10.10 <0.11.0", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.10.34.tgz", + "dependencies": { + "esprima-fb": { + "version": "15001.1001.0-dev-harmony-fb", + "from": "esprima-fb@>=15001.1001.0-dev-harmony-fb <15001.1002.0", + "resolved": "https://registry.npmjs.org/esprima-fb/-/esprima-fb-15001.1001.0-dev-harmony-fb.tgz" + }, + "ast-types": { + "version": "0.8.12", + "from": "ast-types@0.8.12", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.8.12.tgz" + } + } + }, + "regenerate": { + "version": "1.2.1", + "from": "regenerate@>=1.2.1 <2.0.0", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.2.1.tgz" + }, + "regjsgen": { + "version": "0.2.0", + "from": "regjsgen@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz" + }, + "regjsparser": { + "version": "0.1.5", + "from": "regjsparser@>=0.1.4 <0.2.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", + "dependencies": { + "jsesc": { + "version": "0.5.0", + "from": "jsesc@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz" + } + } + } + } + }, + "repeating": { + "version": "1.1.3", + "from": "repeating@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "from": "is-finite@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + } + } + }, + "resolve": { + "version": "1.1.6", + "from": "resolve@>=1.1.6 <2.0.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.6.tgz" + }, + "shebang-regex": { + "version": "1.0.0", + "from": "shebang-regex@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz" + }, + "source-map": { + "version": "0.5.3", + "from": "source-map@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" + }, + "source-map-support": { + "version": "0.2.10", + "from": "source-map-support@>=0.2.10 <0.3.0", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.2.10.tgz", + "dependencies": { + "source-map": { + "version": "0.1.32", + "from": "source-map@0.1.32", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.32.tgz", + "dependencies": { + "amdefine": { + "version": "1.0.0", + "from": "amdefine@>=0.0.4", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" + } + } + } + } + }, + "to-fast-properties": { + "version": "1.0.1", + "from": "to-fast-properties@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-1.0.1.tgz" + }, + "trim-right": { + "version": "1.0.1", + "from": "trim-right@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz" + }, + "try-resolve": { + "version": "1.0.1", + "from": "try-resolve@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/try-resolve/-/try-resolve-1.0.1.tgz" + } + } + }, + "chokidar": { + "version": "1.2.0", + "from": "chokidar@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.2.0.tgz", + "dependencies": { + "anymatch": { + "version": "1.3.0", + "from": "anymatch@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", + "dependencies": { + "micromatch": { + "version": "2.2.0", + "from": "micromatch@>=2.1.5 <3.0.0", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.2.0.tgz", + "dependencies": { + "arr-diff": { + "version": "1.1.0", + "from": "arr-diff@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "dependencies": { + "arr-flatten": { + "version": "1.0.1", + "from": "arr-flatten@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz" + }, + "array-slice": { + "version": "0.2.3", + "from": "array-slice@>=0.2.3 <0.3.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz" + } + } + }, + "array-unique": { + "version": "0.2.1", + "from": "array-unique@>=0.2.1 <0.3.0", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" + }, + "braces": { + "version": "1.8.2", + "from": "braces@>=1.8.0 <2.0.0", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.2.tgz", + "dependencies": { + "expand-range": { + "version": "1.8.1", + "from": "expand-range@>=1.8.1 <2.0.0", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz", + "dependencies": { + "fill-range": { + "version": "2.2.2", + "from": "fill-range@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.2.tgz", + "dependencies": { + "is-number": { + "version": "1.1.2", + "from": "is-number@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-1.1.2.tgz" + }, + "isobject": { + "version": "1.0.2", + "from": "isobject@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-1.0.2.tgz" + }, + "randomatic": { + "version": "1.1.0", + "from": "randomatic@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.0.tgz" + }, + "repeat-string": { + "version": "1.5.2", + "from": "repeat-string@>=1.5.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" + } + } + } + } + }, + "lazy-cache": { + "version": "0.2.4", + "from": "lazy-cache@>=0.2.3 <0.3.0", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.4.tgz" + }, + "preserve": { + "version": "0.2.0", + "from": "preserve@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz" + }, + "repeat-element": { + "version": "1.1.2", + "from": "repeat-element@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz" + } + } + }, + "expand-brackets": { + "version": "0.1.4", + "from": "expand-brackets@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" + }, + "extglob": { + "version": "0.3.1", + "from": "extglob@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", + "dependencies": { + "ansi-green": { + "version": "0.1.1", + "from": "ansi-green@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", + "dependencies": { + "ansi-wrap": { + "version": "0.1.0", + "from": "ansi-wrap@0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" + } + } + }, + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + }, + "success-symbol": { + "version": "0.1.0", + "from": "success-symbol@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" + } + } + }, + "filename-regex": { + "version": "2.0.0", + "from": "filename-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz" + }, + "is-glob": { + "version": "1.1.3", + "from": "is-glob@>=1.1.3 <2.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-1.1.3.tgz" + }, + "kind-of": { + "version": "1.1.0", + "from": "kind-of@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz" + }, + "object.omit": { + "version": "1.1.0", + "from": "object.omit@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-1.1.0.tgz", + "dependencies": { + "for-own": { + "version": "0.1.3", + "from": "for-own@>=0.1.3 <0.2.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz", + "dependencies": { + "for-in": { + "version": "0.1.4", + "from": "for-in@>=0.1.4 <0.2.0", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz" + } + } + }, + "isobject": { + "version": "1.0.2", + "from": "isobject@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-1.0.2.tgz" + } + } + }, + "parse-glob": { + "version": "3.0.4", + "from": "parse-glob@>=3.0.1 <4.0.0", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "dependencies": { + "glob-base": { + "version": "0.3.0", + "from": "glob-base@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz" + }, + "is-dotfile": { + "version": "1.0.2", + "from": "is-dotfile@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "from": "is-glob@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" + } + } + }, + "regex-cache": { + "version": "0.4.2", + "from": "regex-cache@>=0.4.2 <0.5.0", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz", + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "from": "is-equal-shallow@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz" + }, + "is-primitive": { + "version": "2.0.0", + "from": "is-primitive@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz" + } + } + } + } + } + } + }, + "arrify": { + "version": "1.0.0", + "from": "arrify@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.0.tgz" + }, + "async-each": { + "version": "0.1.6", + "from": "async-each@>=0.1.5 <0.2.0", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" + }, + "glob-parent": { + "version": "2.0.0", + "from": "glob-parent@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz" + }, + "is-binary-path": { + "version": "1.0.1", + "from": "is-binary-path@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "dependencies": { + "binary-extensions": { + "version": "1.3.1", + "from": "binary-extensions@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.3.1.tgz" + } + } + }, + "is-glob": { + "version": "2.0.1", + "from": "is-glob@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + } + } + }, + "lodash.flatten": { + "version": "3.0.2", + "from": "lodash.flatten@>=3.0.2 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-3.0.2.tgz", + "dependencies": { + "lodash._baseflatten": { + "version": "3.1.4", + "from": "lodash._baseflatten@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz", + "dependencies": { + "lodash.isarguments": { + "version": "3.0.4", + "from": "lodash.isarguments@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.4.tgz" + }, + "lodash.isarray": { + "version": "3.0.4", + "from": "lodash.isarray@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" + } + } + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "from": "lodash._isiterateecall@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" + } + } + }, + "readdirp": { + "version": "2.0.0", + "from": "readdirp@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + }, + "minimatch": { + "version": "2.0.10", + "from": "minimatch@>=2.0.10 <3.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "from": "readable-stream@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.4.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + } + } + } + } + }, + "fsevents": { + "version": "1.0.2", + "from": "fsevents@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.2.tgz", + "dependencies": { + "nan": { + "version": "2.1.0", + "from": "nan@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" + }, + "node-pre-gyp": { + "version": "0.6.12", + "from": "node-pre-gyp@0.6.12", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.12.tgz", + "dependencies": { + "nopt": { + "version": "3.0.4", + "from": "nopt@~3.0.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.4.tgz", + "dependencies": { + "abbrev": { + "version": "1.0.7", + "from": "abbrev@1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" + } + } + }, + "npmlog": { + "version": "1.2.1", + "from": "npmlog@~1.2.0", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-1.2.1.tgz", + "dependencies": { + "ansi": { + "version": "0.3.0", + "from": "ansi@~0.3.0", + "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.0.tgz" + }, + "are-we-there-yet": { + "version": "1.0.4", + "from": "are-we-there-yet@~1.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.4.tgz", + "dependencies": { + "delegates": { + "version": "0.1.0", + "from": "delegates@^0.1.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz" + }, + "readable-stream": { + "version": "1.1.13", + "from": "readable-stream@^1.1.13", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + } + } + }, + "gauge": { + "version": "1.2.2", + "from": "gauge@~1.2.0", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.2.tgz", + "dependencies": { + "has-unicode": { + "version": "1.0.0", + "from": "has-unicode@^1.0.0", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-1.0.0.tgz" + }, + "lodash.pad": { + "version": "3.1.1", + "from": "lodash.pad@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + }, + "lodash.padleft": { + "version": "3.1.1", + "from": "lodash.padleft@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.padleft/-/lodash.padleft-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + }, + "lodash.padright": { + "version": "3.1.1", + "from": "lodash.padright@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + } + } + } + } + }, + "request": { + "version": "2.64.0", + "from": "request@2.x", + "resolved": "https://registry.npmjs.org/request/-/request-2.64.0.tgz", + "dependencies": { + "bl": { + "version": "1.0.0", + "from": "bl@~1.0.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz", + "dependencies": { + "readable-stream": { + "version": "2.0.2", + "from": "readable-stream@~2.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.2.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@~1.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.1", + "from": "util-deprecate@~1.0.1", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.1.tgz" + } + } + } + } + }, + "caseless": { + "version": "0.11.0", + "from": "caseless@~0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" + }, + "extend": { + "version": "3.0.0", + "from": "extend@~3.0.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "from": "forever-agent@~0.6.0", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "1.0.0-rc3", + "from": "form-data@~1.0.0-rc1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz", + "dependencies": { + "async": { + "version": "1.4.2", + "from": "async@^1.4.0", + "resolved": "https://registry.npmjs.org/async/-/async-1.4.2.tgz" + } + } + }, + "json-stringify-safe": { + "version": "5.0.1", + "from": "json-stringify-safe@~5.0.0", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.7", + "from": "mime-types@~2.1.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.7.tgz", + "dependencies": { + "mime-db": { + "version": "1.19.0", + "from": "mime-db@~1.19.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.19.0.tgz" + } + } + }, + "node-uuid": { + "version": "1.4.3", + "from": "node-uuid@~1.4.0", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" + }, + "qs": { + "version": "5.1.0", + "from": "qs@~5.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz" + }, + "tunnel-agent": { + "version": "0.4.1", + "from": "tunnel-agent@~0.4.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.1.tgz" + }, + "tough-cookie": { + "version": "2.1.0", + "from": "tough-cookie@>=0.12.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.1.0.tgz" + }, + "http-signature": { + "version": "0.11.0", + "from": "http-signature@~0.11.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz", + "dependencies": { + "assert-plus": { + "version": "0.1.5", + "from": "assert-plus@^0.1.5", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" + }, + "asn1": { + "version": "0.1.11", + "from": "asn1@0.1.11", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz" + }, + "ctype": { + "version": "0.5.3", + "from": "ctype@0.5.3", + "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz" + } + } + }, + "oauth-sign": { + "version": "0.8.0", + "from": "oauth-sign@~0.8.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.0.tgz" + }, + "hawk": { + "version": "3.1.0", + "from": "hawk@~3.1.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.0.tgz", + "dependencies": { + "hoek": { + "version": "2.16.3", + "from": "hoek@2.x.x", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" + }, + "boom": { + "version": "2.9.0", + "from": "boom@^2.8.x", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.9.0.tgz" + }, + "cryptiles": { + "version": "2.0.5", + "from": "cryptiles@2.x.x", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" + }, + "sntp": { + "version": "1.0.9", + "from": "sntp@1.x.x", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" + } + } + }, + "aws-sign2": { + "version": "0.5.0", + "from": "aws-sign2@~0.5.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz" + }, + "stringstream": { + "version": "0.0.4", + "from": "stringstream@~0.0.4", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.4.tgz" + }, + "combined-stream": { + "version": "1.0.5", + "from": "combined-stream@~1.0.1", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "from": "delayed-stream@~1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + } + } + }, + "isstream": { + "version": "0.1.2", + "from": "isstream@~0.1.1", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" + }, + "har-validator": { + "version": "1.8.0", + "from": "har-validator@^1.6.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz", + "dependencies": { + "bluebird": { + "version": "2.10.2", + "from": "bluebird@^2.9.30", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" + }, + "chalk": { + "version": "1.1.1", + "from": "chalk@^1.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", + "dependencies": { + "ansi-styles": { + "version": "2.1.0", + "from": "ansi-styles@^2.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" + }, + "escape-string-regexp": { + "version": "1.0.3", + "from": "escape-string-regexp@^1.0.2", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "from": "has-ansi@^2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@^2.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@^3.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@^2.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "supports-color": { + "version": "2.0.0", + "from": "supports-color@^2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" + } + } + }, + "commander": { + "version": "2.8.1", + "from": "commander@^2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1", + "from": "graceful-readlink@>= 1.0.0", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + } + } + }, + "is-my-json-valid": { + "version": "2.12.2", + "from": "is-my-json-valid@^2.12.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.2.tgz", + "dependencies": { + "generate-function": { + "version": "2.0.0", + "from": "generate-function@^2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" + }, + "generate-object-property": { + "version": "1.2.0", + "from": "generate-object-property@^1.1.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "dependencies": { + "is-property": { + "version": "1.0.2", + "from": "is-property@^1.0.0", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" + } + } + }, + "jsonpointer": { + "version": "2.0.0", + "from": "jsonpointer@2.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@^4.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + } + } + } + } + }, + "semver": { + "version": "5.0.3", + "from": "semver@~5.0.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" + }, + "tar": { + "version": "2.2.1", + "from": "tar@~2.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", + "dependencies": { + "block-stream": { + "version": "0.0.8", + "from": "block-stream@*", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.8.tgz" + }, + "fstream": { + "version": "1.0.8", + "from": "fstream@^1.0.2", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.8.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@^4.1.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "tar-pack": { + "version": "2.0.0", + "from": "tar-pack@~2.0.0", + "resolved": "https://registry.npmjs.org/tar-pack/-/tar-pack-2.0.0.tgz", + "dependencies": { + "uid-number": { + "version": "0.0.3", + "from": "uid-number@0.0.3", + "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.3.tgz" + }, + "once": { + "version": "1.1.1", + "from": "once@~1.1.1", + "resolved": "https://registry.npmjs.org/once/-/once-1.1.1.tgz" + }, + "debug": { + "version": "0.7.4", + "from": "debug@~0.7.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz" + }, + "rimraf": { + "version": "2.2.8", + "from": "rimraf@~2.2.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz" + }, + "fstream": { + "version": "0.1.31", + "from": "fstream@~0.1.22", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", + "dependencies": { + "graceful-fs": { + "version": "3.0.8", + "from": "graceful-fs@~3.0.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "tar": { + "version": "0.1.20", + "from": "tar@~0.1.17", + "resolved": "https://registry.npmjs.org/tar/-/tar-0.1.20.tgz", + "dependencies": { + "block-stream": { + "version": "0.0.8", + "from": "block-stream@*", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.8.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "fstream-ignore": { + "version": "0.0.7", + "from": "fstream-ignore@0.0.7", + "resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.7.tgz", + "dependencies": { + "minimatch": { + "version": "0.2.14", + "from": "minimatch@~0.2.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "dependencies": { + "lru-cache": { + "version": "2.7.0", + "from": "lru-cache@2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" + }, + "sigmund": { + "version": "1.0.1", + "from": "sigmund@~1.0.0", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "readable-stream": { + "version": "1.0.33", + "from": "readable-stream@~1.0.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "graceful-fs": { + "version": "1.2.3", + "from": "graceful-fs@1.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@~0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "rc": { + "version": "1.1.2", + "from": "rc@~1.1.0", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.1.2.tgz", + "dependencies": { + "minimist": { + "version": "1.2.0", + "from": "minimist@^1.1.2", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + }, + "deep-extend": { + "version": "0.2.11", + "from": "deep-extend@~0.2.5", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz" + }, + "strip-json-comments": { + "version": "0.1.3", + "from": "strip-json-comments@0.1.x", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz" + }, + "ini": { + "version": "1.3.4", + "from": "ini@~1.3.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" + } + } + }, + "rimraf": { + "version": "2.4.3", + "from": "rimraf@~2.4.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz", + "dependencies": { + "glob": { + "version": "5.0.15", + "from": "glob@^5.0.14", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@^1.0.4", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@1", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "3.0.0", + "from": "minimatch@2 || 3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@^1.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.0", + "from": "balanced-match@^0.2.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "from": "once@^1.3.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@1", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@^1.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + } + } + } + } + } + } + } + } + } + } + }, + "commander": { + "version": "2.9.0", + "from": "commander@>=2.6.0 <3.0.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1", + "from": "graceful-readlink@>=1.0.0", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + } + } + }, + "convert-source-map": { + "version": "1.1.1", + "from": "convert-source-map@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.1.1.tgz" + }, + "fs-readdir-recursive": { + "version": "0.1.2", + "from": "fs-readdir-recursive@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/fs-readdir-recursive/-/fs-readdir-recursive-0.1.2.tgz" + }, + "lodash": { + "version": "3.10.1", + "from": "lodash@>=3.2.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + }, + "output-file-sync": { + "version": "1.1.1", + "from": "output-file-sync@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/output-file-sync/-/output-file-sync-1.1.1.tgz", + "dependencies": { + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@>=0.5.1 <0.6.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + }, + "path-exists": { + "version": "1.0.0", + "from": "path-exists@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-1.0.0.tgz" + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + }, + "source-map": { + "version": "0.4.4", + "from": "source-map@>=0.4.0 <0.5.0", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", + "dependencies": { + "amdefine": { + "version": "1.0.0", + "from": "amdefine@>=0.0.4", + "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.0.tgz" + } + } + }, + "slash": { + "version": "1.0.0", + "from": "slash@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz" + } + } + }, + "chalk": { + "version": "1.1.1", + "from": "chalk@1.1.1", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", + "dependencies": { + "ansi-styles": { + "version": "2.1.0", + "from": "ansi-styles@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" + }, + "escape-string-regexp": { + "version": "1.0.3", + "from": "escape-string-regexp@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "from": "has-ansi@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "supports-color": { + "version": "2.0.0", + "from": "supports-color@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" + } + } + }, + "dedent": { + "version": "0.4.0", + "from": "dedent@0.4.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.4.0.tgz" + }, + "find-node-modules": { + "version": "1.0.1", + "from": "find-node-modules@1.0.1", + "resolved": "https://registry.npmjs.org/find-node-modules/-/find-node-modules-1.0.1.tgz", + "dependencies": { + "findup-sync": { + "version": "0.2.1", + "from": "findup-sync@>=0.2.1 <0.3.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.2.1.tgz", + "dependencies": { + "glob": { + "version": "4.3.5", + "from": "glob@>=4.3.0 <4.4.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "2.0.10", + "from": "minimatch@>=2.0.1 <3.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + } + } + }, + "merge": { + "version": "1.2.0", + "from": "merge@>=1.2.0 <2.0.0", + "resolved": "https://registry.npmjs.org/merge/-/merge-1.2.0.tgz" + } + } + }, + "glob": { + "version": "5.0.15", + "from": "glob@5.0.15", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "3.0.0", + "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + } + } + }, + "gulp": { + "version": "3.9.0", + "from": "gulp@3.9.0", + "resolved": "https://registry.npmjs.org/gulp/-/gulp-3.9.0.tgz", + "dependencies": { + "archy": { + "version": "1.0.0", + "from": "archy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/archy/-/archy-1.0.0.tgz" + }, + "deprecated": { + "version": "0.0.1", + "from": "deprecated@>=0.0.1 <0.0.2", + "resolved": "https://registry.npmjs.org/deprecated/-/deprecated-0.0.1.tgz" + }, + "interpret": { + "version": "0.6.6", + "from": "interpret@>=0.6.2 <0.7.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-0.6.6.tgz" + }, + "liftoff": { + "version": "2.2.0", + "from": "liftoff@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/liftoff/-/liftoff-2.2.0.tgz", + "dependencies": { + "extend": { + "version": "2.0.1", + "from": "extend@>=2.0.1 <3.0.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-2.0.1.tgz" + }, + "findup-sync": { + "version": "0.3.0", + "from": "findup-sync@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-0.3.0.tgz" + }, + "flagged-respawn": { + "version": "0.3.1", + "from": "flagged-respawn@>=0.3.1 <0.4.0", + "resolved": "https://registry.npmjs.org/flagged-respawn/-/flagged-respawn-0.3.1.tgz" + }, + "rechoir": { + "version": "0.6.2", + "from": "rechoir@>=0.6.0 <0.7.0", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz" + }, + "resolve": { + "version": "1.1.6", + "from": "resolve@>=1.1.6 <2.0.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.6.tgz" + } + } + }, + "orchestrator": { + "version": "0.3.7", + "from": "orchestrator@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/orchestrator/-/orchestrator-0.3.7.tgz", + "dependencies": { + "end-of-stream": { + "version": "0.1.5", + "from": "end-of-stream@>=0.1.5 <0.2.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-0.1.5.tgz", + "dependencies": { + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + }, + "sequencify": { + "version": "0.0.7", + "from": "sequencify@>=0.0.7 <0.1.0", + "resolved": "https://registry.npmjs.org/sequencify/-/sequencify-0.0.7.tgz" + }, + "stream-consume": { + "version": "0.1.0", + "from": "stream-consume@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/stream-consume/-/stream-consume-0.1.0.tgz" + } + } + }, + "pretty-hrtime": { + "version": "1.0.1", + "from": "pretty-hrtime@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz" + }, + "semver": { + "version": "4.3.6", + "from": "semver@>=4.1.0 <5.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" + }, + "tildify": { + "version": "1.1.2", + "from": "tildify@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/tildify/-/tildify-1.1.2.tgz", + "dependencies": { + "os-homedir": { + "version": "1.0.1", + "from": "os-homedir@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" + } + } + }, + "v8flags": { + "version": "2.0.10", + "from": "v8flags@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/v8flags/-/v8flags-2.0.10.tgz", + "dependencies": { + "user-home": { + "version": "1.1.1", + "from": "user-home@>=1.1.1 <2.0.0", + "resolved": "https://registry.npmjs.org/user-home/-/user-home-1.1.1.tgz" + } + } + }, + "vinyl-fs": { + "version": "0.3.14", + "from": "vinyl-fs@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/vinyl-fs/-/vinyl-fs-0.3.14.tgz", + "dependencies": { + "defaults": { + "version": "1.0.3", + "from": "defaults@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "dependencies": { + "clone": { + "version": "1.0.2", + "from": "clone@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz" + } + } + }, + "glob-stream": { + "version": "3.1.18", + "from": "glob-stream@>=3.1.5 <4.0.0", + "resolved": "https://registry.npmjs.org/glob-stream/-/glob-stream-3.1.18.tgz", + "dependencies": { + "glob": { + "version": "4.5.3", + "from": "glob@>=4.3.1 <5.0.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-4.5.3.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + }, + "minimatch": { + "version": "2.0.10", + "from": "minimatch@>=2.0.1 <3.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "ordered-read-streams": { + "version": "0.1.0", + "from": "ordered-read-streams@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/ordered-read-streams/-/ordered-read-streams-0.1.0.tgz" + }, + "glob2base": { + "version": "0.0.12", + "from": "glob2base@>=0.0.12 <0.0.13", + "resolved": "https://registry.npmjs.org/glob2base/-/glob2base-0.0.12.tgz", + "dependencies": { + "find-index": { + "version": "0.1.1", + "from": "find-index@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/find-index/-/find-index-0.1.1.tgz" + } + } + }, + "unique-stream": { + "version": "1.0.0", + "from": "unique-stream@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/unique-stream/-/unique-stream-1.0.0.tgz" + } + } + }, + "glob-watcher": { + "version": "0.0.6", + "from": "glob-watcher@>=0.0.6 <0.0.7", + "resolved": "https://registry.npmjs.org/glob-watcher/-/glob-watcher-0.0.6.tgz", + "dependencies": { + "gaze": { + "version": "0.5.2", + "from": "gaze@>=0.5.1 <0.6.0", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", + "dependencies": { + "globule": { + "version": "0.1.0", + "from": "globule@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", + "dependencies": { + "lodash": { + "version": "1.0.2", + "from": "lodash@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz" + }, + "glob": { + "version": "3.1.21", + "from": "glob@>=3.1.21 <3.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", + "dependencies": { + "graceful-fs": { + "version": "1.2.3", + "from": "graceful-fs@>=1.2.0 <1.3.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" + }, + "inherits": { + "version": "1.0.2", + "from": "inherits@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" + } + } + }, + "minimatch": { + "version": "0.2.14", + "from": "minimatch@>=0.2.11 <0.3.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "dependencies": { + "lru-cache": { + "version": "2.7.0", + "from": "lru-cache@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" + }, + "sigmund": { + "version": "1.0.1", + "from": "sigmund@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" + } + } + } + } + } + } + } + } + }, + "graceful-fs": { + "version": "3.0.8", + "from": "graceful-fs@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" + }, + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "strip-bom": { + "version": "1.0.0", + "from": "strip-bom@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-1.0.0.tgz", + "dependencies": { + "first-chunk-stream": { + "version": "1.0.0", + "from": "first-chunk-stream@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz" + }, + "is-utf8": { + "version": "0.2.0", + "from": "is-utf8@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz" + } + } + }, + "through2": { + "version": "0.6.5", + "from": "through2@>=0.6.1 <0.7.0", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "dependencies": { + "readable-stream": { + "version": "1.0.33", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + }, + "vinyl": { + "version": "0.4.6", + "from": "vinyl@>=0.4.0 <0.5.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.4.6.tgz", + "dependencies": { + "clone": { + "version": "0.2.0", + "from": "clone@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-0.2.0.tgz" + }, + "clone-stats": { + "version": "0.0.1", + "from": "clone-stats@>=0.0.1 <0.0.2", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz" + } + } + } + } + } + } + }, + "gulp-git": { + "version": "1.6.0", + "from": "gulp-git@1.6.0", + "resolved": "https://registry.npmjs.org/gulp-git/-/gulp-git-1.6.0.tgz", + "dependencies": { + "any-shell-escape": { + "version": "0.1.1", + "from": "any-shell-escape@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/any-shell-escape/-/any-shell-escape-0.1.1.tgz" + }, + "gulp-util": { + "version": "3.0.7", + "from": "gulp-util@>=3.0.6 <4.0.0", + "resolved": "https://registry.npmjs.org/gulp-util/-/gulp-util-3.0.7.tgz", + "dependencies": { + "array-differ": { + "version": "1.0.0", + "from": "array-differ@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz" + }, + "array-uniq": { + "version": "1.0.2", + "from": "array-uniq@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.2.tgz" + }, + "beeper": { + "version": "1.1.0", + "from": "beeper@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/beeper/-/beeper-1.1.0.tgz" + }, + "dateformat": { + "version": "1.0.11", + "from": "dateformat@>=1.0.11 <2.0.0", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-1.0.11.tgz", + "dependencies": { + "get-stdin": { + "version": "5.0.0", + "from": "get-stdin@*", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-5.0.0.tgz" + }, + "meow": { + "version": "3.5.0", + "from": "meow@*", + "resolved": "https://registry.npmjs.org/meow/-/meow-3.5.0.tgz", + "dependencies": { + "camelcase-keys": { + "version": "1.0.0", + "from": "camelcase-keys@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-1.0.0.tgz", + "dependencies": { + "camelcase": { + "version": "1.2.1", + "from": "camelcase@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz" + }, + "map-obj": { + "version": "1.0.1", + "from": "map-obj@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz" + } + } + }, + "loud-rejection": { + "version": "1.0.0", + "from": "loud-rejection@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.0.0.tgz" + }, + "normalize-package-data": { + "version": "2.3.4", + "from": "normalize-package-data@>=2.3.4 <3.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.3.4.tgz", + "dependencies": { + "hosted-git-info": { + "version": "2.1.4", + "from": "hosted-git-info@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.1.4.tgz" + }, + "is-builtin-module": { + "version": "1.0.0", + "from": "is-builtin-module@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-1.0.0.tgz", + "dependencies": { + "builtin-modules": { + "version": "1.1.0", + "from": "builtin-modules@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.0.tgz" + } + } + }, + "validate-npm-package-license": { + "version": "3.0.1", + "from": "validate-npm-package-license@>=3.0.1 <4.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.1.tgz", + "dependencies": { + "spdx-correct": { + "version": "1.0.2", + "from": "spdx-correct@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-1.0.2.tgz", + "dependencies": { + "spdx-license-ids": { + "version": "1.1.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.1.0.tgz" + } + } + }, + "spdx-expression-parse": { + "version": "1.0.0", + "from": "spdx-expression-parse@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-1.0.0.tgz", + "dependencies": { + "spdx-exceptions": { + "version": "1.0.3", + "from": "spdx-exceptions@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-1.0.3.tgz" + }, + "spdx-license-ids": { + "version": "1.1.0", + "from": "spdx-license-ids@>=1.0.2 <2.0.0", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-1.1.0.tgz" + } + } + } + } + } + } + }, + "object-assign": { + "version": "4.0.1", + "from": "object-assign@>=4.0.1 <5.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" + }, + "read-pkg-up": { + "version": "1.0.1", + "from": "read-pkg-up@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", + "dependencies": { + "find-up": { + "version": "1.0.0", + "from": "find-up@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.0.0.tgz", + "dependencies": { + "path-exists": { + "version": "2.0.0", + "from": "path-exists@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.0.0.tgz" + }, + "pinkie-promise": { + "version": "1.0.0", + "from": "pinkie-promise@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", + "dependencies": { + "pinkie": { + "version": "1.0.0", + "from": "pinkie@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz" + } + } + } + } + }, + "read-pkg": { + "version": "1.1.0", + "from": "read-pkg@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", + "dependencies": { + "load-json-file": { + "version": "1.0.1", + "from": "load-json-file@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.0.1.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + }, + "parse-json": { + "version": "2.2.0", + "from": "parse-json@>=2.2.0 <3.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", + "dependencies": { + "error-ex": { + "version": "1.2.0", + "from": "error-ex@>=1.2.0 <2.0.0", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.2.0.tgz" + } + } + }, + "pify": { + "version": "2.3.0", + "from": "pify@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "1.0.0", + "from": "pinkie-promise@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", + "dependencies": { + "pinkie": { + "version": "1.0.0", + "from": "pinkie@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz" + } + } + }, + "strip-bom": { + "version": "2.0.0", + "from": "strip-bom@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "dependencies": { + "is-utf8": { + "version": "0.2.0", + "from": "is-utf8@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.0.tgz" + } + } + } + } + }, + "path-type": { + "version": "1.0.0", + "from": "path-type@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.0.0.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + }, + "pify": { + "version": "2.3.0", + "from": "pify@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz" + }, + "pinkie-promise": { + "version": "1.0.0", + "from": "pinkie-promise@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", + "dependencies": { + "pinkie": { + "version": "1.0.0", + "from": "pinkie@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz" + } + } + } + } + } + } + } + } + }, + "redent": { + "version": "1.0.0", + "from": "redent@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", + "dependencies": { + "indent-string": { + "version": "2.1.0", + "from": "indent-string@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", + "dependencies": { + "repeating": { + "version": "2.0.0", + "from": "repeating@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.0.tgz", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "from": "is-finite@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + } + } + } + } + }, + "strip-indent": { + "version": "1.0.1", + "from": "strip-indent@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", + "dependencies": { + "get-stdin": { + "version": "4.0.1", + "from": "get-stdin@>=4.0.1 <5.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz" + } + } + } + } + }, + "trim-newlines": { + "version": "1.0.0", + "from": "trim-newlines@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz" + } + } + } + } + }, + "fancy-log": { + "version": "1.1.0", + "from": "fancy-log@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/fancy-log/-/fancy-log-1.1.0.tgz" + }, + "gulplog": { + "version": "1.0.0", + "from": "gulplog@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/gulplog/-/gulplog-1.0.0.tgz", + "dependencies": { + "glogg": { + "version": "1.0.0", + "from": "glogg@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/glogg/-/glogg-1.0.0.tgz", + "dependencies": { + "sparkles": { + "version": "1.0.0", + "from": "sparkles@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz" + } + } + } + } + }, + "has-gulplog": { + "version": "0.1.0", + "from": "has-gulplog@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/has-gulplog/-/has-gulplog-0.1.0.tgz", + "dependencies": { + "sparkles": { + "version": "1.0.0", + "from": "sparkles@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/sparkles/-/sparkles-1.0.0.tgz" + } + } + }, + "lodash._reescape": { + "version": "3.0.0", + "from": "lodash._reescape@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._reescape/-/lodash._reescape-3.0.0.tgz" + }, + "lodash._reevaluate": { + "version": "3.0.0", + "from": "lodash._reevaluate@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._reevaluate/-/lodash._reevaluate-3.0.0.tgz" + }, + "lodash._reinterpolate": { + "version": "3.0.0", + "from": "lodash._reinterpolate@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz" + }, + "lodash.template": { + "version": "3.6.2", + "from": "lodash.template@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-3.6.2.tgz", + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "from": "lodash._basecopy@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz" + }, + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._basevalues": { + "version": "3.0.0", + "from": "lodash._basevalues@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._basevalues/-/lodash._basevalues-3.0.0.tgz" + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "from": "lodash._isiterateecall@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" + }, + "lodash.escape": { + "version": "3.0.0", + "from": "lodash.escape@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.escape/-/lodash.escape-3.0.0.tgz" + }, + "lodash.keys": { + "version": "3.1.2", + "from": "lodash.keys@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "from": "lodash._getnative@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz" + }, + "lodash.isarguments": { + "version": "3.0.4", + "from": "lodash.isarguments@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.4.tgz" + }, + "lodash.isarray": { + "version": "3.0.4", + "from": "lodash.isarray@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" + } + } + }, + "lodash.restparam": { + "version": "3.6.1", + "from": "lodash.restparam@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz" + }, + "lodash.templatesettings": { + "version": "3.1.0", + "from": "lodash.templatesettings@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-3.1.0.tgz" + } + } + }, + "multipipe": { + "version": "0.1.2", + "from": "multipipe@>=0.1.2 <0.2.0", + "resolved": "https://registry.npmjs.org/multipipe/-/multipipe-0.1.2.tgz", + "dependencies": { + "duplexer2": { + "version": "0.0.2", + "from": "duplexer2@0.0.2", + "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.0.2.tgz", + "dependencies": { + "readable-stream": { + "version": "1.1.13", + "from": "readable-stream@>=1.1.9 <1.2.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + } + } + } + } + }, + "object-assign": { + "version": "3.0.0", + "from": "object-assign@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz" + }, + "replace-ext": { + "version": "0.0.1", + "from": "replace-ext@0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz" + }, + "through2": { + "version": "2.0.0", + "from": "through2@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.0.tgz", + "dependencies": { + "readable-stream": { + "version": "2.0.4", + "from": "readable-stream@>=2.0.0 <2.1.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.4.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + } + } + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@>=4.0.0 <4.1.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + }, + "vinyl": { + "version": "0.5.3", + "from": "vinyl@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-0.5.3.tgz", + "dependencies": { + "clone": { + "version": "1.0.2", + "from": "clone@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.2.tgz" + }, + "clone-stats": { + "version": "0.0.1", + "from": "clone-stats@>=0.0.1 <0.0.2", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz" + } + } + } + } + }, + "require-dir": { + "version": "0.1.0", + "from": "require-dir@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/require-dir/-/require-dir-0.1.0.tgz" + }, + "through2": { + "version": "0.6.5", + "from": "through2@>=0.6.5 <0.7.0", + "resolved": "https://registry.npmjs.org/through2/-/through2-0.6.5.tgz", + "dependencies": { + "readable-stream": { + "version": "1.0.33", + "from": "readable-stream@>=1.0.33-1 <1.1.0-0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + } + } + }, + "inquirer": { + "version": "0.10.1", + "from": "inquirer@0.10.1", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-0.10.1.tgz", + "dependencies": { + "ansi-escapes": { + "version": "1.1.0", + "from": "ansi-escapes@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-1.1.0.tgz" + }, + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + }, + "cli-cursor": { + "version": "1.0.2", + "from": "cli-cursor@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-1.0.2.tgz", + "dependencies": { + "restore-cursor": { + "version": "1.0.1", + "from": "restore-cursor@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-1.0.1.tgz", + "dependencies": { + "exit-hook": { + "version": "1.1.1", + "from": "exit-hook@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/exit-hook/-/exit-hook-1.1.1.tgz" + }, + "onetime": { + "version": "1.0.0", + "from": "onetime@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-1.0.0.tgz" + } + } + } + } + }, + "cli-width": { + "version": "1.1.0", + "from": "cli-width@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-1.1.0.tgz" + }, + "figures": { + "version": "1.4.0", + "from": "figures@>=1.3.5 <2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-1.4.0.tgz" + }, + "lodash": { + "version": "3.10.1", + "from": "lodash@>=3.2.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" + }, + "readline2": { + "version": "1.0.1", + "from": "readline2@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/readline2/-/readline2-1.0.1.tgz", + "dependencies": { + "code-point-at": { + "version": "1.0.0", + "from": "code-point-at@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.0.0.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "from": "is-fullwidth-code-point@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + }, + "mute-stream": { + "version": "0.0.5", + "from": "mute-stream@0.0.5", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.5.tgz" + } + } + }, + "run-async": { + "version": "0.1.0", + "from": "run-async@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-0.1.0.tgz", + "dependencies": { + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + }, + "rx-lite": { + "version": "3.1.2", + "from": "rx-lite@>=3.1.2 <4.0.0", + "resolved": "https://registry.npmjs.org/rx-lite/-/rx-lite-3.1.2.tgz" + }, + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz" + }, + "through": { + "version": "2.3.8", + "from": "through@>=2.3.6 <3.0.0", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + } + } + }, + "json": { + "version": "9.0.3", + "from": "json@9.0.3", + "resolved": "https://registry.npmjs.org/json/-/json-9.0.3.tgz" + }, + "minimist": { + "version": "1.2.0", + "from": "minimist@1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + }, + "node-uuid": { + "version": "1.4.3", + "from": "node-uuid@1.4.3", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" + }, + "nodemon": { + "version": "1.7.3", + "from": "nodemon@1.7.3", + "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-1.7.3.tgz", + "dependencies": { + "chokidar": { + "version": "1.2.0", + "from": "chokidar@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.2.0.tgz", + "dependencies": { + "anymatch": { + "version": "1.3.0", + "from": "anymatch@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", + "dependencies": { + "micromatch": { + "version": "2.2.0", + "from": "micromatch@>=2.1.5 <3.0.0", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.2.0.tgz", + "dependencies": { + "arr-diff": { + "version": "1.1.0", + "from": "arr-diff@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-1.1.0.tgz", + "dependencies": { + "arr-flatten": { + "version": "1.0.1", + "from": "arr-flatten@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz" + }, + "array-slice": { + "version": "0.2.3", + "from": "array-slice@>=0.2.3 <0.3.0", + "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz" + } + } + }, + "array-unique": { + "version": "0.2.1", + "from": "array-unique@>=0.2.1 <0.3.0", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" + }, + "braces": { + "version": "1.8.2", + "from": "braces@>=1.8.0 <2.0.0", + "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.2.tgz", + "dependencies": { + "expand-range": { + "version": "1.8.1", + "from": "expand-range@>=1.8.1 <2.0.0", + "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz", + "dependencies": { + "fill-range": { + "version": "2.2.2", + "from": "fill-range@>=2.1.0 <3.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.2.tgz", + "dependencies": { + "is-number": { + "version": "1.1.2", + "from": "is-number@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-1.1.2.tgz" + }, + "isobject": { + "version": "1.0.2", + "from": "isobject@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-1.0.2.tgz" + }, + "randomatic": { + "version": "1.1.0", + "from": "randomatic@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.0.tgz" + }, + "repeat-string": { + "version": "1.5.2", + "from": "repeat-string@>=1.5.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" + } + } + } + } + }, + "lazy-cache": { + "version": "0.2.4", + "from": "lazy-cache@>=0.2.3 <0.3.0", + "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-0.2.4.tgz" + }, + "preserve": { + "version": "0.2.0", + "from": "preserve@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz" + }, + "repeat-element": { + "version": "1.1.2", + "from": "repeat-element@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz" + } + } + }, + "expand-brackets": { + "version": "0.1.4", + "from": "expand-brackets@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" + }, + "extglob": { + "version": "0.3.1", + "from": "extglob@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", + "dependencies": { + "ansi-green": { + "version": "0.1.1", + "from": "ansi-green@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", + "dependencies": { + "ansi-wrap": { + "version": "0.1.0", + "from": "ansi-wrap@0.1.0", + "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" + } + } + }, + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + }, + "success-symbol": { + "version": "0.1.0", + "from": "success-symbol@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" + } + } + }, + "filename-regex": { + "version": "2.0.0", + "from": "filename-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz" + }, + "is-glob": { + "version": "1.1.3", + "from": "is-glob@>=1.1.3 <2.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-1.1.3.tgz" + }, + "kind-of": { + "version": "1.1.0", + "from": "kind-of@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-1.1.0.tgz" + }, + "object.omit": { + "version": "1.1.0", + "from": "object.omit@>=1.1.0 <2.0.0", + "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-1.1.0.tgz", + "dependencies": { + "for-own": { + "version": "0.1.3", + "from": "for-own@>=0.1.3 <0.2.0", + "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz", + "dependencies": { + "for-in": { + "version": "0.1.4", + "from": "for-in@>=0.1.4 <0.2.0", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz" + } + } + }, + "isobject": { + "version": "1.0.2", + "from": "isobject@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-1.0.2.tgz" + } + } + }, + "parse-glob": { + "version": "3.0.4", + "from": "parse-glob@>=3.0.1 <4.0.0", + "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", + "dependencies": { + "glob-base": { + "version": "0.3.0", + "from": "glob-base@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz" + }, + "is-dotfile": { + "version": "1.0.2", + "from": "is-dotfile@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz" + }, + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + }, + "is-glob": { + "version": "2.0.1", + "from": "is-glob@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz" + } + } + }, + "regex-cache": { + "version": "0.4.2", + "from": "regex-cache@>=0.4.2 <0.5.0", + "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz", + "dependencies": { + "is-equal-shallow": { + "version": "0.1.3", + "from": "is-equal-shallow@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz" + }, + "is-primitive": { + "version": "2.0.0", + "from": "is-primitive@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz" + } + } + } + } + } + } + }, + "arrify": { + "version": "1.0.0", + "from": "arrify@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.0.tgz" + }, + "async-each": { + "version": "0.1.6", + "from": "async-each@>=0.1.5 <0.2.0", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" + }, + "glob-parent": { + "version": "2.0.0", + "from": "glob-parent@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz" + }, + "is-binary-path": { + "version": "1.0.1", + "from": "is-binary-path@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "dependencies": { + "binary-extensions": { + "version": "1.3.1", + "from": "binary-extensions@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.3.1.tgz" + } + } + }, + "is-glob": { + "version": "2.0.1", + "from": "is-glob@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", + "dependencies": { + "is-extglob": { + "version": "1.0.0", + "from": "is-extglob@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" + } + } + }, + "lodash.flatten": { + "version": "3.0.2", + "from": "lodash.flatten@>=3.0.2 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.flatten/-/lodash.flatten-3.0.2.tgz", + "dependencies": { + "lodash._baseflatten": { + "version": "3.1.4", + "from": "lodash._baseflatten@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._baseflatten/-/lodash._baseflatten-3.1.4.tgz", + "dependencies": { + "lodash.isarguments": { + "version": "3.0.4", + "from": "lodash.isarguments@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.4.tgz" + }, + "lodash.isarray": { + "version": "3.0.4", + "from": "lodash.isarray@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" + } + } + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "from": "lodash._isiterateecall@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + }, + "readdirp": { + "version": "2.0.0", + "from": "readdirp@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + }, + "minimatch": { + "version": "2.0.10", + "from": "minimatch@>=2.0.10 <3.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "from": "readable-stream@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.4.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + } + } + } + } + }, + "fsevents": { + "version": "1.0.2", + "from": "fsevents@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.2.tgz", + "dependencies": { + "nan": { + "version": "2.1.0", + "from": "nan@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" + }, + "node-pre-gyp": { + "version": "0.6.12", + "from": "node-pre-gyp@0.6.12", + "resolved": "https://registry.npmjs.org/node-pre-gyp/-/node-pre-gyp-0.6.12.tgz", + "dependencies": { + "nopt": { + "version": "3.0.4", + "from": "nopt@~3.0.1", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.4.tgz", + "dependencies": { + "abbrev": { + "version": "1.0.7", + "from": "abbrev@1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" + } + } + }, + "npmlog": { + "version": "1.2.1", + "from": "npmlog@~1.2.0", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-1.2.1.tgz", + "dependencies": { + "ansi": { + "version": "0.3.0", + "from": "ansi@~0.3.0", + "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.0.tgz" + }, + "are-we-there-yet": { + "version": "1.0.4", + "from": "are-we-there-yet@~1.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.4.tgz", + "dependencies": { + "delegates": { + "version": "0.1.0", + "from": "delegates@^0.1.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz" + }, + "readable-stream": { + "version": "1.1.13", + "from": "readable-stream@^1.1.13", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + } + } + }, + "gauge": { + "version": "1.2.2", + "from": "gauge@~1.2.0", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.2.tgz", + "dependencies": { + "has-unicode": { + "version": "1.0.0", + "from": "has-unicode@^1.0.0", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-1.0.0.tgz" + }, + "lodash.pad": { + "version": "3.1.1", + "from": "lodash.pad@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + }, + "lodash.padleft": { + "version": "3.1.1", + "from": "lodash.padleft@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.padleft/-/lodash.padleft-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + }, + "lodash.padright": { + "version": "3.1.1", + "from": "lodash.padright@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz", + "dependencies": { + "lodash._basetostring": { + "version": "3.0.1", + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz", + "dependencies": { + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + } + } + } + } + } + } + } + } + }, + "request": { + "version": "2.64.0", + "from": "request@2.x", + "resolved": "https://registry.npmjs.org/request/-/request-2.64.0.tgz", + "dependencies": { + "bl": { + "version": "1.0.0", + "from": "bl@~1.0.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-1.0.0.tgz", + "dependencies": { + "readable-stream": { + "version": "2.0.2", + "from": "readable-stream@~2.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.2.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@~1.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.1", + "from": "util-deprecate@~1.0.1", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.1.tgz" + } + } + } + } + }, + "caseless": { + "version": "0.11.0", + "from": "caseless@~0.11.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.11.0.tgz" + }, + "extend": { + "version": "3.0.0", + "from": "extend@~3.0.0", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" + }, + "forever-agent": { + "version": "0.6.1", + "from": "forever-agent@~0.6.0", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" + }, + "form-data": { + "version": "1.0.0-rc3", + "from": "form-data@~1.0.0-rc1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz", + "dependencies": { + "async": { + "version": "1.4.2", + "from": "async@^1.4.0", + "resolved": "https://registry.npmjs.org/async/-/async-1.4.2.tgz" + } + } + }, + "json-stringify-safe": { + "version": "5.0.1", + "from": "json-stringify-safe@~5.0.0", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" + }, + "mime-types": { + "version": "2.1.7", + "from": "mime-types@~2.1.2", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.7.tgz", + "dependencies": { + "mime-db": { + "version": "1.19.0", + "from": "mime-db@~1.19.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.19.0.tgz" + } + } + }, + "node-uuid": { + "version": "1.4.3", + "from": "node-uuid@~1.4.0", + "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" + }, + "qs": { + "version": "5.1.0", + "from": "qs@~5.1.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-5.1.0.tgz" + }, + "tunnel-agent": { + "version": "0.4.1", + "from": "tunnel-agent@~0.4.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.1.tgz" + }, + "tough-cookie": { + "version": "2.1.0", + "from": "tough-cookie@>=0.12.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.1.0.tgz" + }, + "http-signature": { + "version": "0.11.0", + "from": "http-signature@~0.11.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.11.0.tgz", + "dependencies": { + "assert-plus": { + "version": "0.1.5", + "from": "assert-plus@^0.1.5", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" + }, + "asn1": { + "version": "0.1.11", + "from": "asn1@0.1.11", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz" + }, + "ctype": { + "version": "0.5.3", + "from": "ctype@0.5.3", + "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz" + } + } + }, + "oauth-sign": { + "version": "0.8.0", + "from": "oauth-sign@~0.8.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.8.0.tgz" + }, + "hawk": { + "version": "3.1.0", + "from": "hawk@~3.1.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.0.tgz", + "dependencies": { + "hoek": { + "version": "2.16.3", + "from": "hoek@2.x.x", + "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" + }, + "boom": { + "version": "2.9.0", + "from": "boom@^2.8.x", + "resolved": "https://registry.npmjs.org/boom/-/boom-2.9.0.tgz" + }, + "cryptiles": { + "version": "2.0.5", + "from": "cryptiles@2.x.x", + "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" + }, + "sntp": { + "version": "1.0.9", + "from": "sntp@1.x.x", + "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" + } + } + }, + "aws-sign2": { + "version": "0.5.0", + "from": "aws-sign2@~0.5.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz" + }, + "stringstream": { + "version": "0.0.4", + "from": "stringstream@~0.0.4", + "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.4.tgz" + }, + "combined-stream": { + "version": "1.0.5", + "from": "combined-stream@~1.0.1", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.5.tgz", + "dependencies": { + "delayed-stream": { + "version": "1.0.0", + "from": "delayed-stream@~1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" + } + } + }, + "isstream": { + "version": "0.1.2", + "from": "isstream@~0.1.1", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" + }, + "har-validator": { + "version": "1.8.0", + "from": "har-validator@^1.6.1", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz", + "dependencies": { + "bluebird": { + "version": "2.10.2", + "from": "bluebird@^2.9.30", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" + }, + "chalk": { + "version": "1.1.1", + "from": "chalk@^1.0.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", + "dependencies": { + "ansi-styles": { + "version": "2.1.0", + "from": "ansi-styles@^2.1.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" + }, + "escape-string-regexp": { + "version": "1.0.3", + "from": "escape-string-regexp@^1.0.2", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz" + }, + "has-ansi": { + "version": "2.0.0", + "from": "has-ansi@^2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@^2.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@^3.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@^2.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + }, + "supports-color": { + "version": "2.0.0", + "from": "supports-color@^2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" + } + } + }, + "commander": { + "version": "2.8.1", + "from": "commander@^2.8.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.8.1.tgz", + "dependencies": { + "graceful-readlink": { + "version": "1.0.1", + "from": "graceful-readlink@>= 1.0.0", + "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" + } + } + }, + "is-my-json-valid": { + "version": "2.12.2", + "from": "is-my-json-valid@^2.12.0", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.2.tgz", + "dependencies": { + "generate-function": { + "version": "2.0.0", + "from": "generate-function@^2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" + }, + "generate-object-property": { + "version": "1.2.0", + "from": "generate-object-property@^1.1.0", + "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", + "dependencies": { + "is-property": { + "version": "1.0.2", + "from": "is-property@^1.0.0", + "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" + } + } + }, + "jsonpointer": { + "version": "2.0.0", + "from": "jsonpointer@2.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" + }, + "xtend": { + "version": "4.0.0", + "from": "xtend@^4.0.0", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.0.tgz" + } + } + } + } + } + } + }, + "semver": { + "version": "5.0.3", + "from": "semver@~5.0.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" + }, + "tar": { + "version": "2.2.1", + "from": "tar@~2.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.1.tgz", + "dependencies": { + "block-stream": { + "version": "0.0.8", + "from": "block-stream@*", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.8.tgz" + }, + "fstream": { + "version": "1.0.8", + "from": "fstream@^1.0.2", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.8.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@^4.1.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "tar-pack": { + "version": "2.0.0", + "from": "tar-pack@~2.0.0", + "resolved": "https://registry.npmjs.org/tar-pack/-/tar-pack-2.0.0.tgz", + "dependencies": { + "uid-number": { + "version": "0.0.3", + "from": "uid-number@0.0.3", + "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.3.tgz" + }, + "once": { + "version": "1.1.1", + "from": "once@~1.1.1", + "resolved": "https://registry.npmjs.org/once/-/once-1.1.1.tgz" + }, + "debug": { + "version": "0.7.4", + "from": "debug@~0.7.2", + "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz" + }, + "rimraf": { + "version": "2.2.8", + "from": "rimraf@~2.2.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz" + }, + "fstream": { + "version": "0.1.31", + "from": "fstream@~0.1.22", + "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", + "dependencies": { + "graceful-fs": { + "version": "3.0.8", + "from": "graceful-fs@~3.0.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "tar": { + "version": "0.1.20", + "from": "tar@~0.1.17", + "resolved": "https://registry.npmjs.org/tar/-/tar-0.1.20.tgz", + "dependencies": { + "block-stream": { + "version": "0.0.8", + "from": "block-stream@*", + "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.8.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@2", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "fstream-ignore": { + "version": "0.0.7", + "from": "fstream-ignore@0.0.7", + "resolved": "https://registry.npmjs.org/fstream-ignore/-/fstream-ignore-0.0.7.tgz", + "dependencies": { + "minimatch": { + "version": "0.2.14", + "from": "minimatch@~0.2.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "dependencies": { + "lru-cache": { + "version": "2.7.0", + "from": "lru-cache@2", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" + }, + "sigmund": { + "version": "1.0.1", + "from": "sigmund@~1.0.0", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "readable-stream": { + "version": "1.0.33", + "from": "readable-stream@~1.0.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@~0.10.x", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "graceful-fs": { + "version": "1.2.3", + "from": "graceful-fs@1.2", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" + } + } + }, + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@~0.5.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "rc": { + "version": "1.1.2", + "from": "rc@~1.1.0", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.1.2.tgz", + "dependencies": { + "minimist": { + "version": "1.2.0", + "from": "minimist@^1.1.2", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz" + }, + "deep-extend": { + "version": "0.2.11", + "from": "deep-extend@~0.2.5", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz" + }, + "strip-json-comments": { + "version": "0.1.3", + "from": "strip-json-comments@0.1.x", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz" + }, + "ini": { + "version": "1.3.4", + "from": "ini@~1.3.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" + } + } + }, + "rimraf": { + "version": "2.4.3", + "from": "rimraf@~2.4.0", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz", + "dependencies": { + "glob": { + "version": "5.0.15", + "from": "glob@^5.0.14", + "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@^1.0.4", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@1", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@~2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "3.0.0", + "from": "minimatch@2 || 3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@^1.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.0", + "from": "balanced-match@^0.2.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.0.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.3.2", + "from": "once@^1.3.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@1", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@^1.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + } + } + } + } + } + } + } + } + } + } + }, + "debug": { + "version": "2.2.0", + "from": "debug@>=2.2.0 <3.0.0", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", + "dependencies": { + "ms": { + "version": "0.7.1", + "from": "ms@0.7.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" + } + } + }, + "es6-promise": { + "version": "3.0.2", + "from": "es6-promise@>=3.0.2 <4.0.0", + "resolved": "https://registry.npmjs.org/es6-promise/-/es6-promise-3.0.2.tgz" + }, + "lodash.defaults": { + "version": "3.1.2", + "from": "lodash.defaults@>=3.1.2 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-3.1.2.tgz", + "dependencies": { + "lodash.assign": { + "version": "3.2.0", + "from": "lodash.assign@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.assign/-/lodash.assign-3.2.0.tgz", + "dependencies": { + "lodash._baseassign": { + "version": "3.2.0", + "from": "lodash._baseassign@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz", + "dependencies": { + "lodash._basecopy": { + "version": "3.0.1", + "from": "lodash._basecopy@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._basecopy/-/lodash._basecopy-3.0.1.tgz" + } + } + }, + "lodash._createassigner": { + "version": "3.1.1", + "from": "lodash._createassigner@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._createassigner/-/lodash._createassigner-3.1.1.tgz", + "dependencies": { + "lodash._bindcallback": { + "version": "3.0.1", + "from": "lodash._bindcallback@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._bindcallback/-/lodash._bindcallback-3.0.1.tgz" + }, + "lodash._isiterateecall": { + "version": "3.0.9", + "from": "lodash._isiterateecall@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._isiterateecall/-/lodash._isiterateecall-3.0.9.tgz" + } + } + }, + "lodash.keys": { + "version": "3.1.2", + "from": "lodash.keys@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.keys/-/lodash.keys-3.1.2.tgz", + "dependencies": { + "lodash._getnative": { + "version": "3.9.1", + "from": "lodash._getnative@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash._getnative/-/lodash._getnative-3.9.1.tgz" + }, + "lodash.isarguments": { + "version": "3.0.4", + "from": "lodash.isarguments@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.0.4.tgz" + }, + "lodash.isarray": { + "version": "3.0.4", + "from": "lodash.isarray@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.isarray/-/lodash.isarray-3.0.4.tgz" + } + } + } + } + }, + "lodash.restparam": { + "version": "3.6.1", + "from": "lodash.restparam@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/lodash.restparam/-/lodash.restparam-3.6.1.tgz" + } + } + }, + "minimatch": { + "version": "3.0.0", + "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.1", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.1.tgz", + "dependencies": { + "balanced-match": { + "version": "0.2.1", + "from": "balanced-match@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.2.1.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "ps-tree": { + "version": "1.0.1", + "from": "ps-tree@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/ps-tree/-/ps-tree-1.0.1.tgz", + "dependencies": { + "event-stream": { + "version": "3.3.2", + "from": "event-stream@>=3.3.0 <3.4.0", + "resolved": "https://registry.npmjs.org/event-stream/-/event-stream-3.3.2.tgz", + "dependencies": { + "through": { + "version": "2.3.8", + "from": "through@>=2.3.1 <2.4.0", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz" + }, + "duplexer": { + "version": "0.1.1", + "from": "duplexer@>=0.1.1 <0.2.0", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.1.tgz" + }, + "from": { + "version": "0.1.3", + "from": "from@>=0.0.0 <1.0.0", + "resolved": "https://registry.npmjs.org/from/-/from-0.1.3.tgz" + }, + "map-stream": { + "version": "0.1.0", + "from": "map-stream@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/map-stream/-/map-stream-0.1.0.tgz" + }, + "pause-stream": { + "version": "0.0.11", + "from": "pause-stream@0.0.11", + "resolved": "https://registry.npmjs.org/pause-stream/-/pause-stream-0.0.11.tgz" + }, + "split": { + "version": "0.3.3", + "from": "split@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/split/-/split-0.3.3.tgz" + }, + "stream-combiner": { + "version": "0.0.4", + "from": "stream-combiner@>=0.0.4 <0.1.0", + "resolved": "https://registry.npmjs.org/stream-combiner/-/stream-combiner-0.0.4.tgz" + } + } + } + } + }, + "touch": { + "version": "1.0.0", + "from": "touch@1.0.0", + "resolved": "https://registry.npmjs.org/touch/-/touch-1.0.0.tgz", + "dependencies": { + "nopt": { + "version": "1.0.10", + "from": "nopt@>=1.0.10 <1.1.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz", + "dependencies": { + "abbrev": { + "version": "1.0.7", + "from": "abbrev@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.0.7.tgz" + } + } + } + } + }, + "undefsafe": { + "version": "0.0.3", + "from": "undefsafe@0.0.3", + "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-0.0.3.tgz" + }, + "update-notifier": { + "version": "0.5.0", + "from": "update-notifier@0.5.0", + "resolved": "https://registry.npmjs.org/update-notifier/-/update-notifier-0.5.0.tgz", + "dependencies": { + "configstore": { + "version": "1.3.0", + "from": "configstore@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-1.3.0.tgz", + "dependencies": { + "graceful-fs": { + "version": "4.1.2", + "from": "graceful-fs@>=4.1.2 <5.0.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" + }, + "mkdirp": { + "version": "0.5.1", + "from": "mkdirp@>=0.5.0 <0.6.0", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "dependencies": { + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + } + } + }, + "object-assign": { + "version": "4.0.1", + "from": "object-assign@>=4.0.1 <5.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.0.1.tgz" + }, + "os-tmpdir": { + "version": "1.0.1", + "from": "os-tmpdir@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.1.tgz" + }, + "osenv": { + "version": "0.1.3", + "from": "osenv@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.3.tgz", + "dependencies": { + "os-homedir": { + "version": "1.0.1", + "from": "os-homedir@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" + } + } + }, + "uuid": { + "version": "2.0.1", + "from": "uuid@>=2.0.1 <3.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.1.tgz" + }, + "write-file-atomic": { + "version": "1.1.3", + "from": "write-file-atomic@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-1.1.3.tgz", + "dependencies": { + "slide": { + "version": "1.1.6", + "from": "slide@>=1.1.5 <2.0.0", + "resolved": "https://registry.npmjs.org/slide/-/slide-1.1.6.tgz" + } + } + }, + "xdg-basedir": { + "version": "2.0.0", + "from": "xdg-basedir@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/xdg-basedir/-/xdg-basedir-2.0.0.tgz", + "dependencies": { + "os-homedir": { + "version": "1.0.1", + "from": "os-homedir@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.1.tgz" + } + } + } + } + }, + "is-npm": { + "version": "1.0.0", + "from": "is-npm@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-1.0.0.tgz" + }, + "latest-version": { + "version": "1.0.1", + "from": "latest-version@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-1.0.1.tgz", + "dependencies": { + "package-json": { + "version": "1.2.0", + "from": "package-json@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-1.2.0.tgz", + "dependencies": { + "got": { + "version": "3.3.1", + "from": "got@>=3.2.0 <4.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-3.3.1.tgz", + "dependencies": { + "duplexify": { + "version": "3.4.2", + "from": "duplexify@>=3.2.0 <4.0.0", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.4.2.tgz", + "dependencies": { + "end-of-stream": { + "version": "1.0.0", + "from": "end-of-stream@1.0.0", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.0.0.tgz", + "dependencies": { + "once": { + "version": "1.3.2", + "from": "once@>=1.3.0 <1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.2.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + } + } + }, + "readable-stream": { + "version": "2.0.4", + "from": "readable-stream@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.4.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + } + } + } + } + }, + "infinity-agent": { + "version": "2.0.3", + "from": "infinity-agent@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/infinity-agent/-/infinity-agent-2.0.3.tgz" + }, + "is-redirect": { + "version": "1.0.0", + "from": "is-redirect@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-redirect/-/is-redirect-1.0.0.tgz" + }, + "is-stream": { + "version": "1.0.1", + "from": "is-stream@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.0.1.tgz" + }, + "lowercase-keys": { + "version": "1.0.0", + "from": "lowercase-keys@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz" + }, + "nested-error-stacks": { + "version": "1.0.1", + "from": "nested-error-stacks@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/nested-error-stacks/-/nested-error-stacks-1.0.1.tgz", + "dependencies": { + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + } + } + }, + "object-assign": { + "version": "3.0.0", + "from": "object-assign@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-3.0.0.tgz" + }, + "prepend-http": { + "version": "1.0.3", + "from": "prepend-http@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.3.tgz" + }, + "read-all-stream": { + "version": "3.0.1", + "from": "read-all-stream@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/read-all-stream/-/read-all-stream-3.0.1.tgz", + "dependencies": { + "pinkie-promise": { + "version": "1.0.0", + "from": "pinkie-promise@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-1.0.0.tgz", + "dependencies": { + "pinkie": { + "version": "1.0.0", + "from": "pinkie@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-1.0.0.tgz" + } + } + }, + "readable-stream": { + "version": "2.0.4", + "from": "readable-stream@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.4.tgz", + "dependencies": { + "core-util-is": { + "version": "1.0.1", + "from": "core-util-is@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.1 <2.1.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "isarray": { + "version": "0.0.1", + "from": "isarray@0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" + }, + "process-nextick-args": { + "version": "1.0.3", + "from": "process-nextick-args@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.3.tgz" + }, + "string_decoder": { + "version": "0.10.31", + "from": "string_decoder@>=0.10.0 <0.11.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" + }, + "util-deprecate": { + "version": "1.0.2", + "from": "util-deprecate@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" + } + } + } + } + }, + "timed-out": { + "version": "2.0.0", + "from": "timed-out@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-2.0.0.tgz" + } + } + }, + "registry-url": { + "version": "3.0.3", + "from": "registry-url@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-3.0.3.tgz", + "dependencies": { + "rc": { + "version": "1.1.2", + "from": "rc@>=1.0.1 <2.0.0", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.1.2.tgz", + "dependencies": { + "deep-extend": { + "version": "0.2.11", + "from": "deep-extend@>=0.2.5 <0.3.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.2.11.tgz" + }, + "strip-json-comments": { + "version": "0.1.3", + "from": "strip-json-comments@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-0.1.3.tgz" + }, + "ini": { + "version": "1.3.4", + "from": "ini@>=1.3.0 <1.4.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" + } + } + } + } + } + } + } + } + }, + "repeating": { + "version": "1.1.3", + "from": "repeating@>=1.1.2 <2.0.0", + "resolved": "https://registry.npmjs.org/repeating/-/repeating-1.1.3.tgz", + "dependencies": { + "is-finite": { + "version": "1.0.1", + "from": "is-finite@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.1.tgz", + "dependencies": { + "number-is-nan": { + "version": "1.0.0", + "from": "number-is-nan@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.0.tgz" + } + } + } + } + }, + "semver-diff": { + "version": "2.0.0", + "from": "semver-diff@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-2.0.0.tgz", + "dependencies": { + "semver": { + "version": "4.3.6", + "from": "semver@>=4.0.0 <5.0.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" + } + } + }, + "string-length": { + "version": "1.0.1", + "from": "string-length@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-1.0.1.tgz", + "dependencies": { + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", + "dependencies": { + "ansi-regex": { + "version": "2.0.0", + "from": "ansi-regex@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" + } + } + } + } + } + } + } + } + }, + "rimraf": { + "version": "2.4.3", + "from": "rimraf@2.4.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz" + }, + "semver": { + "version": "5.0.3", + "from": "semver@5.0.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" + }, + "shelljs": { + "version": "0.5.3", + "from": "shelljs@0.5.3", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz" + }, + "strip-json-comments": { + "version": "1.0.4", + "from": "strip-json-comments@1.0.4", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz" + } + } + }, + "cz-conventional-changelog": { + "version": "1.1.4", + "from": "cz-conventional-changelog@*", + "resolved": "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-1.1.4.tgz", + "dependencies": { + "word-wrap": { + "version": "1.1.0", + "from": "word-wrap@>=1.0.3 <2.0.0", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.1.0.tgz" + } + } + }, "dgeni": { "version": "0.4.1", "from": "https://registry.npmjs.org/dgeni/-/dgeni-0.4.1.tgz", @@ -3487,96 +8298,96 @@ "dependencies": { "dependency-graph": { "version": "0.1.0", - "from": "dependency-graph@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.1.0.tgz", "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.1.0.tgz", "dependencies": { "underscore": { "version": "1.4.4", - "from": "underscore@1.4.4", + "from": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz" } } }, "di": { "version": "0.0.1", - "from": "di@0.0.1", + "from": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz" }, "optimist": { "version": "0.6.1", - "from": "optimist@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { "version": "0.0.3", - "from": "wordwrap@>=0.0.2 <0.1.0", + "from": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" }, "minimist": { "version": "0.0.10", - "from": "minimist@>=0.0.1 <0.1.0", + "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" } } }, "q": { "version": "0.9.7", - "from": "q@>=0.9.7 <0.10.0", + "from": "https://registry.npmjs.org/q/-/q-0.9.7.tgz", "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz" }, "validate.js": { "version": "0.2.0", - "from": "validate.js@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/validate.js/-/validate.js-0.2.0.tgz", "resolved": "https://registry.npmjs.org/validate.js/-/validate.js-0.2.0.tgz" }, "winston": { "version": "0.7.3", - "from": "winston@>=0.7.2 <0.8.0", + "from": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "resolved": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "dependencies": { "async": { "version": "0.2.10", - "from": "async@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "colors": { "version": "0.6.2", - "from": "colors@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz" }, "cycle": { "version": "1.0.3", - "from": "cycle@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz" }, "eyes": { "version": "0.1.8", - "from": "eyes@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz" }, "pkginfo": { "version": "0.3.0", - "from": "pkginfo@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz", "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz" }, "request": { "version": "2.16.6", - "from": "request@>=2.16.0 <2.17.0", + "from": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "resolved": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "dependencies": { "form-data": { "version": "0.0.10", - "from": "form-data@>=0.0.3 <0.1.0", + "from": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "dependencies": { "combined-stream": { "version": "0.0.7", - "from": "combined-stream@>=0.0.4 <0.1.0", + "from": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", - "from": "delayed-stream@0.0.5", + "from": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" } } @@ -3585,81 +8396,81 @@ }, "mime": { "version": "1.2.11", - "from": "mime@>=1.2.7 <1.3.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "hawk": { "version": "0.10.2", - "from": "hawk@>=0.10.2 <0.11.0", + "from": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "resolved": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "dependencies": { "hoek": { "version": "0.7.6", - "from": "hoek@>=0.7.0 <0.8.0", + "from": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz", "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz" }, "boom": { "version": "0.3.8", - "from": "boom@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz", "resolved": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz" }, "cryptiles": { "version": "0.1.3", - "from": "cryptiles@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz" }, "sntp": { "version": "0.1.4", - "from": "sntp@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz", "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz" } } }, "node-uuid": { "version": "1.4.3", - "from": "node-uuid@>=1.4.0 <1.5.0", + "from": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" }, "cookie-jar": { "version": "0.2.0", - "from": "cookie-jar@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz", "resolved": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz" }, "aws-sign": { "version": "0.2.0", - "from": "aws-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz" }, "oauth-sign": { "version": "0.2.0", - "from": "oauth-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz" }, "forever-agent": { "version": "0.2.0", - "from": "forever-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz" }, "tunnel-agent": { "version": "0.2.0", - "from": "tunnel-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz" }, "json-stringify-safe": { "version": "3.0.0", - "from": "json-stringify-safe@>=3.0.0 <3.1.0", + "from": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz" }, "qs": { "version": "0.5.6", - "from": "qs@>=0.5.4 <0.6.0", + "from": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz" } } }, "stack-trace": { "version": "0.0.9", - "from": "stack-trace@>=0.0.0 <0.1.0", + "from": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz" } } @@ -3669,20 +8480,21 @@ "dgeni-packages": { "version": "0.10.19", "from": "dgeni-packages@0.10.19", + "resolved": "https://registry.npmjs.org/dgeni-packages/-/dgeni-packages-0.10.19.tgz", "dependencies": { "catharsis": { "version": "0.8.7", - "from": "catharsis@>=0.8.1 <0.9.0", + "from": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", "dependencies": { "underscore-contrib": { "version": "0.3.0", - "from": "underscore-contrib@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", "resolved": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", "dependencies": { "underscore": { "version": "1.6.0", - "from": "underscore@1.6.0", + "from": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz" } } @@ -3691,141 +8503,141 @@ }, "change-case": { "version": "2.3.0", - "from": "change-case@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", "resolved": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", "dependencies": { "camel-case": { "version": "1.1.2", - "from": "camel-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/camel-case/-/camel-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.1.2.tgz" }, "constant-case": { "version": "1.1.1", - "from": "constant-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz" }, "dot-case": { "version": "1.1.1", - "from": "dot-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz" }, "is-lower-case": { "version": "1.1.1", - "from": "is-lower-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz" }, "is-upper-case": { "version": "1.1.1", - "from": "is-upper-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz" }, "lower-case": { "version": "1.1.2", - "from": "lower-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz" }, "lower-case-first": { "version": "1.0.0", - "from": "lower-case-first@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz", "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz" }, "param-case": { "version": "1.1.1", - "from": "param-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz" }, "pascal-case": { "version": "1.1.1", - "from": "pascal-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz" }, "path-case": { "version": "1.1.1", - "from": "path-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz" }, "sentence-case": { "version": "1.1.2", - "from": "sentence-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz" }, "snake-case": { "version": "1.1.1", - "from": "snake-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz" }, "swap-case": { "version": "1.1.1", - "from": "swap-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz" }, "title-case": { "version": "1.1.1", - "from": "title-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz" }, "upper-case": { "version": "1.1.2", - "from": "upper-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz" }, "upper-case-first": { "version": "1.1.1", - "from": "upper-case-first@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz", "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz" } } }, "esprima": { "version": "1.2.5", - "from": "esprima@>=1.0.4 <2.0.0", + "from": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz", "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz" }, "estraverse": { "version": "1.9.3", - "from": "estraverse@>=1.5.1 <2.0.0", + "from": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz" }, "glob": { "version": "3.2.11", - "from": "glob@>=3.2.8 <3.3.0", + "from": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "htmlparser2": { "version": "3.8.3", - "from": "htmlparser2@>=3.7.3 <4.0.0", + "from": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "dependencies": { "domhandler": { "version": "2.3.0", - "from": "domhandler@>=2.3.0 <2.4.0", + "from": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz" }, "domutils": { "version": "1.5.1", - "from": "domutils@>=1.5.0 <1.6.0", + "from": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "dependencies": { "dom-serializer": { "version": "0.1.0", - "from": "dom-serializer@>=0.0.0 <1.0.0", + "from": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", "dependencies": { "domelementtype": { "version": "1.1.3", - "from": "domelementtype@>=1.1.1 <1.2.0", + "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz" }, "entities": { "version": "1.1.1", - "from": "entities@>=1.1.1 <1.2.0", + "from": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz" } } @@ -3834,137 +8646,137 @@ }, "domelementtype": { "version": "1.3.0", - "from": "domelementtype@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz" }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.0 <1.2.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "entities": { "version": "1.0.0", - "from": "entities@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz" } } }, "minimatch": { "version": "0.3.0", - "from": "minimatch@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", "dependencies": { "lru-cache": { "version": "2.6.5", - "from": "lru-cache@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz" }, "sigmund": { "version": "1.0.1", - "from": "sigmund@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "nunjucks": { "version": "1.3.4", - "from": "nunjucks@>=1.2.0 <2.0.0", + "from": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", "dependencies": { "optimist": { "version": "0.6.1", - "from": "optimist@*", + "from": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { "version": "0.0.3", - "from": "wordwrap@>=0.0.2 <0.1.0", + "from": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" }, "minimist": { "version": "0.0.10", - "from": "minimist@>=0.0.1 <0.1.0", + "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" } } }, "chokidar": { "version": "0.12.6", - "from": "chokidar@>=0.12.5 <0.13.0", + "from": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", "dependencies": { "readdirp": { "version": "1.3.0", - "from": "readdirp@>=1.3.0 <1.4.0", + "from": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", "dependencies": { "graceful-fs": { "version": "2.0.3", - "from": "graceful-fs@>=2.0.0 <2.1.0", + "from": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz" }, "minimatch": { "version": "0.2.14", - "from": "minimatch@>=0.2.12 <0.3.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "dependencies": { "lru-cache": { "version": "2.6.5", - "from": "lru-cache@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz" }, "sigmund": { "version": "1.0.1", - "from": "sigmund@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26-2 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -3973,17 +8785,17 @@ }, "async-each": { "version": "0.1.6", - "from": "async-each@>=0.1.5 <0.2.0", + "from": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz", "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" }, "fsevents": { "version": "0.3.8", - "from": "fsevents@>=0.3.1 <0.4.0", + "from": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "dependencies": { "nan": { "version": "2.0.5", - "from": "nan@>=2.0.2 <3.0.0", + "from": "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz" } } @@ -3994,42 +8806,42 @@ }, "q-io": { "version": "1.10.9", - "from": "q-io@>=1.10.9 <1.11.0", + "from": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", "resolved": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", "dependencies": { "q": { "version": "0.9.7", - "from": "q@>=0.9.7 <0.10.0", + "from": "https://registry.npmjs.org/q/-/q-0.9.7.tgz", "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz" }, "qs": { "version": "0.1.0", - "from": "qs@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz" }, "url2": { "version": "0.0.0", - "from": "url2@>=0.0.0 <0.1.0", + "from": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz", "resolved": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz" }, "mime": { "version": "1.2.11", - "from": "mime@>=1.2.11 <1.3.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "mimeparse": { "version": "0.1.4", - "from": "mimeparse@>=0.1.4 <0.2.0", + "from": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz", "resolved": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz" }, "collections": { "version": "0.2.2", - "from": "collections@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", "resolved": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", "dependencies": { "weak-map": { "version": "1.0.0", - "from": "weak-map@1.0.0", + "from": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz", "resolved": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz" } } @@ -4038,62 +8850,62 @@ }, "semver": { "version": "4.3.6", - "from": "semver@>=4.3.4 <5.0.0", + "from": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" }, "shelljs": { "version": "0.5.3", - "from": "shelljs@>=0.5.0 <0.6.0", + "from": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz" }, "winston": { "version": "0.7.3", - "from": "winston@>=0.7.2 <0.8.0", + "from": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "resolved": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "dependencies": { "async": { "version": "0.2.10", - "from": "async@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "colors": { "version": "0.6.2", - "from": "colors@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz" }, "cycle": { "version": "1.0.3", - "from": "cycle@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz" }, "eyes": { "version": "0.1.8", - "from": "eyes@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz" }, "pkginfo": { "version": "0.3.0", - "from": "pkginfo@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz", "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz" }, "request": { "version": "2.16.6", - "from": "request@>=2.16.0 <2.17.0", + "from": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "resolved": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "dependencies": { "form-data": { "version": "0.0.10", - "from": "form-data@>=0.0.3 <0.1.0", + "from": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "dependencies": { "combined-stream": { "version": "0.0.7", - "from": "combined-stream@>=0.0.4 <0.1.0", + "from": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", - "from": "delayed-stream@0.0.5", + "from": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" } } @@ -4102,81 +8914,81 @@ }, "mime": { "version": "1.2.11", - "from": "mime@>=1.2.7 <1.3.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "hawk": { "version": "0.10.2", - "from": "hawk@>=0.10.2 <0.11.0", + "from": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "resolved": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "dependencies": { "hoek": { "version": "0.7.6", - "from": "hoek@>=0.7.0 <0.8.0", + "from": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz", "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz" }, "boom": { "version": "0.3.8", - "from": "boom@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz", "resolved": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz" }, "cryptiles": { "version": "0.1.3", - "from": "cryptiles@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz" }, "sntp": { "version": "0.1.4", - "from": "sntp@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz", "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz" } } }, "node-uuid": { "version": "1.4.3", - "from": "node-uuid@>=1.4.0 <1.5.0", + "from": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" }, "cookie-jar": { "version": "0.2.0", - "from": "cookie-jar@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz", "resolved": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz" }, "aws-sign": { "version": "0.2.0", - "from": "aws-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz" }, "oauth-sign": { "version": "0.2.0", - "from": "oauth-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz" }, "forever-agent": { "version": "0.2.0", - "from": "forever-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz" }, "tunnel-agent": { "version": "0.2.0", - "from": "tunnel-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz" }, "json-stringify-safe": { "version": "3.0.0", - "from": "json-stringify-safe@>=3.0.0 <3.1.0", + "from": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz" }, "qs": { "version": "0.5.6", - "from": "qs@>=0.5.4 <0.6.0", + "from": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz" } } }, "stack-trace": { "version": "0.0.9", - "from": "stack-trace@>=0.0.0 <0.1.0", + "from": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz" } } @@ -5803,7 +10615,7 @@ "dependencies": { "wrappy": { "version": "1.0.1", - "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", + "from": "wrappy@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } @@ -5820,7 +10632,7 @@ "dependencies": { "wrappy": { "version": "1.0.1", - "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", + "from": "wrappy@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } @@ -5991,7 +10803,7 @@ }, "string_decoder": { "version": "0.10.31", - "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "from": "string_decoder@>=0.10.0 <0.11.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { @@ -7319,7 +12131,7 @@ }, "string_decoder": { "version": "0.10.31", - "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "from": "string_decoder@>=0.10.0 <0.11.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { diff --git a/package.json b/package.json index d1a44e26bb61..1bbf2fe55a11 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,8 @@ "engineStrict": true, "scripts": { "preinstall": "node scripts/npm/check-node-modules.js --purge", - "postinstall": "node scripts/npm/copy-npm-shrinkwrap.js" + "postinstall": "node scripts/npm/copy-npm-shrinkwrap.js", + "commit": "git-cz" }, "devDependencies": { "angular-benchpress": "0.x.x", @@ -24,6 +25,8 @@ "browserstacktunnel-wrapper": "~1.3.1", "canonical-path": "0.0.2", "cheerio": "^0.17.0", + "commitizen": "^2.3.0", + "cz-conventional-changelog": "^1.1.4", "dgeni": "^0.4.0", "dgeni-packages": "^0.10.0", "event-stream": "~3.1.0", @@ -80,5 +83,10 @@ "url": "https://github.com/angular/angular.js/blob/master/LICENSE" } ], - "dependencies": {} + "dependencies": {}, + "config": { + "commitizen": { + "path": "node_modules/cz-conventional-changelog" + } + } } From 3fa9aba0ccf11e3383cb030ef537614c162f379a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Sat, 31 Oct 2015 20:15:59 +0000 Subject: [PATCH 078/354] chore(package.json): update dgeni-packages to 0.11.0 --- npm-shrinkwrap.clean.json | 18 ++-- npm-shrinkwrap.json | 222 +++++++++++++++++++------------------- package.json | 2 +- 3 files changed, 121 insertions(+), 121 deletions(-) diff --git a/npm-shrinkwrap.clean.json b/npm-shrinkwrap.clean.json index af9e09f46308..d77137f88000 100644 --- a/npm-shrinkwrap.clean.json +++ b/npm-shrinkwrap.clean.json @@ -5510,7 +5510,7 @@ } }, "dgeni-packages": { - "version": "0.10.19", + "version": "0.11.0", "dependencies": { "catharsis": { "version": "0.8.7", @@ -5529,7 +5529,7 @@ "version": "2.3.0", "dependencies": { "camel-case": { - "version": "1.1.2" + "version": "1.2.0" }, "constant-case": { "version": "1.1.1" @@ -5578,11 +5578,11 @@ } } }, - "esprima": { - "version": "1.2.5" + "espree": { + "version": "2.2.5" }, "estraverse": { - "version": "1.9.3" + "version": "4.1.1" }, "glob": { "version": "3.2.11", @@ -5643,7 +5643,7 @@ "version": "0.3.0", "dependencies": { "lru-cache": { - "version": "2.6.5" + "version": "2.7.0" }, "sigmund": { "version": "1.0.1" @@ -5677,7 +5677,7 @@ "version": "0.2.14", "dependencies": { "lru-cache": { - "version": "2.6.5" + "version": "2.7.0" }, "sigmund": { "version": "1.0.1" @@ -5710,7 +5710,7 @@ "version": "0.3.8", "dependencies": { "nan": { - "version": "2.0.5" + "version": "2.1.0" } } } @@ -5768,7 +5768,7 @@ "version": "0.1.8" }, "pkginfo": { - "version": "0.3.0" + "version": "0.3.1" }, "request": { "version": "2.16.6", diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 2af87b4d6062..24d8e917c697 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -8478,23 +8478,23 @@ } }, "dgeni-packages": { - "version": "0.10.19", - "from": "dgeni-packages@0.10.19", - "resolved": "https://registry.npmjs.org/dgeni-packages/-/dgeni-packages-0.10.19.tgz", + "version": "0.11.0", + "from": "dgeni-packages@0.11.0", + "resolved": "https://registry.npmjs.org/dgeni-packages/-/dgeni-packages-0.11.0.tgz", "dependencies": { "catharsis": { "version": "0.8.7", - "from": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", + "from": "catharsis@>=0.8.1 <0.9.0", "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", "dependencies": { "underscore-contrib": { "version": "0.3.0", - "from": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", + "from": "underscore-contrib@>=0.3.0 <0.4.0", "resolved": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", "dependencies": { "underscore": { "version": "1.6.0", - "from": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", + "from": "underscore@1.6.0", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz" } } @@ -8503,141 +8503,141 @@ }, "change-case": { "version": "2.3.0", - "from": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", + "from": "change-case@>=2.1.0 <3.0.0", "resolved": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", "dependencies": { "camel-case": { - "version": "1.1.2", - "from": "https://registry.npmjs.org/camel-case/-/camel-case-1.1.2.tgz", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.1.2.tgz" + "version": "1.2.0", + "from": "camel-case@>=1.1.1 <2.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.0.tgz" }, "constant-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz", + "from": "constant-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz" }, "dot-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz", + "from": "dot-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz" }, "is-lower-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz", + "from": "is-lower-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz" }, "is-upper-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz", + "from": "is-upper-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz" }, "lower-case": { "version": "1.1.2", - "from": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz", + "from": "lower-case@>=1.1.1 <2.0.0", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz" }, "lower-case-first": { "version": "1.0.0", - "from": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz", + "from": "lower-case-first@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz" }, "param-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz", + "from": "param-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz" }, "pascal-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz", + "from": "pascal-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz" }, "path-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz", + "from": "path-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz" }, "sentence-case": { "version": "1.1.2", - "from": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz", + "from": "sentence-case@>=1.1.1 <2.0.0", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz" }, "snake-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz", + "from": "snake-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz" }, "swap-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz", + "from": "swap-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz" }, "title-case": { "version": "1.1.1", - "from": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz", + "from": "title-case@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz" }, "upper-case": { "version": "1.1.2", - "from": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz", + "from": "upper-case@>=1.1.1 <2.0.0", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz" }, "upper-case-first": { "version": "1.1.1", - "from": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz", + "from": "upper-case-first@>=1.1.0 <2.0.0", "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz" } } }, - "esprima": { - "version": "1.2.5", - "from": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-1.2.5.tgz" + "espree": { + "version": "2.2.5", + "from": "espree@>=2.2.3 <3.0.0", + "resolved": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz" }, "estraverse": { - "version": "1.9.3", - "from": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-1.9.3.tgz" + "version": "4.1.1", + "from": "estraverse@>=4.1.0 <5.0.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz" }, "glob": { "version": "3.2.11", - "from": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", + "from": "glob@>=3.2.8 <3.3.0", "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", "dependencies": { "inherits": { "version": "2.0.1", - "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "from": "inherits@>=2.0.0 <3.0.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "htmlparser2": { "version": "3.8.3", - "from": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", + "from": "htmlparser2@>=3.7.3 <4.0.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "dependencies": { "domhandler": { "version": "2.3.0", - "from": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", + "from": "domhandler@>=2.3.0 <2.4.0", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz" }, "domutils": { "version": "1.5.1", - "from": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", + "from": "domutils@>=1.5.0 <1.6.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "dependencies": { "dom-serializer": { "version": "0.1.0", - "from": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", + "from": "dom-serializer@>=0.0.0 <1.0.0", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", "dependencies": { "domelementtype": { "version": "1.1.3", - "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", + "from": "domelementtype@>=1.1.1 <1.2.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz" }, "entities": { "version": "1.1.1", - "from": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", + "from": "entities@>=1.1.1 <1.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz" } } @@ -8646,137 +8646,137 @@ }, "domelementtype": { "version": "1.3.0", - "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", + "from": "domelementtype@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz" }, "readable-stream": { "version": "1.1.13", - "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", + "from": "readable-stream@>=1.1.0 <1.2.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", + "from": "core-util-is@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "from": "isarray@0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "from": "string_decoder@>=0.10.0 <0.11.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "entities": { "version": "1.0.0", - "from": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", + "from": "entities@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz" } } }, "minimatch": { "version": "0.3.0", - "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", + "from": "minimatch@>=0.3.0 <0.4.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", "dependencies": { "lru-cache": { - "version": "2.6.5", - "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz" + "version": "2.7.0", + "from": "lru-cache@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" }, "sigmund": { "version": "1.0.1", - "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "from": "sigmund@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "nunjucks": { "version": "1.3.4", - "from": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", + "from": "nunjucks@>=1.2.0 <2.0.0", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", "dependencies": { "optimist": { "version": "0.6.1", - "from": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "from": "optimist@*", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { "version": "0.0.3", - "from": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "from": "wordwrap@>=0.0.2 <0.1.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" }, "minimist": { "version": "0.0.10", - "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "from": "minimist@>=0.0.1 <0.1.0", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" } } }, "chokidar": { "version": "0.12.6", - "from": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", + "from": "chokidar@>=0.12.5 <0.13.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", "dependencies": { "readdirp": { "version": "1.3.0", - "from": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", + "from": "readdirp@>=1.3.0 <1.4.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", "dependencies": { "graceful-fs": { "version": "2.0.3", - "from": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", + "from": "graceful-fs@>=2.0.0 <2.1.0", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz" }, "minimatch": { "version": "0.2.14", - "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "from": "minimatch@>=0.2.12 <0.3.0", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "dependencies": { "lru-cache": { - "version": "2.6.5", - "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.6.5.tgz" + "version": "2.7.0", + "from": "lru-cache@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" }, "sigmund": { "version": "1.0.1", - "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", + "from": "sigmund@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "readable-stream": { "version": "1.0.33", - "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", + "from": "readable-stream@>=1.0.26-2 <1.1.0", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", + "from": "core-util-is@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "from": "isarray@0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "from": "string_decoder@>=0.10.0 <0.11.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "from": "inherits@>=2.0.1 <2.1.0", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -8785,18 +8785,18 @@ }, "async-each": { "version": "0.1.6", - "from": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz", + "from": "async-each@>=0.1.5 <0.2.0", "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" }, "fsevents": { "version": "0.3.8", - "from": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", + "from": "fsevents@>=0.3.1 <0.4.0", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "dependencies": { "nan": { - "version": "2.0.5", - "from": "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.0.5.tgz" + "version": "2.1.0", + "from": "nan@>=2.0.2 <3.0.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" } } } @@ -8806,42 +8806,42 @@ }, "q-io": { "version": "1.10.9", - "from": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", + "from": "q-io@>=1.10.9 <1.11.0", "resolved": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", "dependencies": { "q": { "version": "0.9.7", - "from": "https://registry.npmjs.org/q/-/q-0.9.7.tgz", + "from": "q@>=0.9.7 <0.10.0", "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz" }, "qs": { "version": "0.1.0", - "from": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz", + "from": "qs@>=0.1.0 <0.2.0", "resolved": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz" }, "url2": { "version": "0.0.0", - "from": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz", + "from": "url2@>=0.0.0 <0.1.0", "resolved": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz" }, "mime": { "version": "1.2.11", - "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", + "from": "mime@>=1.2.11 <1.3.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "mimeparse": { "version": "0.1.4", - "from": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz", + "from": "mimeparse@>=0.1.4 <0.2.0", "resolved": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz" }, "collections": { "version": "0.2.2", - "from": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", + "from": "collections@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", "dependencies": { "weak-map": { "version": "1.0.0", - "from": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz", + "from": "weak-map@1.0.0", "resolved": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz" } } @@ -8850,62 +8850,62 @@ }, "semver": { "version": "4.3.6", - "from": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", + "from": "semver@>=4.3.4 <5.0.0", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" }, "shelljs": { "version": "0.5.3", - "from": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", + "from": "shelljs@>=0.5.0 <0.6.0", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz" }, "winston": { "version": "0.7.3", - "from": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", + "from": "winston@>=0.7.2 <0.8.0", "resolved": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "dependencies": { "async": { "version": "0.2.10", - "from": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", + "from": "async@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "colors": { "version": "0.6.2", - "from": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "from": "colors@>=0.6.0 <0.7.0", "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz" }, "cycle": { "version": "1.0.3", - "from": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", + "from": "cycle@>=1.0.0 <1.1.0", "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz" }, "eyes": { "version": "0.1.8", - "from": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", + "from": "eyes@>=0.1.0 <0.2.0", "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz" }, "pkginfo": { - "version": "0.3.0", - "from": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz", - "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.0.tgz" + "version": "0.3.1", + "from": "pkginfo@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz" }, "request": { "version": "2.16.6", - "from": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", + "from": "request@>=2.16.0 <2.17.0", "resolved": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "dependencies": { "form-data": { "version": "0.0.10", - "from": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", + "from": "form-data@>=0.0.3 <0.1.0", "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "dependencies": { "combined-stream": { "version": "0.0.7", - "from": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", + "from": "combined-stream@>=0.0.4 <0.1.0", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", - "from": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", + "from": "delayed-stream@0.0.5", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" } } @@ -8914,81 +8914,81 @@ }, "mime": { "version": "1.2.11", - "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", + "from": "mime@>=1.2.7 <1.3.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "hawk": { "version": "0.10.2", - "from": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", + "from": "hawk@>=0.10.2 <0.11.0", "resolved": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "dependencies": { "hoek": { "version": "0.7.6", - "from": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz", + "from": "hoek@>=0.7.0 <0.8.0", "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz" }, "boom": { "version": "0.3.8", - "from": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz", + "from": "boom@>=0.3.0 <0.4.0", "resolved": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz" }, "cryptiles": { "version": "0.1.3", - "from": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz", + "from": "cryptiles@>=0.1.0 <0.2.0", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz" }, "sntp": { "version": "0.1.4", - "from": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz", + "from": "sntp@>=0.1.0 <0.2.0", "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz" } } }, "node-uuid": { "version": "1.4.3", - "from": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz", + "from": "node-uuid@>=1.4.0 <1.5.0", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" }, "cookie-jar": { "version": "0.2.0", - "from": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz", + "from": "cookie-jar@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz" }, "aws-sign": { "version": "0.2.0", - "from": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz", + "from": "aws-sign@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz" }, "oauth-sign": { "version": "0.2.0", - "from": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz", + "from": "oauth-sign@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz" }, "forever-agent": { "version": "0.2.0", - "from": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz", + "from": "forever-agent@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz" }, "tunnel-agent": { "version": "0.2.0", - "from": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz", + "from": "tunnel-agent@>=0.2.0 <0.3.0", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz" }, "json-stringify-safe": { "version": "3.0.0", - "from": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz", + "from": "json-stringify-safe@>=3.0.0 <3.1.0", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz" }, "qs": { "version": "0.5.6", - "from": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz", + "from": "qs@>=0.5.4 <0.6.0", "resolved": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz" } } }, "stack-trace": { "version": "0.0.9", - "from": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz", + "from": "stack-trace@>=0.0.0 <0.1.0", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz" } } diff --git a/package.json b/package.json index 1bbf2fe55a11..7481bee600eb 100644 --- a/package.json +++ b/package.json @@ -28,7 +28,7 @@ "commitizen": "^2.3.0", "cz-conventional-changelog": "^1.1.4", "dgeni": "^0.4.0", - "dgeni-packages": "^0.10.0", + "dgeni-packages": "^0.11.0", "event-stream": "~3.1.0", "grunt": "~0.4.2", "grunt-bump": "~0.0.13", From 5b4713e43eed0a66cbea41dac7c1412ec4254c55 Mon Sep 17 00:00:00 2001 From: "Chris J. Lee" Date: Thu, 8 Oct 2015 10:43:07 -0500 Subject: [PATCH 079/354] chore(protractor-conf.js): remove dangling comma Closes #13051 --- protractor-conf.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protractor-conf.js b/protractor-conf.js index 8fad56be8828..3c3421ce780f 100644 --- a/protractor-conf.js +++ b/protractor-conf.js @@ -9,7 +9,7 @@ config.specs = [ ]; config.capabilities = { - browserName: 'chrome', + browserName: 'chrome' }; exports.config = config; From 55ad192e4ab79295ab15ecaaf8f6b9e7932a0336 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Sat, 6 Jun 2015 13:10:22 -0700 Subject: [PATCH 080/354] perf($compile): use static jquery data method to avoid creating new instances --- src/ng/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index ba0336a4b4d5..56a4bc0c385a 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -2525,7 +2525,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // Copy over user data (that includes Angular's $scope etc.). Don't copy private // data here because there's no public interface in jQuery to do that and copying over // event listeners (which is the main use of private data) wouldn't work anyway. - jqLite(newNode).data(jqLite(firstElementToRemove).data()); + jqLite.data(newNode, jqLite.data(firstElementToRemove)); // Remove data of the replaced element. We cannot just call .remove() // on the element it since that would deallocate scope that is needed From de2a56bbc80387ba0fbbcb718c2d2f8a7afc0f69 Mon Sep 17 00:00:00 2001 From: Matthew Hill Date: Wed, 15 Jul 2015 15:56:38 +0100 Subject: [PATCH 081/354] docs(angular-mocks): clarify `angular.mock.module` usage with objects Closes #12354 --- src/ngMock/angular-mocks.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 38456a4c903b..5e1522e42d3d 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -2271,8 +2271,9 @@ if (window.jasmine || window.mocha) { * @param {...(string|Function|Object)} fns any number of modules which are represented as string * aliases or as anonymous module initialization functions. The modules are used to * configure the injector. The 'ng' and 'ngMock' modules are automatically loaded. If an - * object literal is passed they will be registered as values in the module, the key being - * the module name and the value being what is returned. + * object literal is passed each key-value pair will be registered on the module via + * {@link auto.$provide $provide}.value, the key being the string name (or token) to associate + * with the value on the injector. */ window.module = angular.mock.module = function() { var moduleFns = Array.prototype.slice.call(arguments, 0); From 838cf4be3c671903796dbb69d95c0e5ac1516a06 Mon Sep 17 00:00:00 2001 From: luckylooke Date: Tue, 7 Jul 2015 12:04:41 +0200 Subject: [PATCH 082/354] fix(merge): clone elements instead of treating them like simple objects Similar fix to #11720 Closes #12286 --- src/Angular.js | 2 ++ test/AngularSpec.js | 26 ++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/src/Angular.js b/src/Angular.js index 574e85f265b6..7a1830e2333f 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -360,6 +360,8 @@ function baseExtend(dst, objs, deep) { dst[key] = new Date(src.valueOf()); } else if (isRegExp(src)) { dst[key] = new RegExp(src); + } else if (isElement(src)) { + dst[key] = src[0] ? jqLite(src).clone()[0] : jqLite(src).clone(); } else { if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {}; baseExtend(dst[key], [src], true); diff --git a/test/AngularSpec.js b/test/AngularSpec.js index d5662bb53622..3276f93398f7 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -522,6 +522,17 @@ describe('angular', function() { expect(dst.date).toBe(src.date); }); + + it('should copy elements by reference', function() { + var src = { element: document.createElement('div'), + jqObject: jqLite("

s1s2

").find("span") }; + var dst = {}; + + extend(dst, src); + + expect(dst.element).toBe(src.element); + expect(dst.jqObject).toBe(src.jqObject); + }); }); @@ -612,6 +623,21 @@ describe('angular', function() { expect(isRegExp(dst.regexp)).toBe(true); expect(dst.regexp.toString()).toBe(src.regexp.toString()); }); + + + it('should copy(clone) elements', function() { + var src = { element: document.createElement('div'), + jqObject: jqLite("

s1s2

").find("span") }; + var dst = {}; + + merge(dst, src); + + expect(dst.element).not.toBe(src.element); + expect(dst.jqObject).not.toBe(src.jqObject); + + expect(isElement(dst.element)).toBeTruthy(); + expect(isElement(dst.jqObject)).toBeTruthy(); + }); }); From 2f8db1bf01173b546a2868fc7b8b188c2383fbff Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 2 Nov 2015 19:51:53 +0000 Subject: [PATCH 083/354] fix(merge): ensure that jqlite->jqlite and DOM->DOM Previously we were wrapping DOM elements into jqlite objects when cloning and vice versa. Fixes https://github.com/angular/angular.js/pull/12286#discussion_r43656917 --- src/Angular.js | 4 +++- test/AngularSpec.js | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index 7a1830e2333f..c815837380d7 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -360,8 +360,10 @@ function baseExtend(dst, objs, deep) { dst[key] = new Date(src.valueOf()); } else if (isRegExp(src)) { dst[key] = new RegExp(src); + } else if (src.nodeName) { + dst[key] = src.cloneNode(true); } else if (isElement(src)) { - dst[key] = src[0] ? jqLite(src).clone()[0] : jqLite(src).clone(); + dst[key] = jqLite(src).clone(); } else { if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {}; baseExtend(dst[key], [src], true); diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 3276f93398f7..8bdd9539ae1d 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -636,7 +636,9 @@ describe('angular', function() { expect(dst.jqObject).not.toBe(src.jqObject); expect(isElement(dst.element)).toBeTruthy(); + expect(jqLite(dst.element)).not.toBe(dst.element); // i.e it is a DOM element expect(isElement(dst.jqObject)).toBeTruthy(); + expect(jqLite(dst.jqObject)).toBe(dst.jqObject); // i.e it is a jqLite/jquery object }); }); From 6e4464331dc00c5c2a03a3178f2ef5c65c11ee48 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 2 Nov 2015 20:40:53 +0100 Subject: [PATCH 084/354] docs(tutorial/0 - Bootstrapping): mention that the setup must be completed Closes #13106 --- docs/content/tutorial/step_00.ngdoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc index a3a913b4600c..7184d5fdd512 100644 --- a/docs/content/tutorial/step_00.ngdoc +++ b/docs/content/tutorial/step_00.ngdoc @@ -6,12 +6,14 @@
    -You are now ready to build the AngularJS phonecat app. In this step, you will become familiar -with the most important source code files, learn how to start the development servers bundled with +In this step of the tutorial, you will become familiar with the most important source code files of +the AngularJS phonecat app. You will also learn how to start the development servers bundled with angular-seed, and run the application in the browser. +Before you continue, make sure you have set up your development environment and installed all necessary +dependencies, as described in {@link tutorial/index#get-started Get Started}. -In `angular-phonecat` directory, run this command: +In the `angular-phonecat` directory, run this command: ``` git checkout -f step-0 From 2b285c75f48e3235fd13989422a7d0f60eb641f0 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 2 Nov 2015 20:45:13 +0100 Subject: [PATCH 085/354] docs(ngInclude): fix incorrect link --- src/ng/directive/ngInclude.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngInclude.js b/src/ng/directive/ngInclude.js index 9cb3d1771270..2b844b84ba3d 100644 --- a/src/ng/directive/ngInclude.js +++ b/src/ng/directive/ngInclude.js @@ -38,7 +38,7 @@ * **Note:** When using onload on SVG elements in IE11, the browser will try to call * a function with the name on the window element, which will usually throw a * "function is undefined" error. To fix this, you can instead use `data-onload` or a - * different form that {@link guide/directives#normalization matches} `onload`. + * different form that {@link guide/directive#normalization matches} `onload`. *
    * * @param {string=} autoscroll Whether `ngInclude` should call {@link ng.$anchorScroll From 8d841c3405693924b944c8bd3711580e541367eb Mon Sep 17 00:00:00 2001 From: JonyD <1000267@isep.ipp.pt> Date: Mon, 2 Nov 2015 17:35:46 +0100 Subject: [PATCH 086/354] docs(ngRepeat): fix link to MDN Closes #13226 --- src/ng/directive/ngRepeat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index 86da541df81b..51a1df5274ff 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -43,7 +43,7 @@ * Version 1.4 removed the alphabetic sorting. We now rely on the order returned by the browser * when running `for key in myObj`. It seems that browsers generally follow the strategy of providing * keys in the order in which they were defined, although there are exceptions when keys are deleted - * and reinstated. See https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/delete#Cross-browser_issues + * and reinstated. See the [MDN page on `delete` for more info](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/delete#Cross-browser_notes). * * If this is not desired, the recommended workaround is to convert your object into an array * that is sorted into the order that you prefer before providing it to `ngRepeat`. You could From d4b359f4b2e394a59400b61e84bd5e292ed4b66b Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Mon, 2 Nov 2015 20:12:12 +0000 Subject: [PATCH 087/354] test(merge): fix check on jquery object --- test/AngularSpec.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 8bdd9539ae1d..20de65c24b16 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -636,9 +636,9 @@ describe('angular', function() { expect(dst.jqObject).not.toBe(src.jqObject); expect(isElement(dst.element)).toBeTruthy(); - expect(jqLite(dst.element)).not.toBe(dst.element); // i.e it is a DOM element + expect(dst.element.nodeName).toBeDefined(); // i.e it is a DOM element expect(isElement(dst.jqObject)).toBeTruthy(); - expect(jqLite(dst.jqObject)).toBe(dst.jqObject); // i.e it is a jqLite/jquery object + expect(dst.jqObject.nodeName).toBeUndefined(dst.jqObject); // i.e it is a jqLite/jquery object }); }); From ce6a96b0d76dd2e5ab2247ca3059d284575bc6f0 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 3 Nov 2015 14:25:10 +0200 Subject: [PATCH 088/354] perf(merge): remove unnecessary wrapping of jqLite element Fixes https://github.com/angular/angular.js/commit/75292a6cb5e17d618902f7996e80eb3118eff7b0#commitcomment-14137538 Closes #13236 --- src/Angular.js | 2 +- test/AngularSpec.js | 8 +++++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index c815837380d7..2dcdd9c6b177 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -363,7 +363,7 @@ function baseExtend(dst, objs, deep) { } else if (src.nodeName) { dst[key] = src.cloneNode(true); } else if (isElement(src)) { - dst[key] = jqLite(src).clone(); + dst[key] = src.clone(); } else { if (!isObject(dst[key])) dst[key] = isArray(src) ? [] : {}; baseExtend(dst[key], [src], true); diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 20de65c24b16..0ffc93b3133e 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -626,8 +626,10 @@ describe('angular', function() { it('should copy(clone) elements', function() { - var src = { element: document.createElement('div'), - jqObject: jqLite("

    s1s2

    ").find("span") }; + var src = { + element: document.createElement('div'), + jqObject: jqLite('

    s1s2

    ').find('span') + }; var dst = {}; merge(dst, src); @@ -638,7 +640,7 @@ describe('angular', function() { expect(isElement(dst.element)).toBeTruthy(); expect(dst.element.nodeName).toBeDefined(); // i.e it is a DOM element expect(isElement(dst.jqObject)).toBeTruthy(); - expect(dst.jqObject.nodeName).toBeUndefined(dst.jqObject); // i.e it is a jqLite/jquery object + expect(dst.jqObject.nodeName).toBeUndefined(); // i.e it is a jqLite/jQuery object }); }); From ca53dfcc187effceea3dae8411696ae888c8b7ec Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 3 Nov 2015 20:58:51 +0100 Subject: [PATCH 089/354] docs(ngRepeat): add more info about watching and tracking - mention $watchCollection - highlight that track by "id" can improve render performance Related #9508 --- src/ng/directive/ngRepeat.js | 24 +++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index 51a1df5274ff..663851cc16e5 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -53,15 +53,21 @@ * * # Tracking and Duplicates * - * When the contents of the collection change, `ngRepeat` makes the corresponding changes to the DOM: + * `ngRepeat` uses {@link $rootScope.Scope#$watchCollection $watchCollection} to detect changes in + * the collection. When a change happens, ngRepeat then makes the corresponding changes to the DOM: * * * When an item is added, a new instance of the template is added to the DOM. * * When an item is removed, its template instance is removed from the DOM. * * When items are reordered, their respective templates are reordered in the DOM. * - * By default, `ngRepeat` does not allow duplicate items in arrays. This is because when - * there are duplicates, it is not possible to maintain a one-to-one mapping between collection - * items and DOM elements. + * To minimize creation of DOM elements, `ngRepeat` uses a function + * to "keep track" of all items in the collection and their corresponding DOM elements. + * For example, if an item is added to the collection, ngRepeat will know that all other items + * already have DOM elements, and will not re-render them. + * + * The default tracking function (which tracks items by their identity) does not allow + * duplicate items in arrays. This is because when there are duplicates, it is not possible + * to maintain a one-to-one mapping between collection items and DOM elements. * * If you do need to repeat duplicate items, you can substitute the default tracking behavior * with your own using the `track by` expression. @@ -74,7 +80,7 @@ *
    * ``` * - * You may use arbitrary expressions in `track by`, including references to custom functions + * You may also use arbitrary expressions in `track by`, including references to custom functions * on the scope: * ```html *
    @@ -82,10 +88,14 @@ *
    * ``` * - * If you are working with objects that have an identifier property, you can track + *
    + * If you are working with objects that have an identifier property, you should track * by the identifier instead of the whole object. Should you reload your data later, `ngRepeat` * will not have to rebuild the DOM elements for items it has already rendered, even if the - * JavaScript objects in the collection have been substituted for new ones: + * JavaScript objects in the collection have been substituted for new ones. For large collections, + * this signifincantly improves rendering performance. If you don't have a unique identifier, + * `track by $index` can also provide a performance boost. + *
    * ```html *
    * {{model.name}} From bbc2a0ae4836c0675a8887ee472de69207129f98 Mon Sep 17 00:00:00 2001 From: jody tate Date: Wed, 4 Nov 2015 12:57:06 -0800 Subject: [PATCH 090/354] docs(guide/Directives): change "it" to possessive Closes #13253 --- docs/content/guide/directive.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index fef7632cb74a..a277e5f7ee5d 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -598,7 +598,7 @@ directive logic will be put. * `element` is the jqLite-wrapped element that this directive matches. * `attrs` is a hash object with key-value pairs of normalized attribute names and their corresponding attribute values. -* `controller` is the directive's required controller instance(s) or it's own controller (if any). +* `controller` is the directive's required controller instance(s) or its own controller (if any). The exact value depends on the directive's require property. * `transcludeFn` is a transclude linking function pre-bound to the correct transclusion scope. From b0c19f8b06b003f6bcfff472c16ea1092b3b88e2 Mon Sep 17 00:00:00 2001 From: Doug Krugman Date: Thu, 5 Nov 2015 09:15:15 -0500 Subject: [PATCH 091/354] docs(guide/Concepts): remove unused `refresh` property Closes #13257 --- docs/content/guide/concepts.ngdoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index 8c2a4a0cfc80..fe1129e6125f 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -348,8 +348,7 @@ The following example shows how this is done with Angular: return { currencies: currencies, - convert: convert, - refresh: refresh + convert: convert }; }]); From b268c0b7b4810c3bd7cddebb3239ee9b3c371c53 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 6 Nov 2015 16:41:03 +0100 Subject: [PATCH 092/354] docs(changelog, migration): add BC notice for setting ngOptions as attribute Caused by 7fda214c4f65a6a06b25cf5d5aff013a364e9cef Closes #13145 --- CHANGELOG.md | 6 ++++++ docs/content/guide/migration.ngdoc | 4 ++++ 2 files changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64f55e83736f..3c6c13011aa8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1870,6 +1870,12 @@ But in practice this is not what people want and so this change iterates over pr in the order they are returned by Object.keys(obj), which is almost always the order in which the properties were defined. +- **ngOptions:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef), + +setting the ngOptions attribute expression after the element is compiled, will no longer trigger the ngOptions behavior. +This worked previously because the ngOptions logic was part of the select directive, while +it is now implemented in the ngOptions directive itself. + - **select:** due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef), the `select` directive will now use strict comparison of the `ngModel` scope value against `option` diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index a77534fc2856..b42f97673dc5 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -189,6 +189,10 @@ But in practice this is not what people want and so this change iterates over pr in the order they are returned by Object.keys(obj), which is almost always the order in which the properties were defined. +Also due to [7fda214c](https://github.com/angular/angular.js/commit/7fda214c4f65a6a06b25cf5d5aff013a364e9cef), +setting the ngOptions attribute expression after the element is compiled, will no longer trigger the ngOptions behavior. +This worked previously because the ngOptions logic was part of the select directive, while +it is now implemented in the ngOptions directive itself. ### select From ab9b021572880ce612716bd5f00bc09adff9f585 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 6 Nov 2015 17:12:50 +0100 Subject: [PATCH 093/354] docs(changelog, migration): add BC notice for ngMessages evaluation Introduced by Closes #11616 Closes #12001 --- CHANGELOG.md | 21 ++++++++++++++++++++- docs/content/guide/migration.ngdoc | 19 +++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c6c13011aa8..7d4b8343708e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1392,7 +1392,6 @@ mechanism. - **ngMessages:** due to [c9a4421f](https://github.com/angular/angular.js/commit/c9a4421fc3c97448527eadef1f42eb2f487ec2e0), - The `ngMessagesInclude` attribute is now its own directive and that must be placed as a **child** element within the element with the ngMessages directive. (Keep in mind that the former behaviour of the @@ -1415,6 +1414,26 @@ end of the container containing the ngMessages directive).
    ``` +- **ngMessages:** due to [c9a4421f](https://github.com/angular/angular.js/commit/c9a4421fc3c97448527eadef1f42eb2f487ec2e0), + +it is no longer possible to use interpolation inside the `ngMessages` attribute expression. This technique +is generally not recommended, and can easily break when a directive implementation changes. In cases +where a simple expression is not possible, you can delegate accessing the object to a function: + +```html +
    ...
    +``` +would become +```html +
    ...
    +``` +where `ctrl.getMessages()` +```javascript +ctrl.getMessages = function($index) { + return ctrl.form['field_' + $index].$error; +} +``` + - **$http:** due to [5da1256](https://github.com/angular/angular.js/commit/5da1256fc2812d5b28fb0af0de81256054856369), `transformRequest` functions can no longer modify request headers. diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index b42f97673dc5..7225a960fb26 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -170,6 +170,25 @@ other inline messages situated as children within the `ngMessages` container dir Depending on where the `ngMessagesInclude` directive is placed it will be prioritized inline with the other messages before and after it. +Also due to [c9a4421f](https://github.com/angular/angular.js/commit/c9a4421fc3c97448527eadef1f42eb2f487ec2e0), +it is no longer possible to use interpolation inside the `ngMessages` attribute expression. This technique +is generally not recommended, and can easily break when a directive implementation changes. In cases +where a simple expression is not possible, you can delegate accessing the object to a function: + +```html +
    ...
    +``` +would become +```html +
    ...
    +``` +where `ctrl.getMessages()` +```javascript +ctrl.getMessages = function($index) { + return ctrl.form['field_' + $index].$error; +} +``` + ### ngOptions The `ngOptions` directive has also been refactored and as a result some long-standing bugs From 91ef94d28473657caead93db149c055ebd7d928b Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Thu, 5 Nov 2015 22:30:55 -0800 Subject: [PATCH 094/354] refactor($compile): simplify multi element directive check Previously, we would check if an attribute indicates a multi-element directive, now we only do this check if the attribute name actually matches the multi-element name pattern. Closes #12365 --- src/ng/compile.js | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 56a4bc0c385a..3189568752c1 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1240,6 +1240,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return template.replace(/\{\{/g, startSymbol).replace(/}}/g, endSymbol); }, NG_ATTR_BINDING = /^ngAttr[A-Z]/; + var MULTI_ELEMENT_DIR_RE = /^(.+)Start$/; compile.$$addBindingInfo = debugInfoEnabled ? function $$addBindingInfo($element, binding) { var bindings = $element.data('$binding') || []; @@ -1524,13 +1525,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { }); } - var directiveNName = ngAttrName.replace(/(Start|End)$/, ''); - if (directiveIsMultiElement(directiveNName)) { - if (ngAttrName === directiveNName + 'Start') { - attrStartName = name; - attrEndName = name.substr(0, name.length - 5) + 'end'; - name = name.substr(0, name.length - 6); - } + var multiElementMatch = ngAttrName.match(MULTI_ELEMENT_DIR_RE); + if (multiElementMatch && directiveIsMultiElement(multiElementMatch[1])) { + attrStartName = name; + attrEndName = name.substr(0, name.length - 5) + 'end'; + name = name.substr(0, name.length - 6); } nName = directiveNormalize(name.toLowerCase()); From 74da03407782d679951cd8f693860cea214f2580 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 10 Nov 2015 20:51:31 +0000 Subject: [PATCH 095/354] fix($compile): fix scoping of transclusion directives inside replace directive Closes #12975 Closes #12936 Closes #13244 --- src/ng/compile.js | 33 +++++++++++++++++++------ test/ng/compileSpec.js | 56 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+), 7 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 3189568752c1..59f7861495b8 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1293,6 +1293,14 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { return function publicLinkFn(scope, cloneConnectFn, options) { assertArg(scope, 'scope'); + if (previousCompileContext && previousCompileContext.needsNewScope) { + // A parent directive did a replace and a directive on this element asked + // for transclusion, which caused us to lose a layer of element on which + // we could hold the new transclusion scope, so we will create it manually + // here. + scope = scope.$parent.$new(); + } + options = options || {}; var parentBoundTranscludeFn = options.parentBoundTranscludeFn, transcludeControllers = options.transcludeControllers, @@ -1768,7 +1776,8 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } else { $template = jqLite(jqLiteClone(compileNode)).contents(); $compileNode.empty(); // clear contents - childTranscludeFn = compile($template, transcludeFn); + childTranscludeFn = compile($template, transcludeFn, undefined, + undefined, { needsNewScope: directive.$$isolateScope || directive.$$newScope}); } } @@ -1810,8 +1819,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { var templateDirectives = collectDirectives(compileNode, [], newTemplateAttrs); var unprocessedDirectives = directives.splice(i + 1, directives.length - (i + 1)); - if (newIsolateScopeDirective) { - markDirectivesAsIsolate(templateDirectives); + if (newIsolateScopeDirective || newScopeDirective) { + // The original directive caused the current element to be replaced but this element + // also needs to have a new scope, so we need to tell the template directives + // that they would need to get their scope from further up, if they require transclusion + markDirectiveScope(templateDirectives, newIsolateScopeDirective, newScopeDirective); } directives = directives.concat(templateDirectives).concat(unprocessedDirectives); mergeTemplateAttributes(templateAttrs, newTemplateAttrs); @@ -2096,10 +2108,15 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } } - function markDirectivesAsIsolate(directives) { - // mark all directives as needing isolate scope. + // Depending upon the context in which a directive finds itself it might need to have a new isolated + // or child scope created. For instance: + // * if the directive has been pulled into a template because another directive with a higher priority + // asked for element transclusion + // * if the directive itself asks for transclusion but it is at the root of a template and the original + // element was replaced. See https://github.com/angular/angular.js/issues/12936 + function markDirectiveScope(directives, isolateScope, newScope) { for (var j = 0, jj = directives.length; j < jj; j++) { - directives[j] = inherit(directives[j], {$$isolateScope: true}); + directives[j] = inherit(directives[j], {$$isolateScope: isolateScope, $$newScope: newScope}); } } @@ -2246,7 +2263,9 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { var templateDirectives = collectDirectives(compileNode, [], tempTemplateAttrs); if (isObject(origAsyncDirective.scope)) { - markDirectivesAsIsolate(templateDirectives); + // the original directive that caused the template to be loaded async required + // an isolate scope + markDirectiveScope(templateDirectives, true); } directives = templateDirectives.concat(directives); mergeTemplateAttributes(tAttrs, tempTemplateAttrs); diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index b9ca530f8c1e..1a875840c880 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -5636,6 +5636,62 @@ describe('$compile', function() { }); }); + //see issue https://github.com/angular/angular.js/issues/12936 + it('should use the proper scope when it is on the root element of a replaced directive template', function() { + module(function() { + directive('isolate', valueFn({ + scope: {}, + replace: true, + template: '
    {{x}}
    ', + link: function(scope, element, attr, ctrl) { + scope.x = 'iso'; + } + })); + directive('trans', valueFn({ + transclude: 'content', + link: function(scope, element, attr, ctrl, $transclude) { + $transclude(function(clone) { + element.append(clone); + }); + } + })); + }); + inject(function($rootScope, $compile) { + element = $compile('')($rootScope); + $rootScope.x = 'root'; + $rootScope.$apply(); + expect(element.text()).toEqual('iso'); + }); + }); + + + //see issue https://github.com/angular/angular.js/issues/12936 + it('should use the proper scope when it is on the root element of a replaced directive template with child scope', function() { + module(function() { + directive('child', valueFn({ + scope: true, + replace: true, + template: '
    {{x}}
    ', + link: function(scope, element, attr, ctrl) { + scope.x = 'child'; + } + })); + directive('trans', valueFn({ + transclude: 'content', + link: function(scope, element, attr, ctrl, $transclude) { + $transclude(function(clone) { + element.append(clone); + }); + } + })); + }); + inject(function($rootScope, $compile) { + element = $compile('')($rootScope); + $rootScope.x = 'root'; + $rootScope.$apply(); + expect(element.text()).toEqual('child'); + }); + }); it('should not leak if two "element" transclusions are on the same element (with debug info)', function() { From 750344129edbc80090095c11f5450b6f8413010f Mon Sep 17 00:00:00 2001 From: Jakub Torbicki Date: Wed, 18 Mar 2015 10:16:14 +0100 Subject: [PATCH 096/354] fix($compile): bind all directive controllers correctly when using `bindToController` Previously only the first directive's controller would be bound correctly. Closes #11343 Closes #11345 --- src/ng/compile.js | 53 +++++------- test/ng/compileSpec.js | 177 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 198 insertions(+), 32 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 59f7861495b8..dc17d9b9b573 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1977,7 +1977,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) { - var i, ii, linkFn, controller, isolateScope, elementControllers, transcludeFn, $element, + var linkFn, isolateScope, elementControllers, transcludeFn, $element, attrs, removeScopeBindingWatches, removeControllerBindingWatches; if (compileNode === linkNode) { @@ -2017,38 +2017,27 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { isolateScope.$on('$destroy', removeScopeBindingWatches); } } - if (elementControllers) { - // Initialize bindToController bindings for new/isolate scopes - var scopeDirective = newIsolateScopeDirective || newScopeDirective; - var bindings; - var controllerForBindings; - if (scopeDirective && elementControllers[scopeDirective.name]) { - bindings = scopeDirective.$$bindings.bindToController; - controller = elementControllers[scopeDirective.name]; - - if (controller && controller.identifier && bindings) { - controllerForBindings = controller; - removeControllerBindingWatches = - initializeDirectiveBindings(scope, attrs, controller.instance, - bindings, scopeDirective); - } + + // Initialize bindToController bindings + for (var name in elementControllers) { + var controllerDirective = controllerDirectives[name]; + var controller = elementControllers[name]; + var bindings = controllerDirective.$$bindings.bindToController; + + if (controller.identifier && bindings) { + removeControllerBindingWatches = + initializeDirectiveBindings(scope, attrs, controller.instance, bindings, controllerDirective); } - for (i in elementControllers) { - controller = elementControllers[i]; - var controllerResult = controller(); - - if (controllerResult !== controller.instance) { - // If the controller constructor has a return value, overwrite the instance - // from setupControllers and update the element data - controller.instance = controllerResult; - $element.data('$' + i + 'Controller', controllerResult); - if (controller === controllerForBindings) { - // Remove and re-install bindToController bindings - removeControllerBindingWatches && removeControllerBindingWatches(); - removeControllerBindingWatches = - initializeDirectiveBindings(scope, attrs, controllerResult, bindings, scopeDirective); - } - } + + var controllerResult = controller(); + if (controllerResult !== controller.instance) { + // If the controller constructor has a return value, overwrite the instance + // from setupControllers + controller.instance = controllerResult; + $element.data('$' + controllerDirective.name + 'Controller', controllerResult); + removeControllerBindingWatches && removeControllerBindingWatches(); + removeControllerBindingWatches = + initializeDirectiveBindings(scope, attrs, controller.instance, bindings, controllerDirective); } } diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 1a875840c880..493cbcbdbd93 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -4414,6 +4414,183 @@ describe('$compile', function() { }); + it('should bind to multiple directives controllers via object notation (no scope)', function() { + var controller1Called = false; + var controller2Called = false; + module(function($compileProvider, $controllerProvider) { + $compileProvider.directive('foo', valueFn({ + bindToController: { + 'data': '=fooData', + 'str': '@fooStr', + 'fn': '&fooFn' + }, + controllerAs: 'fooCtrl', + controller: function() { + expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'}); + expect(this.str).toBe('Hello, world!'); + expect(this.fn()).toBe('called!'); + controller1Called = true; + } + })); + $compileProvider.directive('bar', valueFn({ + bindToController: { + 'data': '=barData', + 'str': '@barStr', + 'fn': '&barFn' + }, + controllerAs: 'barCtrl', + controller: function() { + expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'}); + expect(this.str).toBe('Hello, second world!'); + expect(this.fn()).toBe('second called!'); + controller2Called = true; + } + })); + }); + inject(function($compile, $rootScope) { + $rootScope.fn = valueFn('called!'); + $rootScope.string = 'world'; + $rootScope.data = {'foo': 'bar','baz': 'biz'}; + $rootScope.fn2 = valueFn('second called!'); + $rootScope.string2 = 'second world'; + $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'}; + element = $compile( + '
    ' + + '
    ')($rootScope); + $rootScope.$digest(); + expect(controller1Called).toBe(true); + expect(controller2Called).toBe(true); + }); + }); + + + it('should bind to multiple directives controllers via object notation (new iso scope)', function() { + var controller1Called = false; + var controller2Called = false; + module(function($compileProvider, $controllerProvider) { + $compileProvider.directive('foo', valueFn({ + bindToController: { + 'data': '=fooData', + 'str': '@fooStr', + 'fn': '&fooFn' + }, + scope: true, + controllerAs: 'fooCtrl', + controller: function() { + expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'}); + expect(this.str).toBe('Hello, world!'); + expect(this.fn()).toBe('called!'); + controller1Called = true; + } + })); + $compileProvider.directive('bar', valueFn({ + bindToController: { + 'data': '=barData', + 'str': '@barStr', + 'fn': '&barFn' + }, + controllerAs: 'barCtrl', + controller: function() { + expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'}); + expect(this.str).toBe('Hello, second world!'); + expect(this.fn()).toBe('second called!'); + controller2Called = true; + } + })); + }); + inject(function($compile, $rootScope) { + $rootScope.fn = valueFn('called!'); + $rootScope.string = 'world'; + $rootScope.data = {'foo': 'bar','baz': 'biz'}; + $rootScope.fn2 = valueFn('second called!'); + $rootScope.string2 = 'second world'; + $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'}; + element = $compile( + '
    ' + + '
    ')($rootScope); + $rootScope.$digest(); + expect(controller1Called).toBe(true); + expect(controller2Called).toBe(true); + }); + }); + + + it('should bind to multiple directives controllers via object notation (new scope)', function() { + var controller1Called = false; + var controller2Called = false; + module(function($compileProvider, $controllerProvider) { + $compileProvider.directive('foo', valueFn({ + bindToController: { + 'data': '=fooData', + 'str': '@fooStr', + 'fn': '&fooFn' + }, + scope: true, + controllerAs: 'fooCtrl', + controller: function() { + expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'}); + expect(this.str).toBe('Hello, world!'); + expect(this.fn()).toBe('called!'); + controller1Called = true; + } + })); + $compileProvider.directive('bar', valueFn({ + bindToController: { + 'data': '=barData', + 'str': '@barStr', + 'fn': '&barFn' + }, + scope: true, + controllerAs: 'barCtrl', + controller: function() { + expect(this.data).toEqualData({'foo2': 'bar2', 'baz2': 'biz2'}); + expect(this.str).toBe('Hello, second world!'); + expect(this.fn()).toBe('second called!'); + controller2Called = true; + } + })); + }); + inject(function($compile, $rootScope) { + $rootScope.fn = valueFn('called!'); + $rootScope.string = 'world'; + $rootScope.data = {'foo': 'bar','baz': 'biz'}; + $rootScope.fn2 = valueFn('second called!'); + $rootScope.string2 = 'second world'; + $rootScope.data2 = {'foo2': 'bar2', 'baz2': 'biz2'}; + element = $compile( + '
    ' + + '
    ')($rootScope); + $rootScope.$digest(); + expect(controller1Called).toBe(true); + expect(controller2Called).toBe(true); + }); + }); + + it('should put controller in scope when controller identifier present but not using controllerAs', function() { var controllerCalled = false; var myCtrl; From b9f7c453e00d6938106f414952f74d5e5fdcb993 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 6 Oct 2015 22:43:14 +0300 Subject: [PATCH 097/354] fix($compile): evaluate against the correct scope with bindToController on new scope Previously, the directive bindings were evaluated against the directive's new (non-isolate) scope, instead of the correct (parent) scope. This went unnoticed most of the time, since a property would be eventually looked up in the parent scope due to prototypal inheritance. The incorrect behaviour was exhibited when a property on the child scope was shadowing that on the parent scope. This commit fixes it. Fixes #13021 Closes #13025 --- src/ng/compile.js | 9 ++-- test/ng/compileSpec.js | 118 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 124 insertions(+), 3 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index dc17d9b9b573..41701ef89865 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1977,7 +1977,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } function nodeLinkFn(childLinkFn, scope, linkNode, $rootElement, boundTranscludeFn) { - var linkFn, isolateScope, elementControllers, transcludeFn, $element, + var linkFn, isolateScope, controllerScope, elementControllers, transcludeFn, $element, attrs, removeScopeBindingWatches, removeControllerBindingWatches; if (compileNode === linkNode) { @@ -1988,8 +1988,11 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { attrs = new Attributes($element, templateAttrs); } + controllerScope = scope; if (newIsolateScopeDirective) { isolateScope = scope.$new(true); + } else if (newScopeDirective) { + controllerScope = scope.$parent; } if (boundTranscludeFn) { @@ -2026,7 +2029,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { if (controller.identifier && bindings) { removeControllerBindingWatches = - initializeDirectiveBindings(scope, attrs, controller.instance, bindings, controllerDirective); + initializeDirectiveBindings(controllerScope, attrs, controller.instance, bindings, controllerDirective); } var controllerResult = controller(); @@ -2037,7 +2040,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { $element.data('$' + controllerDirective.name + 'Controller', controllerResult); removeControllerBindingWatches && removeControllerBindingWatches(); removeControllerBindingWatches = - initializeDirectiveBindings(scope, attrs, controller.instance, bindings, controllerDirective); + initializeDirectiveBindings(controllerScope, attrs, controller.instance, bindings, controllerDirective); } } diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 493cbcbdbd93..509faba59467 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -4591,6 +4591,124 @@ describe('$compile', function() { }); + it('should evaluate against the correct scope, when using `bindToController` (new scope)', + function() { + module(function($compileProvider, $controllerProvider) { + $controllerProvider.register({ + 'ParentCtrl': function() { + this.value1 = 'parent1'; + this.value2 = 'parent2'; + this.value3 = function() { return 'parent3'; }; + }, + 'ChildCtrl': function() { + this.value1 = 'child1'; + this.value2 = 'child2'; + this.value3 = function() { return 'child3'; }; + } + }); + + $compileProvider.directive('child', valueFn({ + scope: true, + controller: 'ChildCtrl as ctrl', + bindToController: { + fromParent1: '@', + fromParent2: '=', + fromParent3: '&' + }, + template: '' + })); + }); + + inject(function($compile, $rootScope) { + element = $compile( + '
    ' + + '' + + '' + + '
    ')($rootScope); + $rootScope.$digest(); + + var parentCtrl = element.controller('ngController'); + var childCtrl = element.find('child').controller('child'); + + expect(childCtrl.fromParent1).toBe(parentCtrl.value1); + expect(childCtrl.fromParent1).not.toBe(childCtrl.value1); + expect(childCtrl.fromParent2).toBe(parentCtrl.value2); + expect(childCtrl.fromParent2).not.toBe(childCtrl.value2); + expect(childCtrl.fromParent3()()).toBe(parentCtrl.value3()); + expect(childCtrl.fromParent3()()).not.toBe(childCtrl.value3()); + + childCtrl.fromParent2 = 'modified'; + $rootScope.$digest(); + + expect(parentCtrl.value2).toBe('modified'); + expect(childCtrl.value2).toBe('child2'); + }); + } + ); + + + it('should evaluate against the correct scope, when using `bindToController` (new iso scope)', + function() { + module(function($compileProvider, $controllerProvider) { + $controllerProvider.register({ + 'ParentCtrl': function() { + this.value1 = 'parent1'; + this.value2 = 'parent2'; + this.value3 = function() { return 'parent3'; }; + }, + 'ChildCtrl': function() { + this.value1 = 'child1'; + this.value2 = 'child2'; + this.value3 = function() { return 'child3'; }; + } + }); + + $compileProvider.directive('child', valueFn({ + scope: {}, + controller: 'ChildCtrl as ctrl', + bindToController: { + fromParent1: '@', + fromParent2: '=', + fromParent3: '&' + }, + template: '' + })); + }); + + inject(function($compile, $rootScope) { + element = $compile( + '
    ' + + '' + + '' + + '
    ')($rootScope); + $rootScope.$digest(); + + var parentCtrl = element.controller('ngController'); + var childCtrl = element.find('child').controller('child'); + + expect(childCtrl.fromParent1).toBe(parentCtrl.value1); + expect(childCtrl.fromParent1).not.toBe(childCtrl.value1); + expect(childCtrl.fromParent2).toBe(parentCtrl.value2); + expect(childCtrl.fromParent2).not.toBe(childCtrl.value2); + expect(childCtrl.fromParent3()()).toBe(parentCtrl.value3()); + expect(childCtrl.fromParent3()()).not.toBe(childCtrl.value3()); + + childCtrl.fromParent2 = 'modified'; + $rootScope.$digest(); + + expect(parentCtrl.value2).toBe('modified'); + expect(childCtrl.value2).toBe('child2'); + }); + } + ); + + it('should put controller in scope when controller identifier present but not using controllerAs', function() { var controllerCalled = false; var myCtrl; From 5d8861fb2f203e8a688b6044cbd1140cd79fd049 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 10 Nov 2015 10:52:18 +0000 Subject: [PATCH 098/354] fix($compile): bind all directive controllers correctly when using `bindToController` Previously only the first directive's controller would be bound correctly. Closes #11343 Closes #11345 --- test/ng/compileSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 509faba59467..efd0f25f7cf8 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -4482,7 +4482,7 @@ describe('$compile', function() { 'str': '@fooStr', 'fn': '&fooFn' }, - scope: true, + scope: {}, controllerAs: 'fooCtrl', controller: function() { expect(this.data).toEqualData({'foo': 'bar', 'baz': 'biz'}); From 83098b9add0eb7988afeb52a7e5d7662d8370e4b Mon Sep 17 00:00:00 2001 From: Eric Lee Carraway Date: Tue, 10 Nov 2015 21:57:41 -0600 Subject: [PATCH 099/354] docs(contributing): fix typo (a unambiguous => an unambiguous) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit use the article “an” before words that start with a vowel sound Closes #13292 --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4a93f7090811..4cb8a995c774 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -71,7 +71,7 @@ chances of your issue being dealt with quickly: * **Angular Version(s)** - is it a regression? * **Browsers and Operating System** - is this a problem with all browsers or only IE8? * **Reproduce the Error** - provide a live example (using [Plunker][plunker] or - [JSFiddle][jsfiddle]) or a unambiguous set of steps. + [JSFiddle][jsfiddle]) or an unambiguous set of steps. * **Related Issues** - has a similar issue been reported before? * **Suggest a Fix** - if you can't fix the bug yourself, perhaps you can point to what might be causing the problem (line of code or commit) From 34590e15d4b7a3788518f8bb1cced2ae8df91e1a Mon Sep 17 00:00:00 2001 From: Eric Lee Carraway Date: Wed, 11 Nov 2015 22:24:43 -0600 Subject: [PATCH 100/354] docs(readme): fix typo (setup => set up) spell set up as two words here, it is an adjective modifying the noun "environment" Closes #13297 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index aac26f18c667..b3e6c71c4d9c 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ piece of cake. Best of all?? It makes development fun! Building AngularJS --------- -[Once you have your environment setup](http://docs.angularjs.org/misc/contribute) just run: +[Once you have your environment set up](http://docs.angularjs.org/misc/contribute) just run: grunt package From 6f8ddb6d4329441e8d4a856978413aa9b9bd918f Mon Sep 17 00:00:00 2001 From: rrsivabalan Date: Wed, 4 Nov 2015 22:21:04 +0530 Subject: [PATCH 101/354] fix($location): ensure `$locationChangeSuccess` fires even if URL ends with `#` Closes #12175 Closes #13251 --- src/ng/location.js | 2 +- test/ng/locationSpec.js | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/src/ng/location.js b/src/ng/location.js index f575a653f916..3c91549b53b4 100644 --- a/src/ng/location.js +++ b/src/ng/location.js @@ -918,7 +918,7 @@ function $LocationProvider() { var oldUrl = $location.absUrl(); var oldState = $location.$$state; var defaultPrevented; - + newUrl = trimEmptyHash(newUrl); $location.$$parse(newUrl); $location.$$state = newState; diff --git a/test/ng/locationSpec.js b/test/ng/locationSpec.js index 1efe3396762f..8e1607c83146 100644 --- a/test/ng/locationSpec.js +++ b/test/ng/locationSpec.js @@ -2141,6 +2141,31 @@ describe('$location', function() { }) ); + it('should fire $locationChangeSuccess when browser location changes to URL which ends with #', + inject(function($location, $browser, $rootScope, $log) { + $location.url('/somepath'); + $rootScope.$apply(); + + expect($browser.url()).toEqual('http://server/#/somepath'); + expect($location.url()).toEqual('/somepath'); + + $rootScope.$on('$locationChangeStart', function(event, newUrl, oldUrl) { + $log.info('start', newUrl, oldUrl); + }); + $rootScope.$on('$locationChangeSuccess', function(event, newUrl, oldUrl) { + $log.info('after', newUrl, oldUrl); + }); + + $browser.url('http://server/#'); + $browser.poll(); + + expect($log.info.logs.shift()). + toEqual(['start', 'http://server/', 'http://server/#/somepath']); + expect($log.info.logs.shift()). + toEqual(['after', 'http://server/', 'http://server/#/somepath']); + }) + ); + it('should allow redirect during browser url change', inject(function($location, $browser, $rootScope, $log) { $rootScope.$on('$locationChangeStart', function(event, newUrl, oldUrl) { From 22f66025db262417ebb78c1ce1f4d7058dca3fd3 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 12 Nov 2015 14:25:51 +0000 Subject: [PATCH 102/354] fix(jqLite): deregister special `mouseenter` / `mouseleave` events correctly Closes #12795 Closes #12799 --- src/jqLite.js | 80 +++++++++++++++++++------------- src/ngScenario/browserTrigger.js | 3 +- test/jqLiteSpec.js | 54 +++++++++++++++++++++ 3 files changed, 105 insertions(+), 32 deletions(-) diff --git a/src/jqLite.js b/src/jqLite.js index 80680ac55469..34010092c0b0 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -307,17 +307,23 @@ function jqLiteOff(element, type, fn, unsupported) { delete events[type]; } } else { - forEach(type.split(' '), function(type) { + + var removeHandler = function(type) { + var listenerFns = events[type]; if (isDefined(fn)) { - var listenerFns = events[type]; arrayRemove(listenerFns || [], fn); - if (listenerFns && listenerFns.length > 0) { - return; - } } + if (!(isDefined(fn) && listenerFns && listenerFns.length > 0)) { + removeEventListenerFn(element, type, handle); + delete events[type]; + } + }; - removeEventListenerFn(element, type, handle); - delete events[type]; + forEach(type.split(' '), function(type) { + removeHandler(type); + if (MOUSE_EVENT_MAP[type]) { + removeHandler(MOUSE_EVENT_MAP[type]); + } }); } } @@ -772,6 +778,9 @@ function createEventHandler(element, events) { return event.immediatePropagationStopped === true; }; + // Some events have special handlers that wrap the real handler + var handlerWrapper = eventFns.specialHandlerWrapper || defaultHandlerWrapper; + // Copy event handlers in case event handlers array is modified during execution. if ((eventFnsLength > 1)) { eventFns = shallowCopy(eventFns); @@ -779,7 +788,7 @@ function createEventHandler(element, events) { for (var i = 0; i < eventFnsLength; i++) { if (!event.isImmediatePropagationStopped()) { - eventFns[i].call(element, event); + handlerWrapper(element, event, eventFns[i]); } } }; @@ -790,6 +799,22 @@ function createEventHandler(element, events) { return eventHandler; } +function defaultHandlerWrapper(element, event, handler) { + handler.call(element, event); +} + +function specialMouseHandlerWrapper(target, event, handler) { + // Refer to jQuery's implementation of mouseenter & mouseleave + // Read about mouseenter and mouseleave: + // http://www.quirksmode.org/js/events_mouse.html#link8 + var related = event.relatedTarget; + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if (!related || (related !== target && !jqLiteContains.call(target, related))) { + handler.call(target, event); + } +} + ////////////////////////////////////////// // Functions iterating traversal. // These functions chain results into a single @@ -818,35 +843,28 @@ forEach({ var types = type.indexOf(' ') >= 0 ? type.split(' ') : [type]; var i = types.length; - while (i--) { - type = types[i]; + var addHandler = function(type, specialHandlerWrapper, noEventListener) { var eventFns = events[type]; if (!eventFns) { - events[type] = []; - - if (type === 'mouseenter' || type === 'mouseleave') { - // Refer to jQuery's implementation of mouseenter & mouseleave - // Read about mouseenter and mouseleave: - // http://www.quirksmode.org/js/events_mouse.html#link8 - - jqLiteOn(element, MOUSE_EVENT_MAP[type], function(event) { - var target = this, related = event.relatedTarget; - // For mousenter/leave call the handler if related is outside the target. - // NB: No relatedTarget if the mouse left/entered the browser window - if (!related || (related !== target && !jqLiteContains.call(target, related))) { - handle(event, type); - } - }); - - } else { - if (type !== '$destroy') { - addEventListenerFn(element, type, handle); - } + eventFns = events[type] = []; + eventFns.specialHandlerWrapper = specialHandlerWrapper; + if (type !== '$destroy' && !noEventListener) { + addEventListenerFn(element, type, handle); } - eventFns = events[type]; } + eventFns.push(fn); + }; + + while (i--) { + type = types[i]; + if (MOUSE_EVENT_MAP[type]) { + addHandler(MOUSE_EVENT_MAP[type], specialMouseHandlerWrapper); + addHandler(type, undefined, true); + } else { + addHandler(type); + } } }, diff --git a/src/ngScenario/browserTrigger.js b/src/ngScenario/browserTrigger.js index f3c22fe5ff62..79a70934063e 100644 --- a/src/ngScenario/browserTrigger.js +++ b/src/ngScenario/browserTrigger.js @@ -15,6 +15,7 @@ if (!element) return; eventData = eventData || {}; + var relatedTarget = eventData.relatedTarget || element; var keys = eventData.keys; var x = eventData.x; var y = eventData.y; @@ -84,7 +85,7 @@ x = x || 0; y = y || 0; evnt.initMouseEvent(eventType, true, true, window, 0, x, y, x, y, pressed('ctrl'), - pressed('alt'), pressed('shift'), pressed('meta'), 0, element); + pressed('alt'), pressed('shift'), pressed('meta'), 0, relatedTarget); } /* we're unable to change the timeStamp value directly so this diff --git a/test/jqLiteSpec.js b/test/jqLiteSpec.js index 0fccd1e67c78..98c91c8a42c8 100644 --- a/test/jqLiteSpec.js +++ b/test/jqLiteSpec.js @@ -1431,6 +1431,60 @@ describe('jqLite', function() { }); + it('should correctly deregister the mouseenter/mouseleave listeners', function() { + var aElem = jqLite(a); + var onMouseenter = jasmine.createSpy('onMouseenter'); + var onMouseleave = jasmine.createSpy('onMouseleave'); + + aElem.on('mouseenter', onMouseenter); + aElem.on('mouseleave', onMouseleave); + aElem.off('mouseenter', onMouseenter); + aElem.off('mouseleave', onMouseleave); + aElem.on('mouseenter', onMouseenter); + aElem.on('mouseleave', onMouseleave); + + browserTrigger(a, 'mouseover', {relatedTarget: b}); + expect(onMouseenter).toHaveBeenCalledOnce(); + + browserTrigger(a, 'mouseout', {relatedTarget: b}); + expect(onMouseleave).toHaveBeenCalledOnce(); + }); + + + it('should call a `mouseenter/leave` listener only once when `mouseenter/leave` and `mouseover/out` ' + + 'are triggered simultaneously', function() { + var aElem = jqLite(a); + var onMouseenter = jasmine.createSpy('mouseenter'); + var onMouseleave = jasmine.createSpy('mouseleave'); + + aElem.on('mouseenter', onMouseenter); + aElem.on('mouseleave', onMouseleave); + + browserTrigger(a, 'mouseenter', {relatedTarget: b}); + browserTrigger(a, 'mouseover', {relatedTarget: b}); + expect(onMouseenter).toHaveBeenCalledOnce(); + + browserTrigger(a, 'mouseleave', {relatedTarget: b}); + browserTrigger(a, 'mouseout', {relatedTarget: b}); + expect(onMouseleave).toHaveBeenCalledOnce(); + }); + + it('should call a `mouseenter/leave` listener when manually triggering the event', function() { + var aElem = jqLite(a); + var onMouseenter = jasmine.createSpy('mouseenter'); + var onMouseleave = jasmine.createSpy('mouseleave'); + + aElem.on('mouseenter', onMouseenter); + aElem.on('mouseleave', onMouseleave); + + aElem.triggerHandler('mouseenter'); + expect(onMouseenter).toHaveBeenCalledOnce(); + + aElem.triggerHandler('mouseleave'); + expect(onMouseleave).toHaveBeenCalledOnce(); + }); + + it('should deregister specific listener within the listener and call subsequent listeners', function() { var aElem = jqLite(a), clickSpy = jasmine.createSpy('click'), From d1293540e13573eb9ea5f90730bb9c9710c345db Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Tue, 9 Jun 2015 02:53:22 -0700 Subject: [PATCH 103/354] perf(copy): only validate/clear user specified destination Closes #12068 --- src/Angular.js | 169 +++++++++++++++++++++++--------------------- test/AngularSpec.js | 13 ++++ 2 files changed, 103 insertions(+), 79 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index 2dcdd9c6b177..bc33a994ef6f 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -802,100 +802,111 @@ function arrayRemove(array, value) { */ -function copy(source, destination, stackSource, stackDest) { - if (isWindow(source) || isScope(source)) { - throw ngMinErr('cpws', - "Can't copy! Making copies of Window or Scope instances is not supported."); - } - if (isTypedArray(destination)) { - throw ngMinErr('cpta', - "Can't copy! TypedArray destination cannot be mutated."); - } - - if (!destination) { - destination = source; - if (isObject(source)) { - var index; - if (stackSource && (index = stackSource.indexOf(source)) !== -1) { - return stackDest[index]; - } +function copy(source, destination) { + var stackSource = []; + var stackDest = []; - // TypedArray, Date and RegExp have specific copy functionality and must be - // pushed onto the stack before returning. - // Array and other objects create the base object and recurse to copy child - // objects. The array/object will be pushed onto the stack when recursed. - if (isArray(source)) { - return copy(source, [], stackSource, stackDest); - } else if (isTypedArray(source)) { - destination = new source.constructor(source); - } else if (isDate(source)) { - destination = new Date(source.getTime()); - } else if (isRegExp(source)) { - destination = new RegExp(source.source, source.toString().match(/[^\/]*$/)[0]); - destination.lastIndex = source.lastIndex; - } else if (isFunction(source.cloneNode)) { - destination = source.cloneNode(true); - } else { - var emptyObject = Object.create(getPrototypeOf(source)); - return copy(source, emptyObject, stackSource, stackDest); - } + if (destination) { + if (isTypedArray(destination)) { + throw ngMinErr('cpta', "Can't copy! TypedArray destination cannot be mutated."); + } + if (source === destination) { + throw ngMinErr('cpi', "Can't copy! Source and destination are identical."); + } - if (stackDest) { - stackSource.push(source); - stackDest.push(destination); - } + // Empty the destination object + if (isArray(destination)) { + destination.length = 0; + } else { + forEach(destination, function(value, key) { + if (key !== '$$hashKey') { + delete destination[key]; + } + }); } - } else { - if (source === destination) throw ngMinErr('cpi', - "Can't copy! Source and destination are identical."); - stackSource = stackSource || []; - stackDest = stackDest || []; + stackSource.push(source); + stackDest.push(destination); + return copyRecurse(source, destination); + } - if (isObject(source)) { - stackSource.push(source); - stackDest.push(destination); - } + return copyElement(source); + function copyRecurse(source, destination) { + var h = destination.$$hashKey; var result, key; if (isArray(source)) { - destination.length = 0; - for (var i = 0; i < source.length; i++) { - destination.push(copy(source[i], null, stackSource, stackDest)); + for (var i = 0, ii = source.length; i < ii; i++) { + destination.push(copyElement(source[i])); } - } else { - var h = destination.$$hashKey; - if (isArray(destination)) { - destination.length = 0; - } else { - forEach(destination, function(value, key) { - delete destination[key]; - }); + } else if (isBlankObject(source)) { + // createMap() fast path --- Safe to avoid hasOwnProperty check because prototype chain is empty + for (key in source) { + destination[key] = copyElement(source[key]); } - if (isBlankObject(source)) { - // createMap() fast path --- Safe to avoid hasOwnProperty check because prototype chain is empty - for (key in source) { - destination[key] = copy(source[key], null, stackSource, stackDest); - } - } else if (source && typeof source.hasOwnProperty === 'function') { - // Slow path, which must rely on hasOwnProperty - for (key in source) { - if (source.hasOwnProperty(key)) { - destination[key] = copy(source[key], null, stackSource, stackDest); - } + } else if (source && typeof source.hasOwnProperty === 'function') { + // Slow path, which must rely on hasOwnProperty + for (key in source) { + if (source.hasOwnProperty(key)) { + destination[key] = copyElement(source[key]); } - } else { - // Slowest path --- hasOwnProperty can't be called as a method - for (key in source) { - if (hasOwnProperty.call(source, key)) { - destination[key] = copy(source[key], null, stackSource, stackDest); - } + } + } else { + // Slowest path --- hasOwnProperty can't be called as a method + for (key in source) { + if (hasOwnProperty.call(source, key)) { + destination[key] = copyElement(source[key]); } } - setHashKey(destination,h); } + setHashKey(destination, h); + return destination; + } + + function copyElement(source) { + // Simple values + if (!isObject(source)) { + return source; + } + + // Already copied values + var index = stackSource.indexOf(source); + if (index !== -1) { + return stackDest[index]; + } + + if (isWindow(source) || isScope(source)) { + throw ngMinErr('cpws', + "Can't copy! Making copies of Window or Scope instances is not supported."); + } + + var needsRecurse = false; + var destination; + + if (isArray(source)) { + destination = []; + needsRecurse = true; + } else if (isTypedArray(source)) { + destination = new source.constructor(source); + } else if (isDate(source)) { + destination = new Date(source.getTime()); + } else if (isRegExp(source)) { + destination = new RegExp(source.source, source.toString().match(/[^\/]*$/)[0]); + destination.lastIndex = source.lastIndex; + } else if (isFunction(source.cloneNode)) { + destination = source.cloneNode(true); + } else { + destination = Object.create(getPrototypeOf(source)); + needsRecurse = true; + } + + stackSource.push(source); + stackDest.push(destination); + + return needsRecurse + ? copyRecurse(source, destination) + : destination; } - return destination; } /** diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 0ffc93b3133e..22773cf9c7fd 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -313,11 +313,19 @@ describe('angular', function() { it('should throw an exception if a Scope is being copied', inject(function($rootScope) { expect(function() { copy($rootScope.$new()); }). toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); + expect(function() { copy({child: $rootScope.$new()}, {}); }). + toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); + expect(function() { copy([$rootScope.$new()]); }). + toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); })); it('should throw an exception if a Window is being copied', function() { expect(function() { copy(window); }). toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); + expect(function() { copy({child: window}); }). + toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); + expect(function() { copy([window], []); }). + toThrowMinErr("ng", "cpws", "Can't copy! Making copies of Window or Scope instances is not supported."); }); it('should throw an exception when source and destination are equivalent', function() { @@ -334,6 +342,11 @@ describe('angular', function() { hashKey(src); dst = copy(src); expect(hashKey(dst)).not.toEqual(hashKey(src)); + + src = {foo: {}}; + hashKey(src.foo); + dst = copy(src); + expect(hashKey(src.foo)).not.toEqual(hashKey(dst.foo)); }); it('should retain the previous $$hashKey when copying object with hashKey', function() { From 19fab4a1d79d2445795273f1622344353cf4d104 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Tue, 9 Jun 2015 02:39:08 -0700 Subject: [PATCH 104/354] perf(copy): avoid regex in isTypedArray Closes: #12054 --- src/Angular.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index bc33a994ef6f..0e437ad9044f 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -678,9 +678,9 @@ function isPromiseLike(obj) { } -var TYPED_ARRAY_REGEXP = /^\[object (Uint8(Clamped)?)|(Uint16)|(Uint32)|(Int8)|(Int16)|(Int32)|(Float(32)|(64))Array\]$/; +var TYPED_ARRAY_REGEXP = /^\[object (?:Uint8|Uint8Clamped|Uint16|Uint32|Int8|Int16|Int32|Float32|Float64)Array\]$/; function isTypedArray(value) { - return TYPED_ARRAY_REGEXP.test(toString.call(value)); + return value && isNumber(value.length) && TYPED_ARRAY_REGEXP.test(toString.call(value)); } From 75e876424da5f569481488d03cf3a61441341513 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 19 Nov 2015 14:45:51 -0800 Subject: [PATCH 105/354] chore(CHANGELOG): update with changes for 1.4.8 --- CHANGELOG.md | 97 ++++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 94 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d4b8343708e..82c5deb05ad2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,97 @@ +
    +# 1.4.8 ice-manipulation (2015-11-19) + + +## Bug Fixes + +- **$animate:** ensure leave animation calls `close` callback + ([6bd6dbff](https://github.com/angular/angular.js/commit/6bd6dbff4961a601c03e9465442788781d329ba6), + [#12278](https://github.com/angular/angular.js/issues/12278), [#12096](https://github.com/angular/angular.js/issues/12096), [#13054](https://github.com/angular/angular.js/issues/13054)) +- **$cacheFactory:** check key exists before decreasing cache size count + ([2a5a52a7](https://github.com/angular/angular.js/commit/2a5a52a76ccf60c6e8c5d881e90e11a2666a6d3c), + [#12321](https://github.com/angular/angular.js/issues/12321), [#12329](https://github.com/angular/angular.js/issues/12329)) +- **$compile:** + - bind all directive controllers correctly when using `bindToController` + ([5d8861fb](https://github.com/angular/angular.js/commit/5d8861fb2f203e8a688b6044cbd1140cd79fd049), + [#11343](https://github.com/angular/angular.js/issues/11343), [#11345](https://github.com/angular/angular.js/issues/11345)) + - evaluate against the correct scope with bindToController on new scope + ([b9f7c453](https://github.com/angular/angular.js/commit/b9f7c453e00d6938106f414952f74d5e5fdcb993), + [#13021](https://github.com/angular/angular.js/issues/13021), [#13025](https://github.com/angular/angular.js/issues/13025)) + - fix scoping of transclusion directives inside replace directive + ([74da0340](https://github.com/angular/angular.js/commit/74da03407782d679951cd8f693860cea214f2580), + [#12975](https://github.com/angular/angular.js/issues/12975), [#12936](https://github.com/angular/angular.js/issues/12936), [#13244](https://github.com/angular/angular.js/issues/13244)) +- **$http:** apply `transformResponse` even when `data` is empty + ([c6909464](https://github.com/angular/angular.js/commit/c690946469e09cfe6b774e63dbe14ace92ce6cb7), + [#12976](https://github.com/angular/angular.js/issues/12976), [#12979](https://github.com/angular/angular.js/issues/12979)) +- **$location:** ensure `$locationChangeSuccess` fires even if URL ends with `#` + ([6f8ddb6d](https://github.com/angular/angular.js/commit/6f8ddb6d4329441e8d4a856978413aa9b9bd918f), + [#12175](https://github.com/angular/angular.js/issues/12175), [#13251](https://github.com/angular/angular.js/issues/13251)) +- **$parse:** evaluate once simple expressions only once + ([e4036824](https://github.com/angular/angular.js/commit/e403682444fa08af4f3491badf2f3a10d7595699), + [#12983](https://github.com/angular/angular.js/issues/12983), [#13002](https://github.com/angular/angular.js/issues/13002)) +- **$resource:** allow XHR request to be cancelled via a timeout promise + ([7170f9d9](https://github.com/angular/angular.js/commit/7170f9d9ca765c578f8d3eb4699860a9330a0a11), + [#12657](https://github.com/angular/angular.js/issues/12657), [#12675](https://github.com/angular/angular.js/issues/12675), [#10890](https://github.com/angular/angular.js/issues/10890), [#9332](https://github.com/angular/angular.js/issues/9332)) +- **$rootScope:** prevent IE9 memory leak when destroying scopes + ([87b0055c](https://github.com/angular/angular.js/commit/87b0055c80f40589c5bcf3765e59e872bcfae119), + [#10706](https://github.com/angular/angular.js/issues/10706), [#11786](https://github.com/angular/angular.js/issues/11786)) +- **Angular.js:** fix `isArrayLike` for unusual cases + ([70edec94](https://github.com/angular/angular.js/commit/70edec947c7b189694ae66b129568182e3369cab), + [#10186](https://github.com/angular/angular.js/issues/10186), [#8000](https://github.com/angular/angular.js/issues/8000), [#4855](https://github.com/angular/angular.js/issues/4855), [#4751](https://github.com/angular/angular.js/issues/4751), [#10272](https://github.com/angular/angular.js/issues/10272)) +- **isArrayLike:** handle jQuery objects of length 0 + ([d3da55c4](https://github.com/angular/angular.js/commit/d3da55c40f1e1ddceced5da51e364888ff9d82ff)) +- **jqLite:** + - deregister special `mouseenter` / `mouseleave` events correctly + ([22f66025](https://github.com/angular/angular.js/commit/22f66025db262417ebb78c1ce1f4d7058dca3fd3), + [#12795](https://github.com/angular/angular.js/issues/12795), [#12799](https://github.com/angular/angular.js/issues/12799)) + - ensure mouseenter works with svg elements on IE + ([c1f34e8e](https://github.com/angular/angular.js/commit/c1f34e8eeb5105767f6cbf4727b8c5664be2a261), + [#10259](https://github.com/angular/angular.js/issues/10259), [#10276](https://github.com/angular/angular.js/issues/10276)) +- **limitTo:** start at 0 if `begin` is negative and exceeds input length + ([4fc40bc9](https://github.com/angular/angular.js/commit/4fc40bc9320a1d5902e648b70fa79c7cf7e794c7), + [#12775](https://github.com/angular/angular.js/issues/12775), [#12781](https://github.com/angular/angular.js/issues/12781)) +- **merge:** + - ensure that jqlite->jqlite and DOM->DOM + ([2f8db1bf](https://github.com/angular/angular.js/commit/2f8db1bf01173b546a2868fc7b8b188c2383fbff)) + - clone elements instead of treating them like simple objects + ([838cf4be](https://github.com/angular/angular.js/commit/838cf4be3c671903796dbb69d95c0e5ac1516a06), + [#12286](https://github.com/angular/angular.js/issues/12286)) +- **ngAria:** don't add tabindex to radio and checkbox inputs + ([59f1f4e1](https://github.com/angular/angular.js/commit/59f1f4e19a02e6e6f4c41c15b0e9f3372d85cecc), + [#12492](https://github.com/angular/angular.js/issues/12492), [#13095](https://github.com/angular/angular.js/issues/13095)) +- **ngInput:** change URL_REGEXP to better match RFC3987 + ([cb51116d](https://github.com/angular/angular.js/commit/cb51116dbd225ccfdbc9a565a66a170e65d26331), + [#11341](https://github.com/angular/angular.js/issues/11341), [#11381](https://github.com/angular/angular.js/issues/11381)) +- **ngMock:** reset cache before every test + ([91b7cd9b](https://github.com/angular/angular.js/commit/91b7cd9b74d72a48d844c5c3e0e9dee03405e0ca), + [#13013](https://github.com/angular/angular.js/issues/13013)) +- **ngOptions:** + - skip comments and empty options when looking for options + ([0f58334b](https://github.com/angular/angular.js/commit/0f58334b7b9a9d3d6ff34e9754961b6f67731fae), + [#12190](https://github.com/angular/angular.js/issues/12190), [#13029](https://github.com/angular/angular.js/issues/13029), [#13033](https://github.com/angular/angular.js/issues/13033)) + - override select option registration to allow compilation of empty option + ([7b2ecf42](https://github.com/angular/angular.js/commit/7b2ecf42c697eb8d51a0f2d73b324bd900139e05), + [#11685](https://github.com/angular/angular.js/issues/11685), [#12972](https://github.com/angular/angular.js/issues/12972), [#12968](https://github.com/angular/angular.js/issues/12968), [#13012](https://github.com/angular/angular.js/issues/13012)) + + +## Performance Improvements + +- **$compile:** use static jquery data method to avoid creating new instances + ([55ad192e](https://github.com/angular/angular.js/commit/55ad192e4ab79295ab15ecaaf8f6b9e7932a0336)) +- **copy:** + - avoid regex in `isTypedArray` + ([19fab4a1](https://github.com/angular/angular.js/commit/19fab4a1d79d2445795273f1622344353cf4d104)) + - only validate/clear if the user specifies a destination + ([d1293540](https://github.com/angular/angular.js/commit/d1293540e13573eb9ea5f90730bb9c9710c345db), + [#12068](https://github.com/angular/angular.js/issues/12068)) +- **merge:** remove unnecessary wrapping of jqLite element + ([ce6a96b0](https://github.com/angular/angular.js/commit/ce6a96b0d76dd2e5ab2247ca3059d284575bc6f0), + [#13236](https://github.com/angular/angular.js/issues/13236)) + + +## Breaking Changes + + # 1.4.7 dark-luminescence (2015-09-29) @@ -29,9 +123,6 @@ ([7295c60f](https://github.com/angular/angular.js/commit/7295c60ffb9f2e4f32043c538ace740b187f565a), [#12856](https://github.com/angular/angular.js/issues/12856), [#12903](https://github.com/angular/angular.js/issues/12903)) - **ngOptions:** - - skip comments when looking for option elements - ([68d4dc5b](https://github.com/angular/angular.js/commit/68d4dc5b71b23e4c7c2650e6da3d7200de99f1ae), - [#12190](https://github.com/angular/angular.js/issues/12190)) - prevent frozen select ui in IE ([dbc69851](https://github.com/angular/angular.js/commit/dbc698517ff620b3a6279f65d4a9b6e3c15087b9), [#11314](https://github.com/angular/angular.js/issues/11314), [#11795](https://github.com/angular/angular.js/issues/11795)) From 937942f5ada6de1bdacdf0ba465f6f118c270119 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 19 Nov 2015 11:01:14 -0800 Subject: [PATCH 106/354] fix(core): ensure animate runner is the same with and without animations The $$AnimateRunner class is now the same for the core $animate service and the ngAnimate $animate service. Previously, the core used a different implementation that didn't match the ngAnimate behavior with regard to callbacks. Closes #13205 Closes #13347 --- angularFiles.js | 1 + src/AngularPublic.js | 6 +- src/ng/animate.js | 30 +--- src/ng/animateCss.js | 40 +---- src/ng/animateRunner.js | 170 ++++++++++++++++++++ src/ngAnimate/animateRunner.js | 166 ------------------- src/ngAnimate/module.js | 4 - test/{ngAnimate => ng}/animateRunnerSpec.js | 7 +- 8 files changed, 189 insertions(+), 235 deletions(-) create mode 100644 src/ng/animateRunner.js delete mode 100644 src/ngAnimate/animateRunner.js rename test/{ngAnimate => ng}/animateRunnerSpec.js (99%) diff --git a/angularFiles.js b/angularFiles.js index 1e6eb6a6b77a..e3f41badc9bc 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -14,6 +14,7 @@ var angularFiles = { 'src/ng/anchorScroll.js', 'src/ng/animate.js', + 'src/ng/animateRunner.js', 'src/ng/animateCss.js', 'src/ng/browser.js', 'src/ng/cacheFactory.js', diff --git a/src/AngularPublic.js b/src/AngularPublic.js index 0de446d90085..b5be4e53acdf 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -57,7 +57,8 @@ $AnimateProvider, $CoreAnimateCssProvider, $$CoreAnimateQueueProvider, - $$CoreAnimateRunnerProvider, + $$AnimateRunnerFactoryProvider, + $$AnimateAsyncRunFactoryProvider, $BrowserProvider, $CacheFactoryProvider, $ControllerProvider, @@ -217,7 +218,8 @@ function publishExternalAPI(angular) { $animate: $AnimateProvider, $animateCss: $CoreAnimateCssProvider, $$animateQueue: $$CoreAnimateQueueProvider, - $$AnimateRunner: $$CoreAnimateRunnerProvider, + $$AnimateRunner: $$AnimateRunnerFactoryProvider, + $$animateAsyncRun: $$AnimateAsyncRunFactoryProvider, $browser: $BrowserProvider, $cacheFactory: $CacheFactoryProvider, $controller: $ControllerProvider, diff --git a/src/ng/animate.js b/src/ng/animate.js index 7d04bf535fe4..6df23c4179ec 100644 --- a/src/ng/animate.js +++ b/src/ng/animate.js @@ -53,29 +53,6 @@ function prepareAnimateOptions(options) { : {}; } -var $$CoreAnimateRunnerProvider = function() { - this.$get = ['$q', '$$rAF', function($q, $$rAF) { - function AnimateRunner() {} - AnimateRunner.all = noop; - AnimateRunner.chain = noop; - AnimateRunner.prototype = { - end: noop, - cancel: noop, - resume: noop, - pause: noop, - complete: noop, - then: function(pass, fail) { - return $q(function(resolve) { - $$rAF(function() { - resolve(); - }); - }).then(pass, fail); - } - }; - return AnimateRunner; - }]; -}; - // this is prefixed with Core since it conflicts with // the animateQueueProvider defined in ngAnimate/animateQueue.js var $$CoreAnimateQueueProvider = function() { @@ -101,7 +78,12 @@ var $$CoreAnimateQueueProvider = function() { addRemoveClassesPostDigest(element, options.addClass, options.removeClass); } - return new $$AnimateRunner(); // jshint ignore:line + var runner = new $$AnimateRunner(); // jshint ignore:line + + // since there are no animations to run the runner needs to be + // notified that the animation call is complete. + runner.complete(); + return runner; } }; diff --git a/src/ng/animateCss.js b/src/ng/animateCss.js index 5aaf78bea637..8380d2ce5ec9 100644 --- a/src/ng/animateCss.js +++ b/src/ng/animateCss.js @@ -12,36 +12,7 @@ * Click here {@link ngAnimate.$animateCss to read the documentation for $animateCss}. */ var $CoreAnimateCssProvider = function() { - this.$get = ['$$rAF', '$q', function($$rAF, $q) { - - var RAFPromise = function() {}; - RAFPromise.prototype = { - done: function(cancel) { - this.defer && this.defer[cancel === true ? 'reject' : 'resolve'](); - }, - end: function() { - this.done(); - }, - cancel: function() { - this.done(true); - }, - getPromise: function() { - if (!this.defer) { - this.defer = $q.defer(); - } - return this.defer.promise; - }, - then: function(f1,f2) { - return this.getPromise().then(f1,f2); - }, - 'catch': function(f1) { - return this.getPromise()['catch'](f1); - }, - 'finally': function(f1) { - return this.getPromise()['finally'](f1); - } - }; - + this.$get = ['$$rAF', '$q', '$$AnimateRunner', function($$rAF, $q, $$AnimateRunner) { return function(element, options) { // there is no point in applying the styles since // there is no animation that goes on at all in @@ -55,7 +26,8 @@ var $CoreAnimateCssProvider = function() { options.from = null; } - var closed, runner = new RAFPromise(); + /* jshint newcap: false*/ + var closed, runner = new $$AnimateRunner(); return { start: run, end: run @@ -63,16 +35,16 @@ var $CoreAnimateCssProvider = function() { function run() { $$rAF(function() { - close(); + applyAnimationContents(); if (!closed) { - runner.done(); + runner.complete(); } closed = true; }); return runner; } - function close() { + function applyAnimationContents() { if (options.addClass) { element.addClass(options.addClass); options.addClass = null; diff --git a/src/ng/animateRunner.js b/src/ng/animateRunner.js new file mode 100644 index 000000000000..51701b4c16f8 --- /dev/null +++ b/src/ng/animateRunner.js @@ -0,0 +1,170 @@ +'use strict'; + +var $$AnimateAsyncRunFactoryProvider = function() { + this.$get = ['$$rAF', function($$rAF) { + var waitQueue = []; + + function waitForTick(fn) { + waitQueue.push(fn); + if (waitQueue.length > 1) return; + $$rAF(function() { + for (var i = 0; i < waitQueue.length; i++) { + waitQueue[i](); + } + waitQueue = []; + }); + } + + return function() { + var passed = false; + waitForTick(function() { + passed = true; + }); + return function(callback) { + passed ? callback() : waitForTick(callback); + }; + }; + }]; +}; + +var $$AnimateRunnerFactoryProvider = function() { + this.$get = ['$q', '$sniffer', '$$animateAsyncRun', + function($q, $sniffer, $$animateAsyncRun) { + + var INITIAL_STATE = 0; + var DONE_PENDING_STATE = 1; + var DONE_COMPLETE_STATE = 2; + + AnimateRunner.chain = function(chain, callback) { + var index = 0; + + next(); + function next() { + if (index === chain.length) { + callback(true); + return; + } + + chain[index](function(response) { + if (response === false) { + callback(false); + return; + } + index++; + next(); + }); + } + }; + + AnimateRunner.all = function(runners, callback) { + var count = 0; + var status = true; + forEach(runners, function(runner) { + runner.done(onProgress); + }); + + function onProgress(response) { + status = status && response; + if (++count === runners.length) { + callback(status); + } + } + }; + + function AnimateRunner(host) { + this.setHost(host); + + this._doneCallbacks = []; + this._runInAnimationFrame = $$animateAsyncRun(); + this._state = 0; + } + + AnimateRunner.prototype = { + setHost: function(host) { + this.host = host || {}; + }, + + done: function(fn) { + if (this._state === DONE_COMPLETE_STATE) { + fn(); + } else { + this._doneCallbacks.push(fn); + } + }, + + progress: noop, + + getPromise: function() { + if (!this.promise) { + var self = this; + this.promise = $q(function(resolve, reject) { + self.done(function(status) { + status === false ? reject() : resolve(); + }); + }); + } + return this.promise; + }, + + then: function(resolveHandler, rejectHandler) { + return this.getPromise().then(resolveHandler, rejectHandler); + }, + + 'catch': function(handler) { + return this.getPromise()['catch'](handler); + }, + + 'finally': function(handler) { + return this.getPromise()['finally'](handler); + }, + + pause: function() { + if (this.host.pause) { + this.host.pause(); + } + }, + + resume: function() { + if (this.host.resume) { + this.host.resume(); + } + }, + + end: function() { + if (this.host.end) { + this.host.end(); + } + this._resolve(true); + }, + + cancel: function() { + if (this.host.cancel) { + this.host.cancel(); + } + this._resolve(false); + }, + + complete: function(response) { + var self = this; + if (self._state === INITIAL_STATE) { + self._state = DONE_PENDING_STATE; + self._runInAnimationFrame(function() { + self._resolve(response); + }); + } + }, + + _resolve: function(response) { + if (this._state !== DONE_COMPLETE_STATE) { + forEach(this._doneCallbacks, function(fn) { + fn(response); + }); + this._doneCallbacks.length = 0; + this._state = DONE_COMPLETE_STATE; + } + } + }; + + return AnimateRunner; + }]; +}; diff --git a/src/ngAnimate/animateRunner.js b/src/ngAnimate/animateRunner.js deleted file mode 100644 index 1a2e6264a5e5..000000000000 --- a/src/ngAnimate/animateRunner.js +++ /dev/null @@ -1,166 +0,0 @@ -'use strict'; - -var $$AnimateAsyncRunFactory = ['$$rAF', function($$rAF) { - var waitQueue = []; - - function waitForTick(fn) { - waitQueue.push(fn); - if (waitQueue.length > 1) return; - $$rAF(function() { - for (var i = 0; i < waitQueue.length; i++) { - waitQueue[i](); - } - waitQueue = []; - }); - } - - return function() { - var passed = false; - waitForTick(function() { - passed = true; - }); - return function(callback) { - passed ? callback() : waitForTick(callback); - }; - }; -}]; - -var $$AnimateRunnerFactory = ['$q', '$sniffer', '$$animateAsyncRun', - function($q, $sniffer, $$animateAsyncRun) { - - var INITIAL_STATE = 0; - var DONE_PENDING_STATE = 1; - var DONE_COMPLETE_STATE = 2; - - AnimateRunner.chain = function(chain, callback) { - var index = 0; - - next(); - function next() { - if (index === chain.length) { - callback(true); - return; - } - - chain[index](function(response) { - if (response === false) { - callback(false); - return; - } - index++; - next(); - }); - } - }; - - AnimateRunner.all = function(runners, callback) { - var count = 0; - var status = true; - forEach(runners, function(runner) { - runner.done(onProgress); - }); - - function onProgress(response) { - status = status && response; - if (++count === runners.length) { - callback(status); - } - } - }; - - function AnimateRunner(host) { - this.setHost(host); - - this._doneCallbacks = []; - this._runInAnimationFrame = $$animateAsyncRun(); - this._state = 0; - } - - AnimateRunner.prototype = { - setHost: function(host) { - this.host = host || {}; - }, - - done: function(fn) { - if (this._state === DONE_COMPLETE_STATE) { - fn(); - } else { - this._doneCallbacks.push(fn); - } - }, - - progress: noop, - - getPromise: function() { - if (!this.promise) { - var self = this; - this.promise = $q(function(resolve, reject) { - self.done(function(status) { - status === false ? reject() : resolve(); - }); - }); - } - return this.promise; - }, - - then: function(resolveHandler, rejectHandler) { - return this.getPromise().then(resolveHandler, rejectHandler); - }, - - 'catch': function(handler) { - return this.getPromise()['catch'](handler); - }, - - 'finally': function(handler) { - return this.getPromise()['finally'](handler); - }, - - pause: function() { - if (this.host.pause) { - this.host.pause(); - } - }, - - resume: function() { - if (this.host.resume) { - this.host.resume(); - } - }, - - end: function() { - if (this.host.end) { - this.host.end(); - } - this._resolve(true); - }, - - cancel: function() { - if (this.host.cancel) { - this.host.cancel(); - } - this._resolve(false); - }, - - complete: function(response) { - var self = this; - if (self._state === INITIAL_STATE) { - self._state = DONE_PENDING_STATE; - self._runInAnimationFrame(function() { - self._resolve(response); - }); - } - }, - - _resolve: function(response) { - if (this._state !== DONE_COMPLETE_STATE) { - forEach(this._doneCallbacks, function(fn) { - fn(response); - }); - this._doneCallbacks.length = 0; - this._state = DONE_COMPLETE_STATE; - } - } - }; - - return AnimateRunner; -}]; diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js index 059ebfda4229..ce4e09552cff 100644 --- a/src/ngAnimate/module.js +++ b/src/ngAnimate/module.js @@ -5,7 +5,6 @@ $$AnimateAsyncRunFactory, $$rAFSchedulerFactory, $$AnimateChildrenDirective, - $$AnimateRunnerFactory, $$AnimateQueueProvider, $$AnimationProvider, $AnimateCssProvider, @@ -741,9 +740,6 @@ angular.module('ngAnimate', []) .directive('ngAnimateChildren', $$AnimateChildrenDirective) .factory('$$rAFScheduler', $$rAFSchedulerFactory) - .factory('$$AnimateRunner', $$AnimateRunnerFactory) - .factory('$$animateAsyncRun', $$AnimateAsyncRunFactory) - .provider('$$animateQueue', $$AnimateQueueProvider) .provider('$$animation', $$AnimationProvider) diff --git a/test/ngAnimate/animateRunnerSpec.js b/test/ng/animateRunnerSpec.js similarity index 99% rename from test/ngAnimate/animateRunnerSpec.js rename to test/ng/animateRunnerSpec.js index f4526d8abb57..d6fab470e8df 100644 --- a/test/ngAnimate/animateRunnerSpec.js +++ b/test/ng/animateRunnerSpec.js @@ -1,8 +1,8 @@ 'use strict'; -describe('$$animateAsyncRun', function() { - beforeEach(module('ngAnimate')); +/* jshint newcap: false */ +describe('$$animateAsyncRun', function() { it('should fire the callback only when one or more RAFs have passed', inject(function($$animateAsyncRun, $$rAF) { @@ -32,9 +32,6 @@ describe('$$animateAsyncRun', function() { }); describe("$$AnimateRunner", function() { - - beforeEach(module('ngAnimate')); - they("should trigger the host $prop function", ['end', 'cancel', 'pause', 'resume'], function(method) { From d2cd8b9bb6a4e805e26a0de20f13871bd055426b Mon Sep 17 00:00:00 2001 From: Anas Qadrei Date: Fri, 20 Nov 2015 11:38:47 +1100 Subject: [PATCH 107/354] docs(error/nobase): making visible in html Closes #13350 --- docs/content/error/$location/nobase.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/error/$location/nobase.ngdoc b/docs/content/error/$location/nobase.ngdoc index 69500d43a767..ad90064cdba0 100644 --- a/docs/content/error/$location/nobase.ngdoc +++ b/docs/content/error/$location/nobase.ngdoc @@ -1,6 +1,6 @@ @ngdoc error @name $location:nobase -@fullName $location in HTML5 mode requires a tag to be present! +@fullName $location in HTML5 mode requires a `` tag to be present! @description If you configure {@link ng.$location `$location`} to use @@ -15,7 +15,7 @@ $locationProvider.html5Mode({ }); ``` -Note that removing the requirement for a tag will have adverse side effects when resolving +Note that removing the requirement for a `` tag will have adverse side effects when resolving relative paths with `$location` in IE9. The base URL is then used to resolve all relative URLs throughout the application regardless of the From 7a36128efc06c286416164ab8a782c2b4f90d6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Salgado?= Date: Fri, 16 Oct 2015 21:37:48 +0200 Subject: [PATCH 108/354] docs(angular.element): note that it does not find elements by tag name / selector Closes #13107 Closes #13113 --- src/jqLite.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/jqLite.js b/src/jqLite.js index 34010092c0b0..15a56d9e06c2 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -44,6 +44,10 @@ *
    **Note:** all element references in Angular are always wrapped with jQuery or * jqLite; they are never raw DOM references.
    * + *
    **Note:** Keep in mind that this function will not find elements + * by tag name / CSS selector. For lookups by tag name, try instead `angular.element(document).find(...)` + * or `$document.find()`, or use the standard DOM APIs, e.g. `document.querySelectorAll()`.
    + * * ## Angular's jqLite * jqLite provides only the following jQuery methods: * From 057f78de8bac04e91e31fe46701a9501bf2656a3 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 20 Nov 2015 18:05:34 +0100 Subject: [PATCH 109/354] docs(angular.element): add more info, fix formatting - add info about ngJq - fix alert box - add info about css function --- src/jqLite.js | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/src/jqLite.js b/src/jqLite.js index 15a56d9e06c2..fe05f6ba4591 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -33,16 +33,18 @@ * * If jQuery is available, `angular.element` is an alias for the * [jQuery](http://api.jquery.com/jQuery/) function. If jQuery is not available, `angular.element` - * delegates to Angular's built-in subset of jQuery, called "jQuery lite" or "jqLite." + * delegates to Angular's built-in subset of jQuery, called "jQuery lite" or **jqLite**. * - *
    jqLite is a tiny, API-compatible subset of jQuery that allows - * Angular to manipulate the DOM in a cross-browser compatible way. **jqLite** implements only the most - * commonly needed functionality with the goal of having a very small footprint.
    + * jqLite is a tiny, API-compatible subset of jQuery that allows + * Angular to manipulate the DOM in a cross-browser compatible way. jqLite implements only the most + * commonly needed functionality with the goal of having a very small footprint. * - * To use `jQuery`, simply ensure it is loaded before the `angular.js` file. + * To use `jQuery`, simply ensure it is loaded before the `angular.js` file. You can also use the + * {@link ngJq `ngJq`} directive to specify that jqlite should be used over jQuery, or to use a + * specific version of jQuery if multiple versions exist on the page. * - *
    **Note:** all element references in Angular are always wrapped with jQuery or - * jqLite; they are never raw DOM references.
    + *
    **Note:** All element references in Angular are always wrapped with jQuery or + * jqLite (such as the element argument in a directive's compile / link function). They are never raw DOM references.
    * *
    **Note:** Keep in mind that this function will not find elements * by tag name / CSS selector. For lookups by tag name, try instead `angular.element(document).find(...)` @@ -59,7 +61,8 @@ * - [`children()`](http://api.jquery.com/children/) - Does not support selectors * - [`clone()`](http://api.jquery.com/clone/) * - [`contents()`](http://api.jquery.com/contents/) - * - [`css()`](http://api.jquery.com/css/) - Only retrieves inline-styles, does not call `getComputedStyle()`. As a setter, does not convert numbers to strings or append 'px'. + * - [`css()`](http://api.jquery.com/css/) - Only retrieves inline-styles, does not call `getComputedStyle()`. + * As a setter, does not convert numbers to strings or append 'px', and also does not have automatic property prefixing. * - [`data()`](http://api.jquery.com/data/) * - [`detach()`](http://api.jquery.com/detach/) * - [`empty()`](http://api.jquery.com/empty/) From f780aba434e682cb3e14747216d66f06b2fae4c8 Mon Sep 17 00:00:00 2001 From: Anita Perala Date: Thu, 19 Nov 2015 13:48:19 -0500 Subject: [PATCH 110/354] docs(guide/Conceptual Overview): add missing object in sentence docs: minor grammar fix missing word in overview Closes #13346 --- docs/content/guide/concepts.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/concepts.ngdoc b/docs/content/guide/concepts.ngdoc index fe1129e6125f..d72495a3ac33 100644 --- a/docs/content/guide/concepts.ngdoc +++ b/docs/content/guide/concepts.ngdoc @@ -76,7 +76,7 @@ stores/updates the value of the input field into/from a variable. The second kind of new markup are the double curly braces `{{ expression | filter }}`: When the compiler encounters this markup, it will replace it with the evaluated value of the markup. An {@link expression expression} in a template is a JavaScript-like code snippet that allows -to read and write variables. Note that those variables are not global variables. +Angular to read and write variables. Note that those variables are not global variables. Just like variables in a JavaScript function live in a scope, Angular provides a {@link scope scope} for the variables accessible to expressions. The values that are stored in variables on the scope are referred to as the *model* From 54c4041ebc0cc4df70cf6996f43a6aaaf56d46bd Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 14 Sep 2015 12:13:07 +0200 Subject: [PATCH 111/354] feat(ngLocale): add support for standalone months This is needed for languages for which the month on its own has a different format (case) than when used as part of a date. Closes #3744 Fixes #10247 Fixes #12642 Closes #12844 --- i18n/spec/closureI18nExtractorSpec.js | 4 ++++ i18n/spec/converterSpec.js | 2 ++ i18n/src/converter.js | 1 + 3 files changed, 7 insertions(+) diff --git a/i18n/spec/closureI18nExtractorSpec.js b/i18n/spec/closureI18nExtractorSpec.js index 07641ca9ffce..d3ebc843bdb1 100644 --- a/i18n/spec/closureI18nExtractorSpec.js +++ b/i18n/spec/closureI18nExtractorSpec.js @@ -11,6 +11,8 @@ function newTestLocaleInfo() { DATETIME_FORMATS: { MONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'], + STANDALONEMONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', + 'octobre', 'novembre', 'décembre'], SHORTMONTH: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'], DAY: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], @@ -180,6 +182,8 @@ describe("extractDateTimeSymbols", function() { DATETIME_FORMATS: { MONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'], + STANDALONEMONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', + 'août', 'septembre', 'octobre', 'novembre', 'décembre'], SHORTMONTH: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'], DAY: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], diff --git a/i18n/spec/converterSpec.js b/i18n/spec/converterSpec.js index e02bde9f4155..43b8d7223507 100644 --- a/i18n/spec/converterSpec.js +++ b/i18n/spec/converterSpec.js @@ -27,6 +27,7 @@ describe("convertNumberData", function() { describe("convertDatetimeData", function() { var convert = converter.convertDatetimeData, dataObj = { MONTHS: ['Enero', 'Pebrero'], + STANDALONEMONTHS: ['Enero', 'Pebrero'], SHORTMONTHS: ['Ene', 'Peb'], WEEKDAYS: ['Linggo', 'Lunes'], SHORTWEEKDAYS: ['Lin', 'Lun'], @@ -37,6 +38,7 @@ describe("convertDatetimeData", function() { it('should convert empty datetime obj', function() { var processedData = convert(dataObj); expect(processedData.MONTH).toEqual(['Enero', 'Pebrero']); + expect(processedData.STANDALONEMONTH).toEqual(['Enero', 'Pebrero']); expect(processedData.SHORTMONTH).toEqual(['Ene', 'Peb']); expect(processedData.DAY).toEqual(['Linggo', 'Lunes']); expect(processedData.SHORTDAY).toEqual(['Lin', 'Lun']); diff --git a/i18n/src/converter.js b/i18n/src/converter.js index 259dbd0e747a..9f5c3527677e 100644 --- a/i18n/src/converter.js +++ b/i18n/src/converter.js @@ -39,6 +39,7 @@ function convertDatetimeData(dataObj) { datetimeFormats.MONTH = dataObj.MONTHS; datetimeFormats.SHORTMONTH = dataObj.SHORTMONTHS; + datetimeFormats.STANDALONEMONTH = dataObj.STANDALONEMONTHS; datetimeFormats.DAY = dataObj.WEEKDAYS; datetimeFormats.SHORTDAY = dataObj.SHORTWEEKDAYS; datetimeFormats.AMPMS = dataObj.AMPMS; From 4e94864e549146c7512a6bd2ea9471eef2a6d106 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 14 Sep 2015 12:51:45 +0200 Subject: [PATCH 112/354] chore(i18n): update locale files with standalone months Closes #12844 --- src/ngLocale/angular-locale_af-na.js | 14 ++++++++++++++ src/ngLocale/angular-locale_af-za.js | 14 ++++++++++++++ src/ngLocale/angular-locale_af.js | 14 ++++++++++++++ src/ngLocale/angular-locale_agq-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_agq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ak-gh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ak.js | 14 ++++++++++++++ src/ngLocale/angular-locale_am-et.js | 14 ++++++++++++++ src/ngLocale/angular-locale_am.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-001.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ae.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-bh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-dj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-dz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-eg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-eh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-er.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-il.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-iq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-jo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-km.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-kw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-lb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ly.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-mr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-om.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ps.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-qa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-sa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-sd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-so.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ss.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-sy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-td.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-tn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar-ye.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ar.js | 14 ++++++++++++++ src/ngLocale/angular-locale_as-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_as.js | 14 ++++++++++++++ src/ngLocale/angular-locale_asa-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_asa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ast-es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ast.js | 14 ++++++++++++++ src/ngLocale/angular-locale_az-cyrl-az.js | 14 ++++++++++++++ src/ngLocale/angular-locale_az-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_az-latn-az.js | 14 ++++++++++++++ src/ngLocale/angular-locale_az-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_az.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bas-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bas.js | 14 ++++++++++++++ src/ngLocale/angular-locale_be-by.js | 14 ++++++++++++++ src/ngLocale/angular-locale_be.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bem-zm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bem.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bez-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bez.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bg-bg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bm-latn-ml.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bm-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bn-bd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bn-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bo-cn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bo-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_br-fr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_br.js | 14 ++++++++++++++ src/ngLocale/angular-locale_brx-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_brx.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bs-cyrl-ba.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bs-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bs-latn-ba.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bs-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_bs.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca-ad.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca-es-valencia.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca-es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca-fr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca-it.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ca.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cgg-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cgg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_chr-us.js | 14 ++++++++++++++ src/ngLocale/angular-locale_chr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-arab-iq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-arab-ir.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-arab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-iq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-ir.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-latn-iq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ckb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cs-cz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cs.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cy-gb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_cy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_da-dk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_da-gl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_da.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dav-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dav.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-at.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-be.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-de.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-li.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de-lu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_de.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dje-ne.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dje.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dsb-de.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dsb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dua-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dua.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dyo-sn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dyo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dz-bt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_dz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ebu-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ebu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ee-gh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ee-tg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ee.js | 14 ++++++++++++++ src/ngLocale/angular-locale_el-cy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_el-gr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_el.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-001.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-150.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ag.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ai.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-as.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-au.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-bb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-be.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-bm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-bs.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-bw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-bz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ca.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-cc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ck.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-cx.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-dg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-dm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-er.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-fj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-fk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-fm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-gy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-hk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ie.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-im.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-io.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-iso.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-je.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-jm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ki.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-kn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ky.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-lc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-lr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ls.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mp.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ms.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-mw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-my.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-na.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-nf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ng.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-nr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-nu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-nz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-pg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ph.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-pk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-pn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-pr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-pw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-rw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ss.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sx.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-sz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-tc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-tk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-to.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-tt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-tv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-um.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-us.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-vc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-vg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-vi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-vu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-ws.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-za.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-zm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en-zw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_en.js | 14 ++++++++++++++ src/ngLocale/angular-locale_eo-001.js | 14 ++++++++++++++ src/ngLocale/angular-locale_eo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-419.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ar.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-bo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-cl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-co.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-cr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-cu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-do.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ea.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ec.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-gq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-gt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-hn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ic.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-mx.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ni.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-pa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-pe.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ph.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-pr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-py.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-sv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-us.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-uy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es-ve.js | 14 ++++++++++++++ src/ngLocale/angular-locale_es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_et-ee.js | 14 ++++++++++++++ src/ngLocale/angular-locale_et.js | 14 ++++++++++++++ src/ngLocale/angular-locale_eu-es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_eu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ewo-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ewo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fa-af.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fa-ir.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ff-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ff-gn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ff-mr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ff-sn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ff.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fi-fi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fil-ph.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fil.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fo-fo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-be.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-bf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-bi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-bj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-bl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ca.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-cd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-cf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-cg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ci.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-dj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-dz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-fr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ga.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-gf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-gn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-gp.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-gq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ht.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-km.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-lu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ml.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-mu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-nc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-ne.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-pf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-pm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-re.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-rw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-sc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-sn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-sy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-td.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-tg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-tn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-vu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-wf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr-yt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fur-it.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fur.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fy-nl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_fy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ga-ie.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ga.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gd-gb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gl-es.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gsw-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gsw-fr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gsw-li.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gsw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gu-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_guz-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_guz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gv-im.js | 14 ++++++++++++++ src/ngLocale/angular-locale_gv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ha-latn-gh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ha-latn-ne.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ha-latn-ng.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ha-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ha.js | 14 ++++++++++++++ src/ngLocale/angular-locale_haw-us.js | 14 ++++++++++++++ src/ngLocale/angular-locale_haw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_he-il.js | 14 ++++++++++++++ src/ngLocale/angular-locale_he.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hi-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hr-ba.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hr-hr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hsb-de.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hsb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hu-hu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hy-am.js | 14 ++++++++++++++ src/ngLocale/angular-locale_hy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_id-id.js | 14 ++++++++++++++ src/ngLocale/angular-locale_id.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ig-ng.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ig.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ii-cn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ii.js | 14 ++++++++++++++ src/ngLocale/angular-locale_in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_is-is.js | 14 ++++++++++++++ src/ngLocale/angular-locale_is.js | 14 ++++++++++++++ src/ngLocale/angular-locale_it-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_it-it.js | 14 ++++++++++++++ src/ngLocale/angular-locale_it-sm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_it.js | 14 ++++++++++++++ src/ngLocale/angular-locale_iw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ja-jp.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ja.js | 14 ++++++++++++++ src/ngLocale/angular-locale_jgo-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_jgo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_jmc-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_jmc.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ka-ge.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ka.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kab-dz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kam-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kam.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kde-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kde.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kea-cv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kea.js | 14 ++++++++++++++ src/ngLocale/angular-locale_khq-ml.js | 14 ++++++++++++++ src/ngLocale/angular-locale_khq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ki-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ki.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kk-cyrl-kz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kk-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kkj-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kkj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kl-gl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kln-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kln.js | 14 ++++++++++++++ src/ngLocale/angular-locale_km-kh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_km.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kn-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ko-kp.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ko-kr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ko.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kok-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kok.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ks-arab-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ks-arab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ks.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksb-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksf-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksh-de.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ksh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kw-gb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_kw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ky-cyrl-kg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ky-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ky.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lag-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lag.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lb-lu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lg-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lkt-us.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lkt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ln-ao.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ln-cd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ln-cf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ln-cg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ln.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lo-la.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lt-lt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lu-cd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_luo-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_luo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_luy-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_luy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lv-lv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_lv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mas-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mas-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mas.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mer-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mer.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mfe-mu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mfe.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mg-mg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mgh-mz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mgh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mgo-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mgo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mk-mk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ml-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ml.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mn-cyrl-mn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mn-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mr-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ms-latn-bn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ms-latn-my.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ms-latn-sg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ms-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ms.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mt-mt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mua-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_mua.js | 14 ++++++++++++++ src/ngLocale/angular-locale_my-mm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_my.js | 14 ++++++++++++++ src/ngLocale/angular-locale_naq-na.js | 14 ++++++++++++++ src/ngLocale/angular-locale_naq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nb-no.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nb-sj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nb.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nd-zw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ne-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ne-np.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ne.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-aw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-be.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-bq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-cw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-nl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-sr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl-sx.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nmg-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nmg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nn-no.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nnh-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nnh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_no-no.js | 14 ++++++++++++++ src/ngLocale/angular-locale_no.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nus-sd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nus.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nyn-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_nyn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_om-et.js | 14 ++++++++++++++ src/ngLocale/angular-locale_om-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_om.js | 14 ++++++++++++++ src/ngLocale/angular-locale_or-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_or.js | 14 ++++++++++++++ src/ngLocale/angular-locale_os-ge.js | 14 ++++++++++++++ src/ngLocale/angular-locale_os-ru.js | 14 ++++++++++++++ src/ngLocale/angular-locale_os.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pa-arab-pk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pa-arab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pa-guru-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pa-guru.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pa.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pl-pl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ps-af.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ps.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-ao.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-br.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-cv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-gw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-mo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-mz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-pt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-st.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt-tl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_pt.js | 14 ++++++++++++++ src/ngLocale/angular-locale_qu-bo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_qu-ec.js | 14 ++++++++++++++ src/ngLocale/angular-locale_qu-pe.js | 14 ++++++++++++++ src/ngLocale/angular-locale_qu.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rm-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rn-bi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ro-md.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ro-ro.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ro.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rof-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rof.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-by.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-kg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-kz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-md.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-ru.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru-ua.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ru.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rw-rw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rwk-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_rwk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sah-ru.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sah.js | 14 ++++++++++++++ src/ngLocale/angular-locale_saq-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_saq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sbp-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sbp.js | 14 ++++++++++++++ src/ngLocale/angular-locale_se-fi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_se-no.js | 14 ++++++++++++++ src/ngLocale/angular-locale_se-se.js | 14 ++++++++++++++ src/ngLocale/angular-locale_se.js | 14 ++++++++++++++ src/ngLocale/angular-locale_seh-mz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_seh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ses-ml.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ses.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sg-cf.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_shi-latn-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_shi-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_shi-tfng-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_shi-tfng.js | 14 ++++++++++++++ src/ngLocale/angular-locale_shi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_si-lk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_si.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sk-sk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sl-si.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_smn-fi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_smn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sn-zw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_so-dj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_so-et.js | 14 ++++++++++++++ src/ngLocale/angular-locale_so-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_so-so.js | 14 ++++++++++++++ src/ngLocale/angular-locale_so.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sq-al.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sq-mk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sq-xk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-cyrl-ba.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-cyrl-me.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-cyrl-rs.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-cyrl-xk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-latn-ba.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-latn-me.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-latn-rs.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-latn-xk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sv-ax.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sv-fi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sv-se.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sv.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sw-cd.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sw-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sw-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sw-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_sw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ta-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ta-lk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ta-my.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ta-sg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ta.js | 14 ++++++++++++++ src/ngLocale/angular-locale_te-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_te.js | 14 ++++++++++++++ src/ngLocale/angular-locale_teo-ke.js | 14 ++++++++++++++ src/ngLocale/angular-locale_teo-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_teo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_th-th.js | 14 ++++++++++++++ src/ngLocale/angular-locale_th.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ti-er.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ti-et.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ti.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_to-to.js | 14 ++++++++++++++ src/ngLocale/angular-locale_to.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tr-cy.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tr-tr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_twq-ne.js | 14 ++++++++++++++ src/ngLocale/angular-locale_twq.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tzm-latn-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tzm-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_tzm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ug-arab-cn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ug-arab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uk-ua.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ur-in.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ur-pk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_ur.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-arab-af.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-arab.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-cyrl-uz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-cyrl.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-latn-uz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_uz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vai-latn-lr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vai-latn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vai-vaii-lr.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vai-vaii.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vai.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vi-vn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vun-tz.js | 14 ++++++++++++++ src/ngLocale/angular-locale_vun.js | 14 ++++++++++++++ src/ngLocale/angular-locale_wae-ch.js | 14 ++++++++++++++ src/ngLocale/angular-locale_wae.js | 14 ++++++++++++++ src/ngLocale/angular-locale_xog-ug.js | 14 ++++++++++++++ src/ngLocale/angular-locale_xog.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yav-cm.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yav.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yi-001.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yi.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yo-bj.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yo-ng.js | 14 ++++++++++++++ src/ngLocale/angular-locale_yo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zgh-ma.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zgh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-cn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hans-cn.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hans-hk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hans-mo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hans-sg.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hans.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hant-hk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hant-mo.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hant-tw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hant.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-hk.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh-tw.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zh.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zu-za.js | 14 ++++++++++++++ src/ngLocale/angular-locale_zu.js | 14 ++++++++++++++ 703 files changed, 9842 insertions(+) diff --git a/src/ngLocale/angular-locale_af-na.js b/src/ngLocale/angular-locale_af-na.js index 4647a92bce44..80d1da82450d 100644 --- a/src/ngLocale/angular-locale_af-na.js +++ b/src/ngLocale/angular-locale_af-na.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januarie", + "Februarie", + "Maart", + "April", + "Mei", + "Junie", + "Julie", + "Augustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_af-za.js b/src/ngLocale/angular-locale_af-za.js index 38c2217c90f1..5af98ce200ff 100644 --- a/src/ngLocale/angular-locale_af-za.js +++ b/src/ngLocale/angular-locale_af-za.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januarie", + "Februarie", + "Maart", + "April", + "Mei", + "Junie", + "Julie", + "Augustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_af.js b/src/ngLocale/angular-locale_af.js index 9ed43d14fe6b..6d7cda4afe22 100644 --- a/src/ngLocale/angular-locale_af.js +++ b/src/ngLocale/angular-locale_af.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januarie", + "Februarie", + "Maart", + "April", + "Mei", + "Junie", + "Julie", + "Augustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_agq-cm.js b/src/ngLocale/angular-locale_agq-cm.js index 9d3f9e9cdd81..ec1fadd41627 100644 --- a/src/ngLocale/angular-locale_agq-cm.js +++ b/src/ngLocale/angular-locale_agq-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "kaa", "fwo" ], + "STANDALONEMONTH": [ + "ndz\u0254\u0300\u014b\u0254\u0300n\u00f9m", + "ndz\u0254\u0300\u014b\u0254\u0300k\u0197\u0300z\u00f9\u0294", + "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300d\u0289\u0300gh\u00e0", + "ndz\u0254\u0300\u014b\u0254\u0300t\u01ceaf\u0289\u0304gh\u0101", + "ndz\u0254\u0300\u014b\u00e8s\u00e8e", + "ndz\u0254\u0300\u014b\u0254\u0300nz\u00f9gh\u00f2", + "ndz\u0254\u0300\u014b\u0254\u0300d\u00f9mlo", + "ndz\u0254\u0300\u014b\u0254\u0300kw\u00eef\u0254\u0300e", + "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300f\u0289\u0300gh\u00e0dzugh\u00f9", + "ndz\u0254\u0300\u014b\u0254\u0300gh\u01d4uwel\u0254\u0300m", + "ndz\u0254\u0300\u014b\u0254\u0300chwa\u0294\u00e0kaa wo", + "ndz\u0254\u0300\u014b\u00e8fw\u00f2o" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_agq.js b/src/ngLocale/angular-locale_agq.js index 2bd28260de13..739a5d12caa8 100644 --- a/src/ngLocale/angular-locale_agq.js +++ b/src/ngLocale/angular-locale_agq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "kaa", "fwo" ], + "STANDALONEMONTH": [ + "ndz\u0254\u0300\u014b\u0254\u0300n\u00f9m", + "ndz\u0254\u0300\u014b\u0254\u0300k\u0197\u0300z\u00f9\u0294", + "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300d\u0289\u0300gh\u00e0", + "ndz\u0254\u0300\u014b\u0254\u0300t\u01ceaf\u0289\u0304gh\u0101", + "ndz\u0254\u0300\u014b\u00e8s\u00e8e", + "ndz\u0254\u0300\u014b\u0254\u0300nz\u00f9gh\u00f2", + "ndz\u0254\u0300\u014b\u0254\u0300d\u00f9mlo", + "ndz\u0254\u0300\u014b\u0254\u0300kw\u00eef\u0254\u0300e", + "ndz\u0254\u0300\u014b\u0254\u0300t\u0197\u0300f\u0289\u0300gh\u00e0dzugh\u00f9", + "ndz\u0254\u0300\u014b\u0254\u0300gh\u01d4uwel\u0254\u0300m", + "ndz\u0254\u0300\u014b\u0254\u0300chwa\u0294\u00e0kaa wo", + "ndz\u0254\u0300\u014b\u00e8fw\u00f2o" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ak-gh.js b/src/ngLocale/angular-locale_ak-gh.js index 8407b96f03d9..8a2f352a790b 100644 --- a/src/ngLocale/angular-locale_ak-gh.js +++ b/src/ngLocale/angular-locale_ak-gh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0186-O", "M-\u0186" ], + "STANDALONEMONTH": [ + "Sanda-\u0186p\u025bp\u0254n", + "Kwakwar-\u0186gyefuo", + "Eb\u0254w-\u0186benem", + "Eb\u0254bira-Oforisuo", + "Esusow Aketseaba-K\u0254t\u0254nimba", + "Obirade-Ay\u025bwohomumu", + "Ay\u025bwoho-Kitawonsa", + "Difuu-\u0186sandaa", + "Fankwa-\u0190b\u0254", + "\u0186b\u025bs\u025b-Ahinime", + "\u0186ber\u025bf\u025bw-Obubuo", + "Mumu-\u0186p\u025bnimba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ak.js b/src/ngLocale/angular-locale_ak.js index 9117b35478c2..f0b39a0cfc5c 100644 --- a/src/ngLocale/angular-locale_ak.js +++ b/src/ngLocale/angular-locale_ak.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0186-O", "M-\u0186" ], + "STANDALONEMONTH": [ + "Sanda-\u0186p\u025bp\u0254n", + "Kwakwar-\u0186gyefuo", + "Eb\u0254w-\u0186benem", + "Eb\u0254bira-Oforisuo", + "Esusow Aketseaba-K\u0254t\u0254nimba", + "Obirade-Ay\u025bwohomumu", + "Ay\u025bwoho-Kitawonsa", + "Difuu-\u0186sandaa", + "Fankwa-\u0190b\u0254", + "\u0186b\u025bs\u025b-Ahinime", + "\u0186ber\u025bf\u025bw-Obubuo", + "Mumu-\u0186p\u025bnimba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_am-et.js b/src/ngLocale/angular-locale_am-et.js index 77b38ff85c34..fcd9355af1da 100644 --- a/src/ngLocale/angular-locale_am-et.js +++ b/src/ngLocale/angular-locale_am-et.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u1296\u126c\u121d", "\u12f2\u1234\u121d" ], + "STANDALONEMONTH": [ + "\u1303\u1295\u12e9\u12c8\u122a", + "\u134c\u1265\u1229\u12c8\u122a", + "\u121b\u122d\u127d", + "\u12a4\u1355\u122a\u120d", + "\u121c\u12ed", + "\u1301\u1295", + "\u1301\u120b\u12ed", + "\u12a6\u1308\u1235\u1275", + "\u1234\u1355\u1274\u121d\u1260\u122d", + "\u12a6\u12ad\u1276\u1260\u122d", + "\u1296\u126c\u121d\u1260\u122d", + "\u12f2\u1234\u121d\u1260\u122d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_am.js b/src/ngLocale/angular-locale_am.js index 03146492613b..995dbfa2e970 100644 --- a/src/ngLocale/angular-locale_am.js +++ b/src/ngLocale/angular-locale_am.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u1296\u126c\u121d", "\u12f2\u1234\u121d" ], + "STANDALONEMONTH": [ + "\u1303\u1295\u12e9\u12c8\u122a", + "\u134c\u1265\u1229\u12c8\u122a", + "\u121b\u122d\u127d", + "\u12a4\u1355\u122a\u120d", + "\u121c\u12ed", + "\u1301\u1295", + "\u1301\u120b\u12ed", + "\u12a6\u1308\u1235\u1275", + "\u1234\u1355\u1274\u121d\u1260\u122d", + "\u12a6\u12ad\u1276\u1260\u122d", + "\u1296\u126c\u121d\u1260\u122d", + "\u12f2\u1234\u121d\u1260\u122d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-001.js b/src/ngLocale/angular-locale_ar-001.js index a9a7875acfc7..effd9b374bb6 100644 --- a/src/ngLocale/angular-locale_ar-001.js +++ b/src/ngLocale/angular-locale_ar-001.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-ae.js b/src/ngLocale/angular-locale_ar-ae.js index 6b335da1fca6..e364a6fe28f0 100644 --- a/src/ngLocale/angular-locale_ar-ae.js +++ b/src/ngLocale/angular-locale_ar-ae.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-bh.js b/src/ngLocale/angular-locale_ar-bh.js index 361f8ab9ae2b..8e27b34c576e 100644 --- a/src/ngLocale/angular-locale_ar-bh.js +++ b/src/ngLocale/angular-locale_ar-bh.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-dj.js b/src/ngLocale/angular-locale_ar-dj.js index d44bbce005f3..acc474e1e139 100644 --- a/src/ngLocale/angular-locale_ar-dj.js +++ b/src/ngLocale/angular-locale_ar-dj.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-dz.js b/src/ngLocale/angular-locale_ar-dz.js index 871d2ce49f87..b0a84c8a4389 100644 --- a/src/ngLocale/angular-locale_ar-dz.js +++ b/src/ngLocale/angular-locale_ar-dz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0627\u0646\u0641\u064a", + "\u0641\u064a\u0641\u0631\u064a", + "\u0645\u0627\u0631\u0633", + "\u0623\u0641\u0631\u064a\u0644", + "\u0645\u0627\u064a", + "\u062c\u0648\u0627\u0646", + "\u062c\u0648\u064a\u0644\u064a\u0629", + "\u0623\u0648\u062a", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-eg.js b/src/ngLocale/angular-locale_ar-eg.js index 734c629af2ee..bed2e1189d70 100644 --- a/src/ngLocale/angular-locale_ar-eg.js +++ b/src/ngLocale/angular-locale_ar-eg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-eh.js b/src/ngLocale/angular-locale_ar-eh.js index f9c2666aac0d..9901324b6c6c 100644 --- a/src/ngLocale/angular-locale_ar-eh.js +++ b/src/ngLocale/angular-locale_ar-eh.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-er.js b/src/ngLocale/angular-locale_ar-er.js index 0510d70bb609..277a7beae6a6 100644 --- a/src/ngLocale/angular-locale_ar-er.js +++ b/src/ngLocale/angular-locale_ar-er.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-il.js b/src/ngLocale/angular-locale_ar-il.js index ea6e8932206e..3accb0c3a91c 100644 --- a/src/ngLocale/angular-locale_ar-il.js +++ b/src/ngLocale/angular-locale_ar-il.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-iq.js b/src/ngLocale/angular-locale_ar-iq.js index 9f08ac2f148f..f7b1e2d0879c 100644 --- a/src/ngLocale/angular-locale_ar-iq.js +++ b/src/ngLocale/angular-locale_ar-iq.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" ], + "STANDALONEMONTH": [ + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0634\u0628\u0627\u0637", + "\u0622\u0630\u0627\u0631", + "\u0646\u064a\u0633\u0627\u0646", + "\u0623\u064a\u0627\u0631", + "\u062d\u0632\u064a\u0631\u0627\u0646", + "\u062a\u0645\u0648\u0632", + "\u0622\u0628", + "\u0623\u064a\u0644\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-jo.js b/src/ngLocale/angular-locale_ar-jo.js index 793b353446d6..80abb584b01f 100644 --- a/src/ngLocale/angular-locale_ar-jo.js +++ b/src/ngLocale/angular-locale_ar-jo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" ], + "STANDALONEMONTH": [ + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0634\u0628\u0627\u0637", + "\u0622\u0630\u0627\u0631", + "\u0646\u064a\u0633\u0627\u0646", + "\u0623\u064a\u0627\u0631", + "\u062d\u0632\u064a\u0631\u0627\u0646", + "\u062a\u0645\u0648\u0632", + "\u0622\u0628", + "\u0623\u064a\u0644\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-km.js b/src/ngLocale/angular-locale_ar-km.js index 6f9031decc57..6081dec92fd5 100644 --- a/src/ngLocale/angular-locale_ar-km.js +++ b/src/ngLocale/angular-locale_ar-km.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-kw.js b/src/ngLocale/angular-locale_ar-kw.js index b0b55a7b8b8b..0f73d82fed80 100644 --- a/src/ngLocale/angular-locale_ar-kw.js +++ b/src/ngLocale/angular-locale_ar-kw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-lb.js b/src/ngLocale/angular-locale_ar-lb.js index b2eb263a2bef..c392373ccb9b 100644 --- a/src/ngLocale/angular-locale_ar-lb.js +++ b/src/ngLocale/angular-locale_ar-lb.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" ], + "STANDALONEMONTH": [ + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0634\u0628\u0627\u0637", + "\u0622\u0630\u0627\u0631", + "\u0646\u064a\u0633\u0627\u0646", + "\u0623\u064a\u0627\u0631", + "\u062d\u0632\u064a\u0631\u0627\u0646", + "\u062a\u0645\u0648\u0632", + "\u0622\u0628", + "\u0623\u064a\u0644\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-ly.js b/src/ngLocale/angular-locale_ar-ly.js index 0a9dbf620333..52472f8fee00 100644 --- a/src/ngLocale/angular-locale_ar-ly.js +++ b/src/ngLocale/angular-locale_ar-ly.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-ma.js b/src/ngLocale/angular-locale_ar-ma.js index 589e258a8765..a561ac55a4ed 100644 --- a/src/ngLocale/angular-locale_ar-ma.js +++ b/src/ngLocale/angular-locale_ar-ma.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0646\u0628\u0631", "\u062f\u062c\u0646\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648\u0632", + "\u063a\u0634\u062a", + "\u0634\u062a\u0646\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0646\u0628\u0631", + "\u062f\u062c\u0646\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-mr.js b/src/ngLocale/angular-locale_ar-mr.js index 6fbc49a5bd9d..fc66912d0d5e 100644 --- a/src/ngLocale/angular-locale_ar-mr.js +++ b/src/ngLocale/angular-locale_ar-mr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u062c\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0625\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0634\u062a", + "\u0634\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u062c\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-om.js b/src/ngLocale/angular-locale_ar-om.js index b12fc5769a89..9e25eb590b36 100644 --- a/src/ngLocale/angular-locale_ar-om.js +++ b/src/ngLocale/angular-locale_ar-om.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-ps.js b/src/ngLocale/angular-locale_ar-ps.js index 0e5a8aec12a6..5acf0c046983 100644 --- a/src/ngLocale/angular-locale_ar-ps.js +++ b/src/ngLocale/angular-locale_ar-ps.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" ], + "STANDALONEMONTH": [ + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0634\u0628\u0627\u0637", + "\u0622\u0630\u0627\u0631", + "\u0646\u064a\u0633\u0627\u0646", + "\u0623\u064a\u0627\u0631", + "\u062d\u0632\u064a\u0631\u0627\u0646", + "\u062a\u0645\u0648\u0632", + "\u0622\u0628", + "\u0623\u064a\u0644\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-qa.js b/src/ngLocale/angular-locale_ar-qa.js index 0007850d4db0..3f1b315b5dd3 100644 --- a/src/ngLocale/angular-locale_ar-qa.js +++ b/src/ngLocale/angular-locale_ar-qa.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-sa.js b/src/ngLocale/angular-locale_ar-sa.js index dcaa4a68fd77..56bc1e5a7bcf 100644 --- a/src/ngLocale/angular-locale_ar-sa.js +++ b/src/ngLocale/angular-locale_ar-sa.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-sd.js b/src/ngLocale/angular-locale_ar-sd.js index 769ce9bf9342..090150f2b9f6 100644 --- a/src/ngLocale/angular-locale_ar-sd.js +++ b/src/ngLocale/angular-locale_ar-sd.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-so.js b/src/ngLocale/angular-locale_ar-so.js index 4aea4a8ef318..40ab8cb0c360 100644 --- a/src/ngLocale/angular-locale_ar-so.js +++ b/src/ngLocale/angular-locale_ar-so.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-ss.js b/src/ngLocale/angular-locale_ar-ss.js index 23338b3f4a3b..01af07a398cb 100644 --- a/src/ngLocale/angular-locale_ar-ss.js +++ b/src/ngLocale/angular-locale_ar-ss.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-sy.js b/src/ngLocale/angular-locale_ar-sy.js index 80f4b5ee1b1b..e2142a322beb 100644 --- a/src/ngLocale/angular-locale_ar-sy.js +++ b/src/ngLocale/angular-locale_ar-sy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" ], + "STANDALONEMONTH": [ + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0634\u0628\u0627\u0637", + "\u0622\u0630\u0627\u0631", + "\u0646\u064a\u0633\u0627\u0646", + "\u0623\u064a\u0627\u0631", + "\u062d\u0632\u064a\u0631\u0627\u0646", + "\u062a\u0645\u0648\u0632", + "\u0622\u0628", + "\u0623\u064a\u0644\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u0623\u0648\u0644", + "\u062a\u0634\u0631\u064a\u0646 \u0627\u0644\u062b\u0627\u0646\u064a", + "\u0643\u0627\u0646\u0648\u0646 \u0627\u0644\u0623\u0648\u0644" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-td.js b/src/ngLocale/angular-locale_ar-td.js index 408e939359c4..643b156c294a 100644 --- a/src/ngLocale/angular-locale_ar-td.js +++ b/src/ngLocale/angular-locale_ar-td.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ar-tn.js b/src/ngLocale/angular-locale_ar-tn.js index 2784ed5fb1a0..b35079e810b2 100644 --- a/src/ngLocale/angular-locale_ar-tn.js +++ b/src/ngLocale/angular-locale_ar-tn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0627\u0646\u0641\u064a", + "\u0641\u064a\u0641\u0631\u064a", + "\u0645\u0627\u0631\u0633", + "\u0623\u0641\u0631\u064a\u0644", + "\u0645\u0627\u064a", + "\u062c\u0648\u0627\u0646", + "\u062c\u0648\u064a\u0644\u064a\u0629", + "\u0623\u0648\u062a", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar-ye.js b/src/ngLocale/angular-locale_ar-ye.js index 700b4aef0ec1..1e4d5db2b171 100644 --- a/src/ngLocale/angular-locale_ar-ye.js +++ b/src/ngLocale/angular-locale_ar-ye.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ar.js b/src/ngLocale/angular-locale_ar.js index dd58093d90a7..1126cef0f6ed 100644 --- a/src/ngLocale/angular-locale_ar.js +++ b/src/ngLocale/angular-locale_ar.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0641\u0645\u0628\u0631", "\u062f\u064a\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0646\u0627\u064a\u0631", + "\u0641\u0628\u0631\u0627\u064a\u0631", + "\u0645\u0627\u0631\u0633", + "\u0623\u0628\u0631\u064a\u0644", + "\u0645\u0627\u064a\u0648", + "\u064a\u0648\u0646\u064a\u0648", + "\u064a\u0648\u0644\u064a\u0648", + "\u0623\u063a\u0633\u0637\u0633", + "\u0633\u0628\u062a\u0645\u0628\u0631", + "\u0623\u0643\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0641\u0645\u0628\u0631", + "\u062f\u064a\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_as-in.js b/src/ngLocale/angular-locale_as-in.js index 27f59242f747..69249bc46b47 100644 --- a/src/ngLocale/angular-locale_as-in.js +++ b/src/ngLocale/angular-locale_as-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u09a8\u09ad\u09c7", "\u09a1\u09bf\u09b8\u09c7" ], + "STANDALONEMONTH": [ + "\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0", + "\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0", + "\u09ae\u09be\u09f0\u09cd\u099a", + "\u098f\u09aa\u09cd\u09f0\u09bf\u09b2", + "\u09ae\u09c7", + "\u099c\u09c1\u09a8", + "\u099c\u09c1\u09b2\u09be\u0987", + "\u0986\u0997\u09b7\u09cd\u099f", + "\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0", + "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0", + "\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0", + "\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_as.js b/src/ngLocale/angular-locale_as.js index 5172d54c643d..07d1d7444d80 100644 --- a/src/ngLocale/angular-locale_as.js +++ b/src/ngLocale/angular-locale_as.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u09a8\u09ad\u09c7", "\u09a1\u09bf\u09b8\u09c7" ], + "STANDALONEMONTH": [ + "\u099c\u09be\u09a8\u09c1\u09f1\u09be\u09f0\u09c0", + "\u09ab\u09c7\u09ac\u09cd\u09f0\u09c1\u09f1\u09be\u09f0\u09c0", + "\u09ae\u09be\u09f0\u09cd\u099a", + "\u098f\u09aa\u09cd\u09f0\u09bf\u09b2", + "\u09ae\u09c7", + "\u099c\u09c1\u09a8", + "\u099c\u09c1\u09b2\u09be\u0987", + "\u0986\u0997\u09b7\u09cd\u099f", + "\u099b\u09c7\u09aa\u09cd\u09a4\u09c7\u09ae\u09cd\u09ac\u09f0", + "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09f0", + "\u09a8\u09f1\u09c7\u09ae\u09cd\u09ac\u09f0", + "\u09a1\u09bf\u099a\u09c7\u09ae\u09cd\u09ac\u09f0" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_asa-tz.js b/src/ngLocale/angular-locale_asa-tz.js index 5add04ffb679..9b8f2d710edd 100644 --- a/src/ngLocale/angular-locale_asa-tz.js +++ b/src/ngLocale/angular-locale_asa-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_asa.js b/src/ngLocale/angular-locale_asa.js index 05e1f0bc8d08..ed938388b6d1 100644 --- a/src/ngLocale/angular-locale_asa.js +++ b/src/ngLocale/angular-locale_asa.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ast-es.js b/src/ngLocale/angular-locale_ast-es.js index af513b1a0907..2f50733f1f9d 100644 --- a/src/ngLocale/angular-locale_ast-es.js +++ b/src/ngLocale/angular-locale_ast-es.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "pay", "avi" ], + "STANDALONEMONTH": [ + "xineru", + "febreru", + "marzu", + "abril", + "mayu", + "xunu", + "xunetu", + "agostu", + "setiembre", + "ochobre", + "payares", + "avientu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ast.js b/src/ngLocale/angular-locale_ast.js index 2fc061ee3ca2..bddf633dd814 100644 --- a/src/ngLocale/angular-locale_ast.js +++ b/src/ngLocale/angular-locale_ast.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "pay", "avi" ], + "STANDALONEMONTH": [ + "xineru", + "febreru", + "marzu", + "abril", + "mayu", + "xunu", + "xunetu", + "agostu", + "setiembre", + "ochobre", + "payares", + "avientu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_az-cyrl-az.js b/src/ngLocale/angular-locale_az-cyrl-az.js index 1b9a6ad94518..ab41008dfd2c 100644 --- a/src/ngLocale/angular-locale_az-cyrl-az.js +++ b/src/ngLocale/angular-locale_az-cyrl-az.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u0458\u0430\u0431\u0440", "\u0434\u0435\u043a\u0430\u0431\u0440" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0432\u0430\u0440", + "\u0444\u0435\u0432\u0440\u0430\u043b", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b", + "\u043c\u0430\u0439", + "\u0438\u0458\u0443\u043d", + "\u0438\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440", + "\u043e\u043a\u0442\u0458\u0430\u0431\u0440", + "\u043d\u043e\u0458\u0430\u0431\u0440", + "\u0434\u0435\u043a\u0430\u0431\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_az-cyrl.js b/src/ngLocale/angular-locale_az-cyrl.js index d9f52819f0c8..484d205ebea1 100644 --- a/src/ngLocale/angular-locale_az-cyrl.js +++ b/src/ngLocale/angular-locale_az-cyrl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u0458\u0430\u0431\u0440", "\u0434\u0435\u043a\u0430\u0431\u0440" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0432\u0430\u0440", + "\u0444\u0435\u0432\u0440\u0430\u043b", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b", + "\u043c\u0430\u0439", + "\u0438\u0458\u0443\u043d", + "\u0438\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u0458\u0430\u0431\u0440", + "\u043e\u043a\u0442\u0458\u0430\u0431\u0440", + "\u043d\u043e\u0458\u0430\u0431\u0440", + "\u0434\u0435\u043a\u0430\u0431\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_az-latn-az.js b/src/ngLocale/angular-locale_az-latn-az.js index 72ff9e80edab..507ff89a838a 100644 --- a/src/ngLocale/angular-locale_az-latn-az.js +++ b/src/ngLocale/angular-locale_az-latn-az.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "noy", "dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "\u0130yun", + "\u0130yul", + "Avqust", + "Sentyabr", + "Oktyabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_az-latn.js b/src/ngLocale/angular-locale_az-latn.js index c01135c85117..e6447a0a7d72 100644 --- a/src/ngLocale/angular-locale_az-latn.js +++ b/src/ngLocale/angular-locale_az-latn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "noy", "dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "\u0130yun", + "\u0130yul", + "Avqust", + "Sentyabr", + "Oktyabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_az.js b/src/ngLocale/angular-locale_az.js index df1dd9e48f55..00c97d2f2cbd 100644 --- a/src/ngLocale/angular-locale_az.js +++ b/src/ngLocale/angular-locale_az.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "noy", "dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "\u0130yun", + "\u0130yul", + "Avqust", + "Sentyabr", + "Oktyabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bas-cm.js b/src/ngLocale/angular-locale_bas-cm.js index ccc7ea070a21..4c960e96ec76 100644 --- a/src/ngLocale/angular-locale_bas-cm.js +++ b/src/ngLocale/angular-locale_bas-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "may", "li\u0253" ], + "STANDALONEMONTH": [ + "K\u0254nd\u0254\u014b", + "M\u00e0c\u025b\u0302l", + "M\u00e0t\u00f9mb", + "M\u00e0top", + "M\u0300puy\u025b", + "H\u00ecl\u00f2nd\u025b\u0300", + "Nj\u00e8b\u00e0", + "H\u00ecka\u014b", + "D\u00ecp\u0254\u0300s", + "B\u00ec\u00f2\u00f4m", + "M\u00e0y\u025bs\u00e8p", + "L\u00ecbuy li \u0144y\u00e8e" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bas.js b/src/ngLocale/angular-locale_bas.js index e32cc4208271..09b3a8016106 100644 --- a/src/ngLocale/angular-locale_bas.js +++ b/src/ngLocale/angular-locale_bas.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "may", "li\u0253" ], + "STANDALONEMONTH": [ + "K\u0254nd\u0254\u014b", + "M\u00e0c\u025b\u0302l", + "M\u00e0t\u00f9mb", + "M\u00e0top", + "M\u0300puy\u025b", + "H\u00ecl\u00f2nd\u025b\u0300", + "Nj\u00e8b\u00e0", + "H\u00ecka\u014b", + "D\u00ecp\u0254\u0300s", + "B\u00ec\u00f2\u00f4m", + "M\u00e0y\u025bs\u00e8p", + "L\u00ecbuy li \u0144y\u00e8e" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_be-by.js b/src/ngLocale/angular-locale_be-by.js index 87fb319b17ff..ba0bda4b1f4c 100644 --- a/src/ngLocale/angular-locale_be-by.js +++ b/src/ngLocale/angular-locale_be-by.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043b\u0456\u0441", "\u0441\u043d\u0435" ], + "STANDALONEMONTH": [ + "\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c", + "\u043b\u044e\u0442\u044b", + "\u0441\u0430\u043a\u0430\u0432\u0456\u043a", + "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a", + "\u043c\u0430\u0439", + "\u0447\u044d\u0440\u0432\u0435\u043d\u044c", + "\u043b\u0456\u043f\u0435\u043d\u044c", + "\u0436\u043d\u0456\u0432\u0435\u043d\u044c", + "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c", + "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a", + "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434", + "\u0441\u043d\u0435\u0436\u0430\u043d\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_be.js b/src/ngLocale/angular-locale_be.js index 8baa3cedc94a..4be2662d858c 100644 --- a/src/ngLocale/angular-locale_be.js +++ b/src/ngLocale/angular-locale_be.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043b\u0456\u0441", "\u0441\u043d\u0435" ], + "STANDALONEMONTH": [ + "\u0441\u0442\u0443\u0434\u0437\u0435\u043d\u044c", + "\u043b\u044e\u0442\u044b", + "\u0441\u0430\u043a\u0430\u0432\u0456\u043a", + "\u043a\u0440\u0430\u0441\u0430\u0432\u0456\u043a", + "\u043c\u0430\u0439", + "\u0447\u044d\u0440\u0432\u0435\u043d\u044c", + "\u043b\u0456\u043f\u0435\u043d\u044c", + "\u0436\u043d\u0456\u0432\u0435\u043d\u044c", + "\u0432\u0435\u0440\u0430\u0441\u0435\u043d\u044c", + "\u043a\u0430\u0441\u0442\u0440\u044b\u0447\u043d\u0456\u043a", + "\u043b\u0456\u0441\u0442\u0430\u043f\u0430\u0434", + "\u0441\u043d\u0435\u0436\u0430\u043d\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bem-zm.js b/src/ngLocale/angular-locale_bem-zm.js index 307347a84508..99a18e9453c4 100644 --- a/src/ngLocale/angular-locale_bem-zm.js +++ b/src/ngLocale/angular-locale_bem-zm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Epreo", + "Mei", + "Juni", + "Julai", + "Ogasti", + "Septemba", + "Oktoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bem.js b/src/ngLocale/angular-locale_bem.js index 99778938db6c..7dda6c3ded77 100644 --- a/src/ngLocale/angular-locale_bem.js +++ b/src/ngLocale/angular-locale_bem.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Epreo", + "Mei", + "Juni", + "Julai", + "Ogasti", + "Septemba", + "Oktoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bez-tz.js b/src/ngLocale/angular-locale_bez-tz.js index d8d80a1b28f3..a1cf495da350 100644 --- a/src/ngLocale/angular-locale_bez-tz.js +++ b/src/ngLocale/angular-locale_bez-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kmj", "Kmb" ], + "STANDALONEMONTH": [ + "pa mwedzi gwa hutala", + "pa mwedzi gwa wuvili", + "pa mwedzi gwa wudatu", + "pa mwedzi gwa wutai", + "pa mwedzi gwa wuhanu", + "pa mwedzi gwa sita", + "pa mwedzi gwa saba", + "pa mwedzi gwa nane", + "pa mwedzi gwa tisa", + "pa mwedzi gwa kumi", + "pa mwedzi gwa kumi na moja", + "pa mwedzi gwa kumi na mbili" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bez.js b/src/ngLocale/angular-locale_bez.js index a240ee9b1aae..5215f57745bb 100644 --- a/src/ngLocale/angular-locale_bez.js +++ b/src/ngLocale/angular-locale_bez.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kmj", "Kmb" ], + "STANDALONEMONTH": [ + "pa mwedzi gwa hutala", + "pa mwedzi gwa wuvili", + "pa mwedzi gwa wudatu", + "pa mwedzi gwa wutai", + "pa mwedzi gwa wuhanu", + "pa mwedzi gwa sita", + "pa mwedzi gwa saba", + "pa mwedzi gwa nane", + "pa mwedzi gwa tisa", + "pa mwedzi gwa kumi", + "pa mwedzi gwa kumi na moja", + "pa mwedzi gwa kumi na mbili" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bg-bg.js b/src/ngLocale/angular-locale_bg-bg.js index 984801da0c60..502e491afd5b 100644 --- a/src/ngLocale/angular-locale_bg-bg.js +++ b/src/ngLocale/angular-locale_bg-bg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0443\u0430\u0440\u0438", + "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0439", + "\u044e\u043d\u0438", + "\u044e\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", + "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", + "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", + "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bg.js b/src/ngLocale/angular-locale_bg.js index 1bfb13282839..cb3a47d4a339 100644 --- a/src/ngLocale/angular-locale_bg.js +++ b/src/ngLocale/angular-locale_bg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0443\u0430\u0440\u0438", + "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0439", + "\u044e\u043d\u0438", + "\u044e\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", + "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", + "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", + "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bm-latn-ml.js b/src/ngLocale/angular-locale_bm-latn-ml.js index 6a0b184aa6e3..af8f599ad178 100644 --- a/src/ngLocale/angular-locale_bm-latn-ml.js +++ b/src/ngLocale/angular-locale_bm-latn-ml.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now", "des" ], + "STANDALONEMONTH": [ + "zanwuye", + "feburuye", + "marisi", + "awirili", + "m\u025b", + "zuw\u025bn", + "zuluye", + "uti", + "s\u025btanburu", + "\u0254kut\u0254buru", + "nowanburu", + "desanburu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bm-latn.js b/src/ngLocale/angular-locale_bm-latn.js index 686fcf157e74..8166393f59e7 100644 --- a/src/ngLocale/angular-locale_bm-latn.js +++ b/src/ngLocale/angular-locale_bm-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now", "des" ], + "STANDALONEMONTH": [ + "zanwuye", + "feburuye", + "marisi", + "awirili", + "m\u025b", + "zuw\u025bn", + "zuluye", + "uti", + "s\u025btanburu", + "\u0254kut\u0254buru", + "nowanburu", + "desanburu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bm.js b/src/ngLocale/angular-locale_bm.js index 30c2cf0bd0cd..104470f9fd4c 100644 --- a/src/ngLocale/angular-locale_bm.js +++ b/src/ngLocale/angular-locale_bm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now", "des" ], + "STANDALONEMONTH": [ + "zanwuye", + "feburuye", + "marisi", + "awirili", + "m\u025b", + "zuw\u025bn", + "zuluye", + "uti", + "s\u025btanburu", + "\u0254kut\u0254buru", + "nowanburu", + "desanburu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bn-bd.js b/src/ngLocale/angular-locale_bn-bd.js index 24fb37ae5891..656fe8756645 100644 --- a/src/ngLocale/angular-locale_bn-bd.js +++ b/src/ngLocale/angular-locale_bn-bd.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" ], + "STANDALONEMONTH": [ + "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ae\u09be\u09b0\u09cd\u099a", + "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", + "\u09ae\u09c7", + "\u099c\u09c1\u09a8", + "\u099c\u09c1\u09b2\u09be\u0987", + "\u0986\u0997\u09b8\u09cd\u099f", + "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", + "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bn-in.js b/src/ngLocale/angular-locale_bn-in.js index 63a3c3e6e244..bb4ba10482e4 100644 --- a/src/ngLocale/angular-locale_bn-in.js +++ b/src/ngLocale/angular-locale_bn-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" ], + "STANDALONEMONTH": [ + "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ae\u09be\u09b0\u09cd\u099a", + "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", + "\u09ae\u09c7", + "\u099c\u09c1\u09a8", + "\u099c\u09c1\u09b2\u09be\u0987", + "\u0986\u0997\u09b8\u09cd\u099f", + "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", + "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_bn.js b/src/ngLocale/angular-locale_bn.js index 022ce931e250..c6d2ee68eeab 100644 --- a/src/ngLocale/angular-locale_bn.js +++ b/src/ngLocale/angular-locale_bn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" ], + "STANDALONEMONTH": [ + "\u099c\u09be\u09a8\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ab\u09c7\u09ac\u09cd\u09b0\u09c1\u09af\u09bc\u09be\u09b0\u09c0", + "\u09ae\u09be\u09b0\u09cd\u099a", + "\u098f\u09aa\u09cd\u09b0\u09bf\u09b2", + "\u09ae\u09c7", + "\u099c\u09c1\u09a8", + "\u099c\u09c1\u09b2\u09be\u0987", + "\u0986\u0997\u09b8\u09cd\u099f", + "\u09b8\u09c7\u09aa\u09cd\u099f\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u0985\u0995\u09cd\u099f\u09cb\u09ac\u09b0", + "\u09a8\u09ad\u09c7\u09ae\u09cd\u09ac\u09b0", + "\u09a1\u09bf\u09b8\u09c7\u09ae\u09cd\u09ac\u09b0" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bo-cn.js b/src/ngLocale/angular-locale_bo-cn.js index ea07069766e3..c65480606093 100644 --- a/src/ngLocale/angular-locale_bo-cn.js +++ b/src/ngLocale/angular-locale_bo-cn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0f5f\u0fb3\u0f0b\u0f21\u0f21", "\u0f5f\u0fb3\u0f0b\u0f21\u0f22" ], + "STANDALONEMONTH": [ + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bo-in.js b/src/ngLocale/angular-locale_bo-in.js index 89738d3888a7..725bc18a89c1 100644 --- a/src/ngLocale/angular-locale_bo-in.js +++ b/src/ngLocale/angular-locale_bo-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0f5f\u0fb3\u0f0b\u0f21\u0f21", "\u0f5f\u0fb3\u0f0b\u0f21\u0f22" ], + "STANDALONEMONTH": [ + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bo.js b/src/ngLocale/angular-locale_bo.js index 117e4d6aaac0..d2bc1c04bd3c 100644 --- a/src/ngLocale/angular-locale_bo.js +++ b/src/ngLocale/angular-locale_bo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0f5f\u0fb3\u0f0b\u0f21\u0f21", "\u0f5f\u0fb3\u0f0b\u0f21\u0f22" ], + "STANDALONEMONTH": [ + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f44\u0f0b\u0f54\u0f7c\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b", + "\u0f5f\u0fb3\u0f0b\u0f56\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_br-fr.js b/src/ngLocale/angular-locale_br-fr.js index 111b19cf7800..d71399030fea 100644 --- a/src/ngLocale/angular-locale_br-fr.js +++ b/src/ngLocale/angular-locale_br-fr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Du", "Ker" ], + "STANDALONEMONTH": [ + "Genver", + "C\u02bchwevrer", + "Meurzh", + "Ebrel", + "Mae", + "Mezheven", + "Gouere", + "Eost", + "Gwengolo", + "Here", + "Du", + "Kerzu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_br.js b/src/ngLocale/angular-locale_br.js index 2fbf8714295f..9b38d48f3a6d 100644 --- a/src/ngLocale/angular-locale_br.js +++ b/src/ngLocale/angular-locale_br.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Du", "Ker" ], + "STANDALONEMONTH": [ + "Genver", + "C\u02bchwevrer", + "Meurzh", + "Ebrel", + "Mae", + "Mezheven", + "Gouere", + "Eost", + "Gwengolo", + "Here", + "Du", + "Kerzu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_brx-in.js b/src/ngLocale/angular-locale_brx-in.js index 2d6ad8472316..9c01fb3de0fc 100644 --- a/src/ngLocale/angular-locale_brx-in.js +++ b/src/ngLocale/angular-locale_brx-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930", "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u0938", + "\u090f\u092b\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0941\u0928", + "\u091c\u0941\u0932\u093e\u0907", + "\u0906\u0917\u0938\u094d\u0925", + "\u0938\u0947\u092c\u0925\u0947\u091c\u094d\u092c\u093c\u0930", + "\u0905\u0916\u0925\u092c\u0930", + "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930", + "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_brx.js b/src/ngLocale/angular-locale_brx.js index 85aa1d7d2224..11b71d6f7a3b 100644 --- a/src/ngLocale/angular-locale_brx.js +++ b/src/ngLocale/angular-locale_brx.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930", "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0941\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u0938", + "\u090f\u092b\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0941\u0928", + "\u091c\u0941\u0932\u093e\u0907", + "\u0906\u0917\u0938\u094d\u0925", + "\u0938\u0947\u092c\u0925\u0947\u091c\u094d\u092c\u093c\u0930", + "\u0905\u0916\u0925\u092c\u0930", + "\u0928\u092c\u0947\u091c\u094d\u092c\u093c\u0930", + "\u0926\u093f\u0938\u0947\u091c\u094d\u092c\u093c\u0930" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bs-cyrl-ba.js b/src/ngLocale/angular-locale_bs-cyrl-ba.js index 24322a440a65..1ac2c0813c50 100644 --- a/src/ngLocale/angular-locale_bs-cyrl-ba.js +++ b/src/ngLocale/angular-locale_bs-cyrl-ba.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d\u0438", + "\u0458\u0443\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bs-cyrl.js b/src/ngLocale/angular-locale_bs-cyrl.js index 63e52e07a60f..ccff6570b07a 100644 --- a/src/ngLocale/angular-locale_bs-cyrl.js +++ b/src/ngLocale/angular-locale_bs-cyrl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d\u0438", + "\u0458\u0443\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bs-latn-ba.js b/src/ngLocale/angular-locale_bs-latn-ba.js index 32c933ac6d5b..f7d98ca1575e 100644 --- a/src/ngLocale/angular-locale_bs-latn-ba.js +++ b/src/ngLocale/angular-locale_bs-latn-ba.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "juni", + "juli", + "august", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bs-latn.js b/src/ngLocale/angular-locale_bs-latn.js index b5e5f925dd5f..39ae125803e0 100644 --- a/src/ngLocale/angular-locale_bs-latn.js +++ b/src/ngLocale/angular-locale_bs-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "juni", + "juli", + "august", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_bs.js b/src/ngLocale/angular-locale_bs.js index c9cf4634c15d..9493ee9ea431 100644 --- a/src/ngLocale/angular-locale_bs.js +++ b/src/ngLocale/angular-locale_bs.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "juni", + "juli", + "august", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca-ad.js b/src/ngLocale/angular-locale_ca-ad.js index 448306454d67..dbb0dd549f04 100644 --- a/src/ngLocale/angular-locale_ca-ad.js +++ b/src/ngLocale/angular-locale_ca-ad.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca-es-valencia.js b/src/ngLocale/angular-locale_ca-es-valencia.js index 725478c4dc99..53a24d7f62cf 100644 --- a/src/ngLocale/angular-locale_ca-es-valencia.js +++ b/src/ngLocale/angular-locale_ca-es-valencia.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca-es.js b/src/ngLocale/angular-locale_ca-es.js index 427201b61d44..dfa8c6e4b09c 100644 --- a/src/ngLocale/angular-locale_ca-es.js +++ b/src/ngLocale/angular-locale_ca-es.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca-fr.js b/src/ngLocale/angular-locale_ca-fr.js index 22f1f7b3b185..3319f026008d 100644 --- a/src/ngLocale/angular-locale_ca-fr.js +++ b/src/ngLocale/angular-locale_ca-fr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca-it.js b/src/ngLocale/angular-locale_ca-it.js index 8bb952cf5add..c06e8dfdb422 100644 --- a/src/ngLocale/angular-locale_ca-it.js +++ b/src/ngLocale/angular-locale_ca-it.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ca.js b/src/ngLocale/angular-locale_ca.js index 9f1a6069878b..7bda2992dac8 100644 --- a/src/ngLocale/angular-locale_ca.js +++ b/src/ngLocale/angular-locale_ca.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "gener", + "febrer", + "mar\u00e7", + "abril", + "maig", + "juny", + "juliol", + "agost", + "setembre", + "octubre", + "novembre", + "desembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_cgg-ug.js b/src/ngLocale/angular-locale_cgg-ug.js index 544346c03415..18249ee8ac89 100644 --- a/src/ngLocale/angular-locale_cgg-ug.js +++ b/src/ngLocale/angular-locale_cgg-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KNK", "KNB" ], + "STANDALONEMONTH": [ + "Okwokubanza", + "Okwakabiri", + "Okwakashatu", + "Okwakana", + "Okwakataana", + "Okwamukaaga", + "Okwamushanju", + "Okwamunaana", + "Okwamwenda", + "Okwaikumi", + "Okwaikumi na kumwe", + "Okwaikumi na ibiri" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_cgg.js b/src/ngLocale/angular-locale_cgg.js index 7068c52244e2..c6637a0d3897 100644 --- a/src/ngLocale/angular-locale_cgg.js +++ b/src/ngLocale/angular-locale_cgg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KNK", "KNB" ], + "STANDALONEMONTH": [ + "Okwokubanza", + "Okwakabiri", + "Okwakashatu", + "Okwakana", + "Okwakataana", + "Okwamukaaga", + "Okwamushanju", + "Okwamunaana", + "Okwamwenda", + "Okwaikumi", + "Okwaikumi na kumwe", + "Okwaikumi na ibiri" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_chr-us.js b/src/ngLocale/angular-locale_chr-us.js index bc9e92203b2f..717a2438da2c 100644 --- a/src/ngLocale/angular-locale_chr-us.js +++ b/src/ngLocale/angular-locale_chr-us.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u13c5\u13d3", "\u13a5\u13cd" ], + "STANDALONEMONTH": [ + "\u13a4\u13c3\u13b8\u13d4\u13c5", + "\u13a7\u13a6\u13b5", + "\u13a0\u13c5\u13f1", + "\u13a7\u13ec\u13c2", + "\u13a0\u13c2\u13cd\u13ac\u13d8", + "\u13d5\u13ad\u13b7\u13f1", + "\u13ab\u13f0\u13c9\u13c2", + "\u13a6\u13b6\u13c2", + "\u13da\u13b5\u13cd\u13d7", + "\u13da\u13c2\u13c5\u13d7", + "\u13c5\u13d3\u13d5\u13c6", + "\u13a5\u13cd\u13a9\u13f1" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_chr.js b/src/ngLocale/angular-locale_chr.js index 589816f9f9e6..23f4d6eab498 100644 --- a/src/ngLocale/angular-locale_chr.js +++ b/src/ngLocale/angular-locale_chr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u13c5\u13d3", "\u13a5\u13cd" ], + "STANDALONEMONTH": [ + "\u13a4\u13c3\u13b8\u13d4\u13c5", + "\u13a7\u13a6\u13b5", + "\u13a0\u13c5\u13f1", + "\u13a7\u13ec\u13c2", + "\u13a0\u13c2\u13cd\u13ac\u13d8", + "\u13d5\u13ad\u13b7\u13f1", + "\u13ab\u13f0\u13c9\u13c2", + "\u13a6\u13b6\u13c2", + "\u13da\u13b5\u13cd\u13d7", + "\u13da\u13c2\u13c5\u13d7", + "\u13c5\u13d3\u13d5\u13c6", + "\u13a5\u13cd\u13a9\u13f1" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ckb-arab-iq.js b/src/ngLocale/angular-locale_ckb-arab-iq.js index 083bf1828325..e54149a08f59 100644 --- a/src/ngLocale/angular-locale_ckb-arab-iq.js +++ b/src/ngLocale/angular-locale_ckb-arab-iq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-arab-ir.js b/src/ngLocale/angular-locale_ckb-arab-ir.js index cc23f51edc00..c794b4665d15 100644 --- a/src/ngLocale/angular-locale_ckb-arab-ir.js +++ b/src/ngLocale/angular-locale_ckb-arab-ir.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-arab.js b/src/ngLocale/angular-locale_ckb-arab.js index 8f1fd7003a1a..50186a3c2037 100644 --- a/src/ngLocale/angular-locale_ckb-arab.js +++ b/src/ngLocale/angular-locale_ckb-arab.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-iq.js b/src/ngLocale/angular-locale_ckb-iq.js index 2786ebd7120b..f64ba8f1e2e5 100644 --- a/src/ngLocale/angular-locale_ckb-iq.js +++ b/src/ngLocale/angular-locale_ckb-iq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-ir.js b/src/ngLocale/angular-locale_ckb-ir.js index fb0bd006a461..f1274fc41b3e 100644 --- a/src/ngLocale/angular-locale_ckb-ir.js +++ b/src/ngLocale/angular-locale_ckb-ir.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-latn-iq.js b/src/ngLocale/angular-locale_ckb-latn-iq.js index 4e3c8b79a932..fd0f83498896 100644 --- a/src/ngLocale/angular-locale_ckb-latn-iq.js +++ b/src/ngLocale/angular-locale_ckb-latn-iq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb-latn.js b/src/ngLocale/angular-locale_ckb-latn.js index e2a333fd12e0..f5779174ed1b 100644 --- a/src/ngLocale/angular-locale_ckb-latn.js +++ b/src/ngLocale/angular-locale_ckb-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ckb.js b/src/ngLocale/angular-locale_ckb.js index e03211228b8d..6b1ca8989c5e 100644 --- a/src/ngLocale/angular-locale_ckb.js +++ b/src/ngLocale/angular-locale_ckb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" ], + "STANDALONEMONTH": [ + "\u06a9\u0627\u0646\u0648\u0648\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u0634\u0648\u0628\u0627\u062a", + "\u0626\u0627\u0632\u0627\u0631", + "\u0646\u06cc\u0633\u0627\u0646", + "\u0626\u0627\u06cc\u0627\u0631", + "\u062d\u0648\u0632\u06d5\u06cc\u0631\u0627\u0646", + "\u062a\u06d5\u0645\u0648\u0648\u0632", + "\u0626\u0627\u0628", + "\u0626\u06d5\u06cc\u0644\u0648\u0648\u0644", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645", + "\u062a\u0634\u0631\u06cc\u0646\u06cc \u062f\u0648\u0648\u06d5\u0645", + "\u06a9\u0627\u0646\u0648\u0646\u06cc \u06cc\u06d5\u06a9\u06d5\u0645" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_cs-cz.js b/src/ngLocale/angular-locale_cs-cz.js index d260d8de365b..7a00f917d0c5 100644 --- a/src/ngLocale/angular-locale_cs-cz.js +++ b/src/ngLocale/angular-locale_cs-cz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lis", "pro" ], + "STANDALONEMONTH": [ + "leden", + "\u00fanor", + "b\u0159ezen", + "duben", + "kv\u011bten", + "\u010derven", + "\u010dervenec", + "srpen", + "z\u00e1\u0159\u00ed", + "\u0159\u00edjen", + "listopad", + "prosinec" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_cs.js b/src/ngLocale/angular-locale_cs.js index 3f9cb70e562f..ece3304694b6 100644 --- a/src/ngLocale/angular-locale_cs.js +++ b/src/ngLocale/angular-locale_cs.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lis", "pro" ], + "STANDALONEMONTH": [ + "leden", + "\u00fanor", + "b\u0159ezen", + "duben", + "kv\u011bten", + "\u010derven", + "\u010dervenec", + "srpen", + "z\u00e1\u0159\u00ed", + "\u0159\u00edjen", + "listopad", + "prosinec" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_cy-gb.js b/src/ngLocale/angular-locale_cy-gb.js index d6a9b5d7c0a3..a4ddd70c93bf 100644 --- a/src/ngLocale/angular-locale_cy-gb.js +++ b/src/ngLocale/angular-locale_cy-gb.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Tach", "Rhag" ], + "STANDALONEMONTH": [ + "Ionawr", + "Chwefror", + "Mawrth", + "Ebrill", + "Mai", + "Mehefin", + "Gorffennaf", + "Awst", + "Medi", + "Hydref", + "Tachwedd", + "Rhagfyr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_cy.js b/src/ngLocale/angular-locale_cy.js index 057a5278674f..151efb45094a 100644 --- a/src/ngLocale/angular-locale_cy.js +++ b/src/ngLocale/angular-locale_cy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Tach", "Rhag" ], + "STANDALONEMONTH": [ + "Ionawr", + "Chwefror", + "Mawrth", + "Ebrill", + "Mai", + "Mehefin", + "Gorffennaf", + "Awst", + "Medi", + "Hydref", + "Tachwedd", + "Rhagfyr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_da-dk.js b/src/ngLocale/angular-locale_da-dk.js index fe2f432a2362..0067ecc5d3bb 100644 --- a/src/ngLocale/angular-locale_da-dk.js +++ b/src/ngLocale/angular-locale_da-dk.js @@ -93,6 +93,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "marts", + "april", + "maj", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_da-gl.js b/src/ngLocale/angular-locale_da-gl.js index 9714d083279c..1068a2bc5934 100644 --- a/src/ngLocale/angular-locale_da-gl.js +++ b/src/ngLocale/angular-locale_da-gl.js @@ -93,6 +93,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "marts", + "april", + "maj", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_da.js b/src/ngLocale/angular-locale_da.js index 7e263cf9e48d..dfb3dd47c602 100644 --- a/src/ngLocale/angular-locale_da.js +++ b/src/ngLocale/angular-locale_da.js @@ -93,6 +93,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "marts", + "april", + "maj", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dav-ke.js b/src/ngLocale/angular-locale_dav-ke.js index 4a689b5034c5..b40cf85b29d3 100644 --- a/src/ngLocale/angular-locale_dav-ke.js +++ b/src/ngLocale/angular-locale_dav-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Imw", "Iwi" ], + "STANDALONEMONTH": [ + "Mori ghwa imbiri", + "Mori ghwa kawi", + "Mori ghwa kadadu", + "Mori ghwa kana", + "Mori ghwa kasanu", + "Mori ghwa karandadu", + "Mori ghwa mfungade", + "Mori ghwa wunyanya", + "Mori ghwa ikenda", + "Mori ghwa ikumi", + "Mori ghwa ikumi na imweri", + "Mori ghwa ikumi na iwi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dav.js b/src/ngLocale/angular-locale_dav.js index 946c59f47b9d..1ba29994441c 100644 --- a/src/ngLocale/angular-locale_dav.js +++ b/src/ngLocale/angular-locale_dav.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Imw", "Iwi" ], + "STANDALONEMONTH": [ + "Mori ghwa imbiri", + "Mori ghwa kawi", + "Mori ghwa kadadu", + "Mori ghwa kana", + "Mori ghwa kasanu", + "Mori ghwa karandadu", + "Mori ghwa mfungade", + "Mori ghwa wunyanya", + "Mori ghwa ikenda", + "Mori ghwa ikumi", + "Mori ghwa ikumi na imweri", + "Mori ghwa ikumi na iwi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-at.js b/src/ngLocale/angular-locale_de-at.js index b3ee8e15c924..dcf2b6d0cdbf 100644 --- a/src/ngLocale/angular-locale_de-at.js +++ b/src/ngLocale/angular-locale_de-at.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "J\u00e4nner", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-be.js b/src/ngLocale/angular-locale_de-be.js index 61390da48ef0..f2b031cf031d 100644 --- a/src/ngLocale/angular-locale_de-be.js +++ b/src/ngLocale/angular-locale_de-be.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-ch.js b/src/ngLocale/angular-locale_de-ch.js index cdb75cac24c4..9b9841ac7118 100644 --- a/src/ngLocale/angular-locale_de-ch.js +++ b/src/ngLocale/angular-locale_de-ch.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-de.js b/src/ngLocale/angular-locale_de-de.js index b69252f59d76..6b267bf1bd4d 100644 --- a/src/ngLocale/angular-locale_de-de.js +++ b/src/ngLocale/angular-locale_de-de.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-li.js b/src/ngLocale/angular-locale_de-li.js index 867e08d99c43..12c2b10796a0 100644 --- a/src/ngLocale/angular-locale_de-li.js +++ b/src/ngLocale/angular-locale_de-li.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de-lu.js b/src/ngLocale/angular-locale_de-lu.js index f141217c4104..2fad59f58c5a 100644 --- a/src/ngLocale/angular-locale_de-lu.js +++ b/src/ngLocale/angular-locale_de-lu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_de.js b/src/ngLocale/angular-locale_de.js index cbc6643fd5f9..efe64980bcbb 100644 --- a/src/ngLocale/angular-locale_de.js +++ b/src/ngLocale/angular-locale_de.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dje-ne.js b/src/ngLocale/angular-locale_dje-ne.js index a5f240337f91..15038826b2d0 100644 --- a/src/ngLocale/angular-locale_dje-ne.js +++ b/src/ngLocale/angular-locale_dje-ne.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dje.js b/src/ngLocale/angular-locale_dje.js index 630c9f4a8dbe..b1bf7ddd58ec 100644 --- a/src/ngLocale/angular-locale_dje.js +++ b/src/ngLocale/angular-locale_dje.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dsb-de.js b/src/ngLocale/angular-locale_dsb-de.js index 8d7ca9f29342..ec5c523de7d8 100644 --- a/src/ngLocale/angular-locale_dsb-de.js +++ b/src/ngLocale/angular-locale_dsb-de.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "m\u011brc", + "apryl", + "maj", + "junij", + "julij", + "awgust", + "september", + "oktober", + "nowember", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dsb.js b/src/ngLocale/angular-locale_dsb.js index f774a75b9449..423b1720ffa5 100644 --- a/src/ngLocale/angular-locale_dsb.js +++ b/src/ngLocale/angular-locale_dsb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "m\u011brc", + "apryl", + "maj", + "junij", + "julij", + "awgust", + "september", + "oktober", + "nowember", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dua-cm.js b/src/ngLocale/angular-locale_dua-cm.js index 84d780174695..3dbe4758e92b 100644 --- a/src/ngLocale/angular-locale_dua-cm.js +++ b/src/ngLocale/angular-locale_dua-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "tin", "el\u00e1" ], + "STANDALONEMONTH": [ + "dim\u0254\u0301di", + "\u014bg\u0254nd\u025b", + "s\u0254\u014b\u025b", + "di\u0253\u00e1\u0253\u00e1", + "emiasele", + "es\u0254p\u025bs\u0254p\u025b", + "madi\u0253\u025b\u0301d\u00ed\u0253\u025b\u0301", + "di\u014bgindi", + "ny\u025bt\u025bki", + "may\u00e9s\u025b\u0301", + "tin\u00edn\u00ed", + "el\u00e1\u014bg\u025b\u0301" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dua.js b/src/ngLocale/angular-locale_dua.js index c2ffe9450962..2ac8e09fd5d9 100644 --- a/src/ngLocale/angular-locale_dua.js +++ b/src/ngLocale/angular-locale_dua.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "tin", "el\u00e1" ], + "STANDALONEMONTH": [ + "dim\u0254\u0301di", + "\u014bg\u0254nd\u025b", + "s\u0254\u014b\u025b", + "di\u0253\u00e1\u0253\u00e1", + "emiasele", + "es\u0254p\u025bs\u0254p\u025b", + "madi\u0253\u025b\u0301d\u00ed\u0253\u025b\u0301", + "di\u014bgindi", + "ny\u025bt\u025bki", + "may\u00e9s\u025b\u0301", + "tin\u00edn\u00ed", + "el\u00e1\u014bg\u025b\u0301" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dyo-sn.js b/src/ngLocale/angular-locale_dyo-sn.js index e8fadc7142d7..e670343d2c2d 100644 --- a/src/ngLocale/angular-locale_dyo-sn.js +++ b/src/ngLocale/angular-locale_dyo-sn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "No", "De" ], + "STANDALONEMONTH": [ + "Sanvie", + "F\u00e9birie", + "Mars", + "Aburil", + "Mee", + "Sue\u014b", + "S\u00fauyee", + "Ut", + "Settembar", + "Oktobar", + "Novembar", + "Disambar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dyo.js b/src/ngLocale/angular-locale_dyo.js index 5699f4a208d3..6af387ce9ffb 100644 --- a/src/ngLocale/angular-locale_dyo.js +++ b/src/ngLocale/angular-locale_dyo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "No", "De" ], + "STANDALONEMONTH": [ + "Sanvie", + "F\u00e9birie", + "Mars", + "Aburil", + "Mee", + "Sue\u014b", + "S\u00fauyee", + "Ut", + "Settembar", + "Oktobar", + "Novembar", + "Disambar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dz-bt.js b/src/ngLocale/angular-locale_dz-bt.js index c82e0508e19c..ba60d7fdd759 100644 --- a/src/ngLocale/angular-locale_dz-bt.js +++ b/src/ngLocale/angular-locale_dz-bt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0f21\u0f21", "12" ], + "STANDALONEMONTH": [ + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f44\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_dz.js b/src/ngLocale/angular-locale_dz.js index 3ef63d101331..847856a55424 100644 --- a/src/ngLocale/angular-locale_dz.js +++ b/src/ngLocale/angular-locale_dz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0f21\u0f21", "12" ], + "STANDALONEMONTH": [ + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f44\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f42\u0f66\u0f74\u0f58\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f5e\u0f72\u0f0b\u0f54", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f63\u0f94\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0fb2\u0f74\u0f42\u0f0b\u0f54", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f51\u0f74\u0f53\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f62\u0f92\u0fb1\u0f51\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f51\u0f42\u0f74\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f45\u0f72\u0f42\u0f0b\u0f54\u0f0b", + "\u0f66\u0fa4\u0fb1\u0f72\u0f0b\u0f5f\u0fb3\u0f0b\u0f56\u0f45\u0f74\u0f0b\u0f42\u0f49\u0f72\u0f66\u0f0b\u0f54\u0f0b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ebu-ke.js b/src/ngLocale/angular-locale_ebu-ke.js index 6f6761f1682f..d200e493e416 100644 --- a/src/ngLocale/angular-locale_ebu-ke.js +++ b/src/ngLocale/angular-locale_ebu-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Imw", "Igi" ], + "STANDALONEMONTH": [ + "Mweri wa mbere", + "Mweri wa ka\u0129ri", + "Mweri wa kathat\u0169", + "Mweri wa kana", + "Mweri wa gatano", + "Mweri wa gatantat\u0169", + "Mweri wa m\u0169gwanja", + "Mweri wa kanana", + "Mweri wa kenda", + "Mweri wa ik\u0169mi", + "Mweri wa ik\u0169mi na \u0169mwe", + "Mweri wa ik\u0169mi na Ka\u0129r\u0129" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ebu.js b/src/ngLocale/angular-locale_ebu.js index d92a16d2eb56..e462b368850f 100644 --- a/src/ngLocale/angular-locale_ebu.js +++ b/src/ngLocale/angular-locale_ebu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Imw", "Igi" ], + "STANDALONEMONTH": [ + "Mweri wa mbere", + "Mweri wa ka\u0129ri", + "Mweri wa kathat\u0169", + "Mweri wa kana", + "Mweri wa gatano", + "Mweri wa gatantat\u0169", + "Mweri wa m\u0169gwanja", + "Mweri wa kanana", + "Mweri wa kenda", + "Mweri wa ik\u0169mi", + "Mweri wa ik\u0169mi na \u0169mwe", + "Mweri wa ik\u0169mi na Ka\u0129r\u0129" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ee-gh.js b/src/ngLocale/angular-locale_ee-gh.js index 16848babd55d..c866c316d85e 100644 --- a/src/ngLocale/angular-locale_ee-gh.js +++ b/src/ngLocale/angular-locale_ee-gh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ade", "dzm" ], + "STANDALONEMONTH": [ + "dzove", + "dzodze", + "tedoxe", + "af\u0254f\u0129e", + "dama", + "masa", + "siaml\u0254m", + "deasiamime", + "any\u0254ny\u0254", + "kele", + "ade\u025bmekp\u0254xe", + "dzome" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ee-tg.js b/src/ngLocale/angular-locale_ee-tg.js index de48746af9a7..8894b2f7f4f9 100644 --- a/src/ngLocale/angular-locale_ee-tg.js +++ b/src/ngLocale/angular-locale_ee-tg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ade", "dzm" ], + "STANDALONEMONTH": [ + "dzove", + "dzodze", + "tedoxe", + "af\u0254f\u0129e", + "dama", + "masa", + "siaml\u0254m", + "deasiamime", + "any\u0254ny\u0254", + "kele", + "ade\u025bmekp\u0254xe", + "dzome" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ee.js b/src/ngLocale/angular-locale_ee.js index fdc03bebe12e..aee6d1b51b3e 100644 --- a/src/ngLocale/angular-locale_ee.js +++ b/src/ngLocale/angular-locale_ee.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ade", "dzm" ], + "STANDALONEMONTH": [ + "dzove", + "dzodze", + "tedoxe", + "af\u0254f\u0129e", + "dama", + "masa", + "siaml\u0254m", + "deasiamime", + "any\u0254ny\u0254", + "kele", + "ade\u025bmekp\u0254xe", + "dzome" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_el-cy.js b/src/ngLocale/angular-locale_el-cy.js index 5637d3fbb516..355620dcdcfc 100644 --- a/src/ngLocale/angular-locale_el-cy.js +++ b/src/ngLocale/angular-locale_el-cy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u039d\u03bf\u03b5", "\u0394\u03b5\u03ba" ], + "STANDALONEMONTH": [ + "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", + "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", + "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", + "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_el-gr.js b/src/ngLocale/angular-locale_el-gr.js index 72c8b719b93c..6933bf33f5f4 100644 --- a/src/ngLocale/angular-locale_el-gr.js +++ b/src/ngLocale/angular-locale_el-gr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u039d\u03bf\u03b5", "\u0394\u03b5\u03ba" ], + "STANDALONEMONTH": [ + "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", + "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", + "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", + "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_el.js b/src/ngLocale/angular-locale_el.js index 216542b8755e..9e657d987c7c 100644 --- a/src/ngLocale/angular-locale_el.js +++ b/src/ngLocale/angular-locale_el.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u039d\u03bf\u03b5", "\u0394\u03b5\u03ba" ], + "STANDALONEMONTH": [ + "\u0399\u03b1\u03bd\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u03a6\u03b5\u03b2\u03c1\u03bf\u03c5\u03ac\u03c1\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03c1\u03c4\u03b9\u03bf\u03c2", + "\u0391\u03c0\u03c1\u03af\u03bb\u03b9\u03bf\u03c2", + "\u039c\u03ac\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bd\u03b9\u03bf\u03c2", + "\u0399\u03bf\u03cd\u03bb\u03b9\u03bf\u03c2", + "\u0391\u03cd\u03b3\u03bf\u03c5\u03c3\u03c4\u03bf\u03c2", + "\u03a3\u03b5\u03c0\u03c4\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039f\u03ba\u03c4\u03ce\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u039d\u03bf\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2", + "\u0394\u03b5\u03ba\u03ad\u03bc\u03b2\u03c1\u03b9\u03bf\u03c2" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-001.js b/src/ngLocale/angular-locale_en-001.js index 49c98073ee16..58af1f6f1b45 100644 --- a/src/ngLocale/angular-locale_en-001.js +++ b/src/ngLocale/angular-locale_en-001.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-150.js b/src/ngLocale/angular-locale_en-150.js index 88468dad963b..a478280ccd0a 100644 --- a/src/ngLocale/angular-locale_en-150.js +++ b/src/ngLocale/angular-locale_en-150.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ag.js b/src/ngLocale/angular-locale_en-ag.js index effeae65f98e..b898f319b884 100644 --- a/src/ngLocale/angular-locale_en-ag.js +++ b/src/ngLocale/angular-locale_en-ag.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ai.js b/src/ngLocale/angular-locale_en-ai.js index 29a39cb3f435..2855239fa38c 100644 --- a/src/ngLocale/angular-locale_en-ai.js +++ b/src/ngLocale/angular-locale_en-ai.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-as.js b/src/ngLocale/angular-locale_en-as.js index b121ecba99a4..087080996ad7 100644 --- a/src/ngLocale/angular-locale_en-as.js +++ b/src/ngLocale/angular-locale_en-as.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-au.js b/src/ngLocale/angular-locale_en-au.js index a1ea9d768df9..613be46980cf 100644 --- a/src/ngLocale/angular-locale_en-au.js +++ b/src/ngLocale/angular-locale_en-au.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-bb.js b/src/ngLocale/angular-locale_en-bb.js index a183bab22fd3..c64f323f2975 100644 --- a/src/ngLocale/angular-locale_en-bb.js +++ b/src/ngLocale/angular-locale_en-bb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-be.js b/src/ngLocale/angular-locale_en-be.js index 8a79877f11ce..52b76b450204 100644 --- a/src/ngLocale/angular-locale_en-be.js +++ b/src/ngLocale/angular-locale_en-be.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-bm.js b/src/ngLocale/angular-locale_en-bm.js index 217c162feee0..a184706fdf19 100644 --- a/src/ngLocale/angular-locale_en-bm.js +++ b/src/ngLocale/angular-locale_en-bm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-bs.js b/src/ngLocale/angular-locale_en-bs.js index dfcf301ede08..56a916500798 100644 --- a/src/ngLocale/angular-locale_en-bs.js +++ b/src/ngLocale/angular-locale_en-bs.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-bw.js b/src/ngLocale/angular-locale_en-bw.js index 9433a32d580c..79e95d5b7311 100644 --- a/src/ngLocale/angular-locale_en-bw.js +++ b/src/ngLocale/angular-locale_en-bw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-bz.js b/src/ngLocale/angular-locale_en-bz.js index 50b70783ce88..768eaa06410f 100644 --- a/src/ngLocale/angular-locale_en-bz.js +++ b/src/ngLocale/angular-locale_en-bz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ca.js b/src/ngLocale/angular-locale_en-ca.js index 5ca0d1d3cc86..d520c5f905d3 100644 --- a/src/ngLocale/angular-locale_en-ca.js +++ b/src/ngLocale/angular-locale_en-ca.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-cc.js b/src/ngLocale/angular-locale_en-cc.js index e840c699a787..8b7e739ff5be 100644 --- a/src/ngLocale/angular-locale_en-cc.js +++ b/src/ngLocale/angular-locale_en-cc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ck.js b/src/ngLocale/angular-locale_en-ck.js index 5cdb9138f5d3..4078f732411e 100644 --- a/src/ngLocale/angular-locale_en-ck.js +++ b/src/ngLocale/angular-locale_en-ck.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-cm.js b/src/ngLocale/angular-locale_en-cm.js index 06821311db97..140ea8c46bbc 100644 --- a/src/ngLocale/angular-locale_en-cm.js +++ b/src/ngLocale/angular-locale_en-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-cx.js b/src/ngLocale/angular-locale_en-cx.js index e6c4f1064706..788e8549d5b9 100644 --- a/src/ngLocale/angular-locale_en-cx.js +++ b/src/ngLocale/angular-locale_en-cx.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-dg.js b/src/ngLocale/angular-locale_en-dg.js index 6c2c605f02e6..19728fd4b812 100644 --- a/src/ngLocale/angular-locale_en-dg.js +++ b/src/ngLocale/angular-locale_en-dg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-dm.js b/src/ngLocale/angular-locale_en-dm.js index 7225a1dd200c..9651e021693b 100644 --- a/src/ngLocale/angular-locale_en-dm.js +++ b/src/ngLocale/angular-locale_en-dm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-er.js b/src/ngLocale/angular-locale_en-er.js index 85232a6abbbf..f2f81de0752b 100644 --- a/src/ngLocale/angular-locale_en-er.js +++ b/src/ngLocale/angular-locale_en-er.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-fj.js b/src/ngLocale/angular-locale_en-fj.js index a7dfbe685cc4..e046ad69005c 100644 --- a/src/ngLocale/angular-locale_en-fj.js +++ b/src/ngLocale/angular-locale_en-fj.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-fk.js b/src/ngLocale/angular-locale_en-fk.js index 5da1bcb87139..263c553d950d 100644 --- a/src/ngLocale/angular-locale_en-fk.js +++ b/src/ngLocale/angular-locale_en-fk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-fm.js b/src/ngLocale/angular-locale_en-fm.js index 19cfa0559baf..666949e5cb1f 100644 --- a/src/ngLocale/angular-locale_en-fm.js +++ b/src/ngLocale/angular-locale_en-fm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gb.js b/src/ngLocale/angular-locale_en-gb.js index 3eb37db23f48..7c3c76a3bf84 100644 --- a/src/ngLocale/angular-locale_en-gb.js +++ b/src/ngLocale/angular-locale_en-gb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gd.js b/src/ngLocale/angular-locale_en-gd.js index 4fbcd1c31bfb..0d32b77f1fb7 100644 --- a/src/ngLocale/angular-locale_en-gd.js +++ b/src/ngLocale/angular-locale_en-gd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gg.js b/src/ngLocale/angular-locale_en-gg.js index 8da65cc0eab3..11f8e65f4e28 100644 --- a/src/ngLocale/angular-locale_en-gg.js +++ b/src/ngLocale/angular-locale_en-gg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gh.js b/src/ngLocale/angular-locale_en-gh.js index bcaa1bccef03..0566373952f6 100644 --- a/src/ngLocale/angular-locale_en-gh.js +++ b/src/ngLocale/angular-locale_en-gh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gi.js b/src/ngLocale/angular-locale_en-gi.js index 926bacd0382f..026978f868ac 100644 --- a/src/ngLocale/angular-locale_en-gi.js +++ b/src/ngLocale/angular-locale_en-gi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gm.js b/src/ngLocale/angular-locale_en-gm.js index fec1b6041c6c..b05b4bb737e0 100644 --- a/src/ngLocale/angular-locale_en-gm.js +++ b/src/ngLocale/angular-locale_en-gm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gu.js b/src/ngLocale/angular-locale_en-gu.js index 68d66d51567e..b43a512a04a1 100644 --- a/src/ngLocale/angular-locale_en-gu.js +++ b/src/ngLocale/angular-locale_en-gu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-gy.js b/src/ngLocale/angular-locale_en-gy.js index 405cfc39f5b9..5e0f4c6f54bc 100644 --- a/src/ngLocale/angular-locale_en-gy.js +++ b/src/ngLocale/angular-locale_en-gy.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-hk.js b/src/ngLocale/angular-locale_en-hk.js index 6efd69245c06..a05d2b66fa9f 100644 --- a/src/ngLocale/angular-locale_en-hk.js +++ b/src/ngLocale/angular-locale_en-hk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ie.js b/src/ngLocale/angular-locale_en-ie.js index d6eb9505d938..8aa3124a5e1a 100644 --- a/src/ngLocale/angular-locale_en-ie.js +++ b/src/ngLocale/angular-locale_en-ie.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-im.js b/src/ngLocale/angular-locale_en-im.js index b9d1717c8965..e1c974d74ed2 100644 --- a/src/ngLocale/angular-locale_en-im.js +++ b/src/ngLocale/angular-locale_en-im.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-in.js b/src/ngLocale/angular-locale_en-in.js index 050ef178c862..70a4901f5555 100644 --- a/src/ngLocale/angular-locale_en-in.js +++ b/src/ngLocale/angular-locale_en-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_en-io.js b/src/ngLocale/angular-locale_en-io.js index 3e0cc47fefb0..1be5126fb0f4 100644 --- a/src/ngLocale/angular-locale_en-io.js +++ b/src/ngLocale/angular-locale_en-io.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-iso.js b/src/ngLocale/angular-locale_en-iso.js index 4e1ba795fa96..789baeeec307 100644 --- a/src/ngLocale/angular-locale_en-iso.js +++ b/src/ngLocale/angular-locale_en-iso.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-je.js b/src/ngLocale/angular-locale_en-je.js index 6883396c36bd..2c671f90504c 100644 --- a/src/ngLocale/angular-locale_en-je.js +++ b/src/ngLocale/angular-locale_en-je.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-jm.js b/src/ngLocale/angular-locale_en-jm.js index 080daec15972..4872f208b98d 100644 --- a/src/ngLocale/angular-locale_en-jm.js +++ b/src/ngLocale/angular-locale_en-jm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ke.js b/src/ngLocale/angular-locale_en-ke.js index e0e16af63e49..1484cf088c6b 100644 --- a/src/ngLocale/angular-locale_en-ke.js +++ b/src/ngLocale/angular-locale_en-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ki.js b/src/ngLocale/angular-locale_en-ki.js index de6c4ff539ca..7a66024ea248 100644 --- a/src/ngLocale/angular-locale_en-ki.js +++ b/src/ngLocale/angular-locale_en-ki.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-kn.js b/src/ngLocale/angular-locale_en-kn.js index 88f8d651e6c5..d4f9604bc46e 100644 --- a/src/ngLocale/angular-locale_en-kn.js +++ b/src/ngLocale/angular-locale_en-kn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ky.js b/src/ngLocale/angular-locale_en-ky.js index f19fdb76fb9c..520d36f18073 100644 --- a/src/ngLocale/angular-locale_en-ky.js +++ b/src/ngLocale/angular-locale_en-ky.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-lc.js b/src/ngLocale/angular-locale_en-lc.js index cf95b8313742..eb6e7b3ca34c 100644 --- a/src/ngLocale/angular-locale_en-lc.js +++ b/src/ngLocale/angular-locale_en-lc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-lr.js b/src/ngLocale/angular-locale_en-lr.js index 87c7c8c505b5..e81d83be322c 100644 --- a/src/ngLocale/angular-locale_en-lr.js +++ b/src/ngLocale/angular-locale_en-lr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ls.js b/src/ngLocale/angular-locale_en-ls.js index 08575f9e3a26..47444e9c1306 100644 --- a/src/ngLocale/angular-locale_en-ls.js +++ b/src/ngLocale/angular-locale_en-ls.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mg.js b/src/ngLocale/angular-locale_en-mg.js index 10c070ab505b..d185b6d1d182 100644 --- a/src/ngLocale/angular-locale_en-mg.js +++ b/src/ngLocale/angular-locale_en-mg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mh.js b/src/ngLocale/angular-locale_en-mh.js index 3ec0b3d4e37f..f53d501ab141 100644 --- a/src/ngLocale/angular-locale_en-mh.js +++ b/src/ngLocale/angular-locale_en-mh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mo.js b/src/ngLocale/angular-locale_en-mo.js index e56ec63ccd55..a32f530dccb7 100644 --- a/src/ngLocale/angular-locale_en-mo.js +++ b/src/ngLocale/angular-locale_en-mo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mp.js b/src/ngLocale/angular-locale_en-mp.js index 1d830bf7659e..d60eaefb4e1a 100644 --- a/src/ngLocale/angular-locale_en-mp.js +++ b/src/ngLocale/angular-locale_en-mp.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ms.js b/src/ngLocale/angular-locale_en-ms.js index 599a03fe2423..d249fa78bcd6 100644 --- a/src/ngLocale/angular-locale_en-ms.js +++ b/src/ngLocale/angular-locale_en-ms.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mt.js b/src/ngLocale/angular-locale_en-mt.js index 05818a8bd396..bc70e7490e11 100644 --- a/src/ngLocale/angular-locale_en-mt.js +++ b/src/ngLocale/angular-locale_en-mt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mu.js b/src/ngLocale/angular-locale_en-mu.js index 37e64915c3e9..c19fe0272eea 100644 --- a/src/ngLocale/angular-locale_en-mu.js +++ b/src/ngLocale/angular-locale_en-mu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-mw.js b/src/ngLocale/angular-locale_en-mw.js index d850392cd0c5..536a4f92e68a 100644 --- a/src/ngLocale/angular-locale_en-mw.js +++ b/src/ngLocale/angular-locale_en-mw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-my.js b/src/ngLocale/angular-locale_en-my.js index f02af2816d32..10b0c556ba5b 100644 --- a/src/ngLocale/angular-locale_en-my.js +++ b/src/ngLocale/angular-locale_en-my.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-na.js b/src/ngLocale/angular-locale_en-na.js index 13dc95aab7e5..5d176de299cb 100644 --- a/src/ngLocale/angular-locale_en-na.js +++ b/src/ngLocale/angular-locale_en-na.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-nf.js b/src/ngLocale/angular-locale_en-nf.js index 72154ecbf7a4..cef712fc9f14 100644 --- a/src/ngLocale/angular-locale_en-nf.js +++ b/src/ngLocale/angular-locale_en-nf.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ng.js b/src/ngLocale/angular-locale_en-ng.js index 3f506f47c1fb..f487f70dc639 100644 --- a/src/ngLocale/angular-locale_en-ng.js +++ b/src/ngLocale/angular-locale_en-ng.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-nr.js b/src/ngLocale/angular-locale_en-nr.js index fb7e1319e14f..cd4a4e7f7dfb 100644 --- a/src/ngLocale/angular-locale_en-nr.js +++ b/src/ngLocale/angular-locale_en-nr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-nu.js b/src/ngLocale/angular-locale_en-nu.js index 3ff530dd707a..587504dee9ee 100644 --- a/src/ngLocale/angular-locale_en-nu.js +++ b/src/ngLocale/angular-locale_en-nu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-nz.js b/src/ngLocale/angular-locale_en-nz.js index b0c2ce077021..23aab49bf5d1 100644 --- a/src/ngLocale/angular-locale_en-nz.js +++ b/src/ngLocale/angular-locale_en-nz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-pg.js b/src/ngLocale/angular-locale_en-pg.js index e43790574667..3054dc24a5cf 100644 --- a/src/ngLocale/angular-locale_en-pg.js +++ b/src/ngLocale/angular-locale_en-pg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ph.js b/src/ngLocale/angular-locale_en-ph.js index a1ae7ea8dbe5..4bb74af12bd8 100644 --- a/src/ngLocale/angular-locale_en-ph.js +++ b/src/ngLocale/angular-locale_en-ph.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-pk.js b/src/ngLocale/angular-locale_en-pk.js index 4d99a3e60f7a..7521d1749f85 100644 --- a/src/ngLocale/angular-locale_en-pk.js +++ b/src/ngLocale/angular-locale_en-pk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-pn.js b/src/ngLocale/angular-locale_en-pn.js index 460e76ab849a..594868d90d0a 100644 --- a/src/ngLocale/angular-locale_en-pn.js +++ b/src/ngLocale/angular-locale_en-pn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-pr.js b/src/ngLocale/angular-locale_en-pr.js index 5a2e9ef59615..532f6f2cf857 100644 --- a/src/ngLocale/angular-locale_en-pr.js +++ b/src/ngLocale/angular-locale_en-pr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-pw.js b/src/ngLocale/angular-locale_en-pw.js index 5be685814243..4b7cd8ec9f34 100644 --- a/src/ngLocale/angular-locale_en-pw.js +++ b/src/ngLocale/angular-locale_en-pw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-rw.js b/src/ngLocale/angular-locale_en-rw.js index 477fe01e1177..447e2c4e0075 100644 --- a/src/ngLocale/angular-locale_en-rw.js +++ b/src/ngLocale/angular-locale_en-rw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sb.js b/src/ngLocale/angular-locale_en-sb.js index 4f195c03084b..c77cbfd4d8c0 100644 --- a/src/ngLocale/angular-locale_en-sb.js +++ b/src/ngLocale/angular-locale_en-sb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sc.js b/src/ngLocale/angular-locale_en-sc.js index c77368e42b3c..7614581e8ef7 100644 --- a/src/ngLocale/angular-locale_en-sc.js +++ b/src/ngLocale/angular-locale_en-sc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sd.js b/src/ngLocale/angular-locale_en-sd.js index 642fed131e0c..d4ad1293eb40 100644 --- a/src/ngLocale/angular-locale_en-sd.js +++ b/src/ngLocale/angular-locale_en-sd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_en-sg.js b/src/ngLocale/angular-locale_en-sg.js index 9a573044f96d..62001d1fc28c 100644 --- a/src/ngLocale/angular-locale_en-sg.js +++ b/src/ngLocale/angular-locale_en-sg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sh.js b/src/ngLocale/angular-locale_en-sh.js index f44ca8a1c861..641521b12271 100644 --- a/src/ngLocale/angular-locale_en-sh.js +++ b/src/ngLocale/angular-locale_en-sh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sl.js b/src/ngLocale/angular-locale_en-sl.js index c66cc354acd3..2f6238b2e40d 100644 --- a/src/ngLocale/angular-locale_en-sl.js +++ b/src/ngLocale/angular-locale_en-sl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ss.js b/src/ngLocale/angular-locale_en-ss.js index 8c0e69477230..c83ef5c4b72a 100644 --- a/src/ngLocale/angular-locale_en-ss.js +++ b/src/ngLocale/angular-locale_en-ss.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sx.js b/src/ngLocale/angular-locale_en-sx.js index b84c964f65cf..b5bc05ddf062 100644 --- a/src/ngLocale/angular-locale_en-sx.js +++ b/src/ngLocale/angular-locale_en-sx.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-sz.js b/src/ngLocale/angular-locale_en-sz.js index 5dc361c01af6..d1d2162c5fdf 100644 --- a/src/ngLocale/angular-locale_en-sz.js +++ b/src/ngLocale/angular-locale_en-sz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-tc.js b/src/ngLocale/angular-locale_en-tc.js index d075f25c7fb8..afe27ce80960 100644 --- a/src/ngLocale/angular-locale_en-tc.js +++ b/src/ngLocale/angular-locale_en-tc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-tk.js b/src/ngLocale/angular-locale_en-tk.js index 048c92565be0..e68270712b2d 100644 --- a/src/ngLocale/angular-locale_en-tk.js +++ b/src/ngLocale/angular-locale_en-tk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-to.js b/src/ngLocale/angular-locale_en-to.js index a208e5212f74..370bf68fe1f6 100644 --- a/src/ngLocale/angular-locale_en-to.js +++ b/src/ngLocale/angular-locale_en-to.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-tt.js b/src/ngLocale/angular-locale_en-tt.js index c10e2eea2bac..71df1e5fbaec 100644 --- a/src/ngLocale/angular-locale_en-tt.js +++ b/src/ngLocale/angular-locale_en-tt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-tv.js b/src/ngLocale/angular-locale_en-tv.js index 32c7a2c83837..73ac8f10c29c 100644 --- a/src/ngLocale/angular-locale_en-tv.js +++ b/src/ngLocale/angular-locale_en-tv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-tz.js b/src/ngLocale/angular-locale_en-tz.js index 488954d719a4..41f749e6d208 100644 --- a/src/ngLocale/angular-locale_en-tz.js +++ b/src/ngLocale/angular-locale_en-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ug.js b/src/ngLocale/angular-locale_en-ug.js index 9cde496b662c..7ed86b1f061c 100644 --- a/src/ngLocale/angular-locale_en-ug.js +++ b/src/ngLocale/angular-locale_en-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-um.js b/src/ngLocale/angular-locale_en-um.js index 827b56c1b662..654673c23228 100644 --- a/src/ngLocale/angular-locale_en-um.js +++ b/src/ngLocale/angular-locale_en-um.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-us.js b/src/ngLocale/angular-locale_en-us.js index 9a9bfe8263dd..a6111650a45d 100644 --- a/src/ngLocale/angular-locale_en-us.js +++ b/src/ngLocale/angular-locale_en-us.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-vc.js b/src/ngLocale/angular-locale_en-vc.js index f9c1ab9b3bc8..99bc8b97a993 100644 --- a/src/ngLocale/angular-locale_en-vc.js +++ b/src/ngLocale/angular-locale_en-vc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-vg.js b/src/ngLocale/angular-locale_en-vg.js index 74fabbf873f1..b7da3ce4ea15 100644 --- a/src/ngLocale/angular-locale_en-vg.js +++ b/src/ngLocale/angular-locale_en-vg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-vi.js b/src/ngLocale/angular-locale_en-vi.js index 3d02ce57d718..b871c2858e68 100644 --- a/src/ngLocale/angular-locale_en-vi.js +++ b/src/ngLocale/angular-locale_en-vi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-vu.js b/src/ngLocale/angular-locale_en-vu.js index a9f6a6ac9284..e7ea96a1f93c 100644 --- a/src/ngLocale/angular-locale_en-vu.js +++ b/src/ngLocale/angular-locale_en-vu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-ws.js b/src/ngLocale/angular-locale_en-ws.js index 49d0931e35e3..1f39ff65a36a 100644 --- a/src/ngLocale/angular-locale_en-ws.js +++ b/src/ngLocale/angular-locale_en-ws.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-za.js b/src/ngLocale/angular-locale_en-za.js index 56283c80aca9..2803dae84d55 100644 --- a/src/ngLocale/angular-locale_en-za.js +++ b/src/ngLocale/angular-locale_en-za.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-zm.js b/src/ngLocale/angular-locale_en-zm.js index 78a5cd99319a..350fb719f381 100644 --- a/src/ngLocale/angular-locale_en-zm.js +++ b/src/ngLocale/angular-locale_en-zm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en-zw.js b/src/ngLocale/angular-locale_en-zw.js index 84125681b16a..6f9923f7ec35 100644 --- a/src/ngLocale/angular-locale_en-zw.js +++ b/src/ngLocale/angular-locale_en-zw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_en.js b/src/ngLocale/angular-locale_en.js index 55076c8432c8..44ce04a48ae2 100644 --- a/src/ngLocale/angular-locale_en.js +++ b/src/ngLocale/angular-locale_en.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "January", + "February", + "March", + "April", + "May", + "June", + "July", + "August", + "September", + "October", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_eo-001.js b/src/ngLocale/angular-locale_eo-001.js index 4a153257fdcd..5a910e4f98bb 100644 --- a/src/ngLocale/angular-locale_eo-001.js +++ b/src/ngLocale/angular-locale_eo-001.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januaro", + "februaro", + "marto", + "aprilo", + "majo", + "junio", + "julio", + "a\u016dgusto", + "septembro", + "oktobro", + "novembro", + "decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_eo.js b/src/ngLocale/angular-locale_eo.js index b70d7a05c627..57f73853b07e 100644 --- a/src/ngLocale/angular-locale_eo.js +++ b/src/ngLocale/angular-locale_eo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januaro", + "februaro", + "marto", + "aprilo", + "majo", + "junio", + "julio", + "a\u016dgusto", + "septembro", + "oktobro", + "novembro", + "decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-419.js b/src/ngLocale/angular-locale_es-419.js index 00dcab26495e..56b28ad1bf04 100644 --- a/src/ngLocale/angular-locale_es-419.js +++ b/src/ngLocale/angular-locale_es-419.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ar.js b/src/ngLocale/angular-locale_es-ar.js index 155dfad9fb4b..b8c4f73d3990 100644 --- a/src/ngLocale/angular-locale_es-ar.js +++ b/src/ngLocale/angular-locale_es-ar.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-bo.js b/src/ngLocale/angular-locale_es-bo.js index b7aa597b07ca..c31f01ea363c 100644 --- a/src/ngLocale/angular-locale_es-bo.js +++ b/src/ngLocale/angular-locale_es-bo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-cl.js b/src/ngLocale/angular-locale_es-cl.js index 2b4a8a5a5b7c..13c8e0a87119 100644 --- a/src/ngLocale/angular-locale_es-cl.js +++ b/src/ngLocale/angular-locale_es-cl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-co.js b/src/ngLocale/angular-locale_es-co.js index 46b4d6bf586f..a37e6f3b8bdf 100644 --- a/src/ngLocale/angular-locale_es-co.js +++ b/src/ngLocale/angular-locale_es-co.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-cr.js b/src/ngLocale/angular-locale_es-cr.js index 42927de91534..3921419e77cb 100644 --- a/src/ngLocale/angular-locale_es-cr.js +++ b/src/ngLocale/angular-locale_es-cr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-cu.js b/src/ngLocale/angular-locale_es-cu.js index ec16c71b55fc..db9de3d8dad7 100644 --- a/src/ngLocale/angular-locale_es-cu.js +++ b/src/ngLocale/angular-locale_es-cu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-do.js b/src/ngLocale/angular-locale_es-do.js index beedf8a3b2d4..f6e60118a728 100644 --- a/src/ngLocale/angular-locale_es-do.js +++ b/src/ngLocale/angular-locale_es-do.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ea.js b/src/ngLocale/angular-locale_es-ea.js index ffefb9d1731e..64ce7ba75769 100644 --- a/src/ngLocale/angular-locale_es-ea.js +++ b/src/ngLocale/angular-locale_es-ea.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ec.js b/src/ngLocale/angular-locale_es-ec.js index 10949c127abe..21119ae1dce9 100644 --- a/src/ngLocale/angular-locale_es-ec.js +++ b/src/ngLocale/angular-locale_es-ec.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-es.js b/src/ngLocale/angular-locale_es-es.js index 9d0eb6569649..6049f010f729 100644 --- a/src/ngLocale/angular-locale_es-es.js +++ b/src/ngLocale/angular-locale_es-es.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-gq.js b/src/ngLocale/angular-locale_es-gq.js index d8fcd4b7c281..6d8d8f50e31e 100644 --- a/src/ngLocale/angular-locale_es-gq.js +++ b/src/ngLocale/angular-locale_es-gq.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-gt.js b/src/ngLocale/angular-locale_es-gt.js index e9b27cc00d6d..7c5452704c0f 100644 --- a/src/ngLocale/angular-locale_es-gt.js +++ b/src/ngLocale/angular-locale_es-gt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-hn.js b/src/ngLocale/angular-locale_es-hn.js index 1fc839e6ed75..c2f2443ff432 100644 --- a/src/ngLocale/angular-locale_es-hn.js +++ b/src/ngLocale/angular-locale_es-hn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ic.js b/src/ngLocale/angular-locale_es-ic.js index 10987395850a..4a53381089d4 100644 --- a/src/ngLocale/angular-locale_es-ic.js +++ b/src/ngLocale/angular-locale_es-ic.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-mx.js b/src/ngLocale/angular-locale_es-mx.js index 95eb1456017b..810f13502f33 100644 --- a/src/ngLocale/angular-locale_es-mx.js +++ b/src/ngLocale/angular-locale_es-mx.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dic" ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ni.js b/src/ngLocale/angular-locale_es-ni.js index 775fb5fdfbcc..9432fa3aab24 100644 --- a/src/ngLocale/angular-locale_es-ni.js +++ b/src/ngLocale/angular-locale_es-ni.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-pa.js b/src/ngLocale/angular-locale_es-pa.js index 141605ed5105..ea67481e04ad 100644 --- a/src/ngLocale/angular-locale_es-pa.js +++ b/src/ngLocale/angular-locale_es-pa.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-pe.js b/src/ngLocale/angular-locale_es-pe.js index ea7dfd229d58..59f032de1621 100644 --- a/src/ngLocale/angular-locale_es-pe.js +++ b/src/ngLocale/angular-locale_es-pe.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Setiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ph.js b/src/ngLocale/angular-locale_es-ph.js index 0d7bc9838a90..65b6e7d0e412 100644 --- a/src/ngLocale/angular-locale_es-ph.js +++ b/src/ngLocale/angular-locale_es-ph.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-pr.js b/src/ngLocale/angular-locale_es-pr.js index 0ac3ff9553c9..ec2c89d7a4ec 100644 --- a/src/ngLocale/angular-locale_es-pr.js +++ b/src/ngLocale/angular-locale_es-pr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-py.js b/src/ngLocale/angular-locale_es-py.js index 3dd2301bb9f8..de7d25cfa7c7 100644 --- a/src/ngLocale/angular-locale_es-py.js +++ b/src/ngLocale/angular-locale_es-py.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-sv.js b/src/ngLocale/angular-locale_es-sv.js index 9a7574f259f4..7878a6e6c1a4 100644 --- a/src/ngLocale/angular-locale_es-sv.js +++ b/src/ngLocale/angular-locale_es-sv.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js index bb8e3ccce844..76243e82e679 100644 --- a/src/ngLocale/angular-locale_es-us.js +++ b/src/ngLocale/angular-locale_es-us.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-uy.js b/src/ngLocale/angular-locale_es-uy.js index adfccd9f7c0a..d3ed1f336054 100644 --- a/src/ngLocale/angular-locale_es-uy.js +++ b/src/ngLocale/angular-locale_es-uy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Setiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es-ve.js b/src/ngLocale/angular-locale_es-ve.js index ed2093cfc3a6..e30a4806fb8b 100644 --- a/src/ngLocale/angular-locale_es-ve.js +++ b/src/ngLocale/angular-locale_es-ve.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_es.js b/src/ngLocale/angular-locale_es.js index 929ab026725d..88656217e110 100644 --- a/src/ngLocale/angular-locale_es.js +++ b/src/ngLocale/angular-locale_es.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dic." ], + "STANDALONEMONTH": [ + "Enero", + "Febrero", + "Marzo", + "Abril", + "Mayo", + "Junio", + "Julio", + "Agosto", + "Septiembre", + "Octubre", + "Noviembre", + "Diciembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_et-ee.js b/src/ngLocale/angular-locale_et-ee.js index 3b900ae31a3d..0f583b624751 100644 --- a/src/ngLocale/angular-locale_et-ee.js +++ b/src/ngLocale/angular-locale_et-ee.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dets" ], + "STANDALONEMONTH": [ + "jaanuar", + "veebruar", + "m\u00e4rts", + "aprill", + "mai", + "juuni", + "juuli", + "august", + "september", + "oktoober", + "november", + "detsember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_et.js b/src/ngLocale/angular-locale_et.js index d10ad68a2f39..a0889c4b2113 100644 --- a/src/ngLocale/angular-locale_et.js +++ b/src/ngLocale/angular-locale_et.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dets" ], + "STANDALONEMONTH": [ + "jaanuar", + "veebruar", + "m\u00e4rts", + "aprill", + "mai", + "juuni", + "juuli", + "august", + "september", + "oktoober", + "november", + "detsember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_eu-es.js b/src/ngLocale/angular-locale_eu-es.js index 3a38161c4f86..31ce4b24d758 100644 --- a/src/ngLocale/angular-locale_eu-es.js +++ b/src/ngLocale/angular-locale_eu-es.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "aza.", "abe." ], + "STANDALONEMONTH": [ + "Urtarrila", + "Otsaila", + "Martxoa", + "Apirila", + "Maiatza", + "Ekaina", + "Uztaila", + "Abuztua", + "Iraila", + "Urria", + "Azaroa", + "Abendua" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_eu.js b/src/ngLocale/angular-locale_eu.js index 47e847112c48..de7e9a8d112b 100644 --- a/src/ngLocale/angular-locale_eu.js +++ b/src/ngLocale/angular-locale_eu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "aza.", "abe." ], + "STANDALONEMONTH": [ + "Urtarrila", + "Otsaila", + "Martxoa", + "Apirila", + "Maiatza", + "Ekaina", + "Uztaila", + "Abuztua", + "Iraila", + "Urria", + "Azaroa", + "Abendua" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ewo-cm.js b/src/ngLocale/angular-locale_ewo-cm.js index 0acddea869f0..fc146d2bbb21 100644 --- a/src/ngLocale/angular-locale_ewo-cm.js +++ b/src/ngLocale/angular-locale_ewo-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ngad", "ngab" ], + "STANDALONEMONTH": [ + "ng\u0254n os\u00fa", + "ng\u0254n b\u025b\u030c", + "ng\u0254n l\u00e1la", + "ng\u0254n nyina", + "ng\u0254n t\u00e1na", + "ng\u0254n sam\u0259na", + "ng\u0254n zamgb\u00e1la", + "ng\u0254n mwom", + "ng\u0254n ebul\u00fa", + "ng\u0254n aw\u00f3m", + "ng\u0254n aw\u00f3m ai dzi\u00e1", + "ng\u0254n aw\u00f3m ai b\u025b\u030c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ewo.js b/src/ngLocale/angular-locale_ewo.js index dbef8cdecfdc..c58b6874bd75 100644 --- a/src/ngLocale/angular-locale_ewo.js +++ b/src/ngLocale/angular-locale_ewo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ngad", "ngab" ], + "STANDALONEMONTH": [ + "ng\u0254n os\u00fa", + "ng\u0254n b\u025b\u030c", + "ng\u0254n l\u00e1la", + "ng\u0254n nyina", + "ng\u0254n t\u00e1na", + "ng\u0254n sam\u0259na", + "ng\u0254n zamgb\u00e1la", + "ng\u0254n mwom", + "ng\u0254n ebul\u00fa", + "ng\u0254n aw\u00f3m", + "ng\u0254n aw\u00f3m ai dzi\u00e1", + "ng\u0254n aw\u00f3m ai b\u025b\u030c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fa-af.js b/src/ngLocale/angular-locale_fa-af.js index e3fccd3901a8..fb79f835be16 100644 --- a/src/ngLocale/angular-locale_fa-af.js +++ b/src/ngLocale/angular-locale_fa-af.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0645" ], + "STANDALONEMONTH": [ + "\u0698\u0627\u0646\u0648\u06cc\u0647", + "\u0641\u0648\u0631\u06cc\u0647", + "\u0645\u0627\u0631\u0633", + "\u0622\u0648\u0631\u06cc\u0644", + "\u0645\u0647", + "\u0698\u0648\u0626\u0646", + "\u0698\u0648\u0626\u06cc\u0647", + "\u0627\u0648\u062a", + "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0628\u0631", + "\u0646\u0648\u0627\u0645\u0628\u0631", + "\u062f\u0633\u0627\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 3, 4 diff --git a/src/ngLocale/angular-locale_fa-ir.js b/src/ngLocale/angular-locale_fa-ir.js index 44a72b74fe18..09762735d6fb 100644 --- a/src/ngLocale/angular-locale_fa-ir.js +++ b/src/ngLocale/angular-locale_fa-ir.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u0698\u0627\u0646\u0648\u06cc\u0647", + "\u0641\u0648\u0631\u06cc\u0647", + "\u0645\u0627\u0631\u0633", + "\u0622\u0648\u0631\u06cc\u0644", + "\u0645\u0647", + "\u0698\u0648\u0626\u0646", + "\u0698\u0648\u0626\u06cc\u0647", + "\u0627\u0648\u062a", + "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0628\u0631", + "\u0646\u0648\u0627\u0645\u0628\u0631", + "\u062f\u0633\u0627\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 4 diff --git a/src/ngLocale/angular-locale_fa.js b/src/ngLocale/angular-locale_fa.js index 48eb5dd038df..14137793eb3b 100644 --- a/src/ngLocale/angular-locale_fa.js +++ b/src/ngLocale/angular-locale_fa.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0627\u0645\u0628\u0631", "\u062f\u0633\u0627\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u0698\u0627\u0646\u0648\u06cc\u0647", + "\u0641\u0648\u0631\u06cc\u0647", + "\u0645\u0627\u0631\u0633", + "\u0622\u0648\u0631\u06cc\u0644", + "\u0645\u0647", + "\u0698\u0648\u0626\u0646", + "\u0698\u0648\u0626\u06cc\u0647", + "\u0627\u0648\u062a", + "\u0633\u067e\u062a\u0627\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0628\u0631", + "\u0646\u0648\u0627\u0645\u0628\u0631", + "\u062f\u0633\u0627\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 4, 4 diff --git a/src/ngLocale/angular-locale_ff-cm.js b/src/ngLocale/angular-locale_ff-cm.js index 87589cf17524..0b6b149613e6 100644 --- a/src/ngLocale/angular-locale_ff-cm.js +++ b/src/ngLocale/angular-locale_ff-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "jol", "bow" ], + "STANDALONEMONTH": [ + "siilo", + "colte", + "mbooy", + "see\u0257to", + "duujal", + "korse", + "morso", + "juko", + "siilto", + "yarkomaa", + "jolal", + "bowte" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ff-gn.js b/src/ngLocale/angular-locale_ff-gn.js index a7678f02d38d..a4aba55a554d 100644 --- a/src/ngLocale/angular-locale_ff-gn.js +++ b/src/ngLocale/angular-locale_ff-gn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "jol", "bow" ], + "STANDALONEMONTH": [ + "siilo", + "colte", + "mbooy", + "see\u0257to", + "duujal", + "korse", + "morso", + "juko", + "siilto", + "yarkomaa", + "jolal", + "bowte" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ff-mr.js b/src/ngLocale/angular-locale_ff-mr.js index c36b8a2515eb..6bf4ca949c8b 100644 --- a/src/ngLocale/angular-locale_ff-mr.js +++ b/src/ngLocale/angular-locale_ff-mr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "jol", "bow" ], + "STANDALONEMONTH": [ + "siilo", + "colte", + "mbooy", + "see\u0257to", + "duujal", + "korse", + "morso", + "juko", + "siilto", + "yarkomaa", + "jolal", + "bowte" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ff-sn.js b/src/ngLocale/angular-locale_ff-sn.js index e71e7b62214b..9ef723a44384 100644 --- a/src/ngLocale/angular-locale_ff-sn.js +++ b/src/ngLocale/angular-locale_ff-sn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "jol", "bow" ], + "STANDALONEMONTH": [ + "siilo", + "colte", + "mbooy", + "see\u0257to", + "duujal", + "korse", + "morso", + "juko", + "siilto", + "yarkomaa", + "jolal", + "bowte" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ff.js b/src/ngLocale/angular-locale_ff.js index 9ce7b830c6f6..e9c190b5811a 100644 --- a/src/ngLocale/angular-locale_ff.js +++ b/src/ngLocale/angular-locale_ff.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "jol", "bow" ], + "STANDALONEMONTH": [ + "siilo", + "colte", + "mbooy", + "see\u0257to", + "duujal", + "korse", + "morso", + "juko", + "siilto", + "yarkomaa", + "jolal", + "bowte" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fi-fi.js b/src/ngLocale/angular-locale_fi-fi.js index 44bd41203986..4b1b3a1166ae 100644 --- a/src/ngLocale/angular-locale_fi-fi.js +++ b/src/ngLocale/angular-locale_fi-fi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "marraskuuta", "joulukuuta" ], + "STANDALONEMONTH": [ + "tammikuu", + "helmikuu", + "maaliskuu", + "huhtikuu", + "toukokuu", + "kes\u00e4kuu", + "hein\u00e4kuu", + "elokuu", + "syyskuu", + "lokakuu", + "marraskuu", + "joulukuu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fi.js b/src/ngLocale/angular-locale_fi.js index ade165642af4..6dce6d182cc4 100644 --- a/src/ngLocale/angular-locale_fi.js +++ b/src/ngLocale/angular-locale_fi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "marraskuuta", "joulukuuta" ], + "STANDALONEMONTH": [ + "tammikuu", + "helmikuu", + "maaliskuu", + "huhtikuu", + "toukokuu", + "kes\u00e4kuu", + "hein\u00e4kuu", + "elokuu", + "syyskuu", + "lokakuu", + "marraskuu", + "joulukuu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fil-ph.js b/src/ngLocale/angular-locale_fil-ph.js index 541d3cde6d9a..5db5b3fe7380 100644 --- a/src/ngLocale/angular-locale_fil-ph.js +++ b/src/ngLocale/angular-locale_fil-ph.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nob", "Dis" ], + "STANDALONEMONTH": [ + "Enero", + "Pebrero", + "Marso", + "Abril", + "Mayo", + "Hunyo", + "Hulyo", + "Agosto", + "Setyembre", + "Oktubre", + "Nobyembre", + "Disyembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fil.js b/src/ngLocale/angular-locale_fil.js index 5cded550bdd0..ccaf1b728c3a 100644 --- a/src/ngLocale/angular-locale_fil.js +++ b/src/ngLocale/angular-locale_fil.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nob", "Dis" ], + "STANDALONEMONTH": [ + "Enero", + "Pebrero", + "Marso", + "Abril", + "Mayo", + "Hunyo", + "Hulyo", + "Agosto", + "Setyembre", + "Oktubre", + "Nobyembre", + "Disyembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fo-fo.js b/src/ngLocale/angular-locale_fo-fo.js index a861d8c3bda9..d78eb41ad4ce 100644 --- a/src/ngLocale/angular-locale_fo-fo.js +++ b/src/ngLocale/angular-locale_fo-fo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "des" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "apr\u00edl", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fo.js b/src/ngLocale/angular-locale_fo.js index aa33cd323107..9848c047d68d 100644 --- a/src/ngLocale/angular-locale_fo.js +++ b/src/ngLocale/angular-locale_fo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "des" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "apr\u00edl", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-be.js b/src/ngLocale/angular-locale_fr-be.js index acec9a42545c..5987be7d5fb8 100644 --- a/src/ngLocale/angular-locale_fr-be.js +++ b/src/ngLocale/angular-locale_fr-be.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-bf.js b/src/ngLocale/angular-locale_fr-bf.js index bd30d5500301..8103fe715cf5 100644 --- a/src/ngLocale/angular-locale_fr-bf.js +++ b/src/ngLocale/angular-locale_fr-bf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-bi.js b/src/ngLocale/angular-locale_fr-bi.js index 39d3b329b628..55feea98d854 100644 --- a/src/ngLocale/angular-locale_fr-bi.js +++ b/src/ngLocale/angular-locale_fr-bi.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-bj.js b/src/ngLocale/angular-locale_fr-bj.js index 6753f0203fde..021f64c5b856 100644 --- a/src/ngLocale/angular-locale_fr-bj.js +++ b/src/ngLocale/angular-locale_fr-bj.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-bl.js b/src/ngLocale/angular-locale_fr-bl.js index 2f15f5a32409..aa3f191e1e31 100644 --- a/src/ngLocale/angular-locale_fr-bl.js +++ b/src/ngLocale/angular-locale_fr-bl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ca.js b/src/ngLocale/angular-locale_fr-ca.js index 6f5f703bce80..4f67be324e9b 100644 --- a/src/ngLocale/angular-locale_fr-ca.js +++ b/src/ngLocale/angular-locale_fr-ca.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "janvier", + "f\u00e9vrier", + "mars", + "avril", + "mai", + "juin", + "juillet", + "ao\u00fbt", + "septembre", + "octobre", + "novembre", + "d\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-cd.js b/src/ngLocale/angular-locale_fr-cd.js index 1e1d1cc3dc89..365bb24e7bd4 100644 --- a/src/ngLocale/angular-locale_fr-cd.js +++ b/src/ngLocale/angular-locale_fr-cd.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-cf.js b/src/ngLocale/angular-locale_fr-cf.js index bf60553820ae..42a0d3037422 100644 --- a/src/ngLocale/angular-locale_fr-cf.js +++ b/src/ngLocale/angular-locale_fr-cf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-cg.js b/src/ngLocale/angular-locale_fr-cg.js index c4417732b979..94d974025157 100644 --- a/src/ngLocale/angular-locale_fr-cg.js +++ b/src/ngLocale/angular-locale_fr-cg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ch.js b/src/ngLocale/angular-locale_fr-ch.js index e69d2fe3c8fc..760aa7179f2a 100644 --- a/src/ngLocale/angular-locale_fr-ch.js +++ b/src/ngLocale/angular-locale_fr-ch.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ci.js b/src/ngLocale/angular-locale_fr-ci.js index 2954b10386ee..f0b365beae74 100644 --- a/src/ngLocale/angular-locale_fr-ci.js +++ b/src/ngLocale/angular-locale_fr-ci.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-cm.js b/src/ngLocale/angular-locale_fr-cm.js index d8f03d2e0042..36cb07816c96 100644 --- a/src/ngLocale/angular-locale_fr-cm.js +++ b/src/ngLocale/angular-locale_fr-cm.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-dj.js b/src/ngLocale/angular-locale_fr-dj.js index 9c850c2989eb..4b89de489087 100644 --- a/src/ngLocale/angular-locale_fr-dj.js +++ b/src/ngLocale/angular-locale_fr-dj.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-dz.js b/src/ngLocale/angular-locale_fr-dz.js index ae1e1c67525e..36c55e8f3627 100644 --- a/src/ngLocale/angular-locale_fr-dz.js +++ b/src/ngLocale/angular-locale_fr-dz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_fr-fr.js b/src/ngLocale/angular-locale_fr-fr.js index bdef4eff377e..745a956bb3f8 100644 --- a/src/ngLocale/angular-locale_fr-fr.js +++ b/src/ngLocale/angular-locale_fr-fr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ga.js b/src/ngLocale/angular-locale_fr-ga.js index 6268c7775ef2..e40838a72ea7 100644 --- a/src/ngLocale/angular-locale_fr-ga.js +++ b/src/ngLocale/angular-locale_fr-ga.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-gf.js b/src/ngLocale/angular-locale_fr-gf.js index a7d37a0ff71c..293c4615f4e6 100644 --- a/src/ngLocale/angular-locale_fr-gf.js +++ b/src/ngLocale/angular-locale_fr-gf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-gn.js b/src/ngLocale/angular-locale_fr-gn.js index 34f4b1010be9..754a4bed273c 100644 --- a/src/ngLocale/angular-locale_fr-gn.js +++ b/src/ngLocale/angular-locale_fr-gn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-gp.js b/src/ngLocale/angular-locale_fr-gp.js index 9db67089d86c..2225a96f0d5a 100644 --- a/src/ngLocale/angular-locale_fr-gp.js +++ b/src/ngLocale/angular-locale_fr-gp.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-gq.js b/src/ngLocale/angular-locale_fr-gq.js index 02bbba29455c..e08042e70eb3 100644 --- a/src/ngLocale/angular-locale_fr-gq.js +++ b/src/ngLocale/angular-locale_fr-gq.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ht.js b/src/ngLocale/angular-locale_fr-ht.js index 116e0da63770..46c3c880d7ef 100644 --- a/src/ngLocale/angular-locale_fr-ht.js +++ b/src/ngLocale/angular-locale_fr-ht.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-km.js b/src/ngLocale/angular-locale_fr-km.js index e178c7f3d9c0..f070814fd3a3 100644 --- a/src/ngLocale/angular-locale_fr-km.js +++ b/src/ngLocale/angular-locale_fr-km.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-lu.js b/src/ngLocale/angular-locale_fr-lu.js index bb2362772dc3..0e9706f0b459 100644 --- a/src/ngLocale/angular-locale_fr-lu.js +++ b/src/ngLocale/angular-locale_fr-lu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ma.js b/src/ngLocale/angular-locale_fr-ma.js index 92edf74b5f28..c6a49495943f 100644 --- a/src/ngLocale/angular-locale_fr-ma.js +++ b/src/ngLocale/angular-locale_fr-ma.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_fr-mc.js b/src/ngLocale/angular-locale_fr-mc.js index 85e0233e9bba..3ccac7c90cc5 100644 --- a/src/ngLocale/angular-locale_fr-mc.js +++ b/src/ngLocale/angular-locale_fr-mc.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-mf.js b/src/ngLocale/angular-locale_fr-mf.js index 2abced5c24d4..2e8bad8eab24 100644 --- a/src/ngLocale/angular-locale_fr-mf.js +++ b/src/ngLocale/angular-locale_fr-mf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-mg.js b/src/ngLocale/angular-locale_fr-mg.js index 02d274787243..917809152f26 100644 --- a/src/ngLocale/angular-locale_fr-mg.js +++ b/src/ngLocale/angular-locale_fr-mg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ml.js b/src/ngLocale/angular-locale_fr-ml.js index e4549e2b0d8c..6286a6a691b9 100644 --- a/src/ngLocale/angular-locale_fr-ml.js +++ b/src/ngLocale/angular-locale_fr-ml.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-mq.js b/src/ngLocale/angular-locale_fr-mq.js index 3973b32e3a5c..d52eb5aab098 100644 --- a/src/ngLocale/angular-locale_fr-mq.js +++ b/src/ngLocale/angular-locale_fr-mq.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-mr.js b/src/ngLocale/angular-locale_fr-mr.js index 5b993c6dcfcf..2239bb6282d8 100644 --- a/src/ngLocale/angular-locale_fr-mr.js +++ b/src/ngLocale/angular-locale_fr-mr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-mu.js b/src/ngLocale/angular-locale_fr-mu.js index 7b09bd2ead01..2f7098cb175c 100644 --- a/src/ngLocale/angular-locale_fr-mu.js +++ b/src/ngLocale/angular-locale_fr-mu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-nc.js b/src/ngLocale/angular-locale_fr-nc.js index a0694a9fd723..2e8a78a23fc5 100644 --- a/src/ngLocale/angular-locale_fr-nc.js +++ b/src/ngLocale/angular-locale_fr-nc.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-ne.js b/src/ngLocale/angular-locale_fr-ne.js index 7fd048212323..58b5be2718f8 100644 --- a/src/ngLocale/angular-locale_fr-ne.js +++ b/src/ngLocale/angular-locale_fr-ne.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-pf.js b/src/ngLocale/angular-locale_fr-pf.js index d5d023a330f0..31dbe931a3cb 100644 --- a/src/ngLocale/angular-locale_fr-pf.js +++ b/src/ngLocale/angular-locale_fr-pf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-pm.js b/src/ngLocale/angular-locale_fr-pm.js index 2ed15ec99554..1eed8394ff32 100644 --- a/src/ngLocale/angular-locale_fr-pm.js +++ b/src/ngLocale/angular-locale_fr-pm.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-re.js b/src/ngLocale/angular-locale_fr-re.js index 1c1e849ea7d9..e41f73f5e1f4 100644 --- a/src/ngLocale/angular-locale_fr-re.js +++ b/src/ngLocale/angular-locale_fr-re.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-rw.js b/src/ngLocale/angular-locale_fr-rw.js index 8966b7a8ce83..51efd851aef1 100644 --- a/src/ngLocale/angular-locale_fr-rw.js +++ b/src/ngLocale/angular-locale_fr-rw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-sc.js b/src/ngLocale/angular-locale_fr-sc.js index 80410913af43..8d111d75ed05 100644 --- a/src/ngLocale/angular-locale_fr-sc.js +++ b/src/ngLocale/angular-locale_fr-sc.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-sn.js b/src/ngLocale/angular-locale_fr-sn.js index 100a1025a466..8e16b66772c4 100644 --- a/src/ngLocale/angular-locale_fr-sn.js +++ b/src/ngLocale/angular-locale_fr-sn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-sy.js b/src/ngLocale/angular-locale_fr-sy.js index 8bcfaf1a1751..6d17286d81ef 100644 --- a/src/ngLocale/angular-locale_fr-sy.js +++ b/src/ngLocale/angular-locale_fr-sy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_fr-td.js b/src/ngLocale/angular-locale_fr-td.js index 2341ef760a1f..5894a24ea1d0 100644 --- a/src/ngLocale/angular-locale_fr-td.js +++ b/src/ngLocale/angular-locale_fr-td.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-tg.js b/src/ngLocale/angular-locale_fr-tg.js index a7c21313171d..4465cba188c6 100644 --- a/src/ngLocale/angular-locale_fr-tg.js +++ b/src/ngLocale/angular-locale_fr-tg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-tn.js b/src/ngLocale/angular-locale_fr-tn.js index 14a31151a3cf..8734028c9b7a 100644 --- a/src/ngLocale/angular-locale_fr-tn.js +++ b/src/ngLocale/angular-locale_fr-tn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_fr-vu.js b/src/ngLocale/angular-locale_fr-vu.js index d23d528c6c27..4c1115f1202e 100644 --- a/src/ngLocale/angular-locale_fr-vu.js +++ b/src/ngLocale/angular-locale_fr-vu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-wf.js b/src/ngLocale/angular-locale_fr-wf.js index bf5a357bbb9d..0be4ba0d71b4 100644 --- a/src/ngLocale/angular-locale_fr-wf.js +++ b/src/ngLocale/angular-locale_fr-wf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr-yt.js b/src/ngLocale/angular-locale_fr-yt.js index 265a0324f30d..71ba7730a3dd 100644 --- a/src/ngLocale/angular-locale_fr-yt.js +++ b/src/ngLocale/angular-locale_fr-yt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fr.js b/src/ngLocale/angular-locale_fr.js index f4d89ba2a502..3a8210755535 100644 --- a/src/ngLocale/angular-locale_fr.js +++ b/src/ngLocale/angular-locale_fr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "d\u00e9c." ], + "STANDALONEMONTH": [ + "Janvier", + "F\u00e9vrier", + "Mars", + "Avril", + "Mai", + "Juin", + "Juillet", + "Ao\u00fbt", + "Septembre", + "Octobre", + "Novembre", + "D\u00e9cembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fur-it.js b/src/ngLocale/angular-locale_fur-it.js index 8f1e80b91355..50c2beb6a9be 100644 --- a/src/ngLocale/angular-locale_fur-it.js +++ b/src/ngLocale/angular-locale_fur-it.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dic" ], + "STANDALONEMONTH": [ + "Zen\u00e2r", + "Fevr\u00e2r", + "Mar\u00e7", + "Avr\u00eel", + "Mai", + "Jugn", + "Lui", + "Avost", + "Setembar", + "Otubar", + "Novembar", + "Dicembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fur.js b/src/ngLocale/angular-locale_fur.js index ccb733004f8e..021c790940fe 100644 --- a/src/ngLocale/angular-locale_fur.js +++ b/src/ngLocale/angular-locale_fur.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dic" ], + "STANDALONEMONTH": [ + "Zen\u00e2r", + "Fevr\u00e2r", + "Mar\u00e7", + "Avr\u00eel", + "Mai", + "Jugn", + "Lui", + "Avost", + "Setembar", + "Otubar", + "Novembar", + "Dicembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fy-nl.js b/src/ngLocale/angular-locale_fy-nl.js index 234e983b78f2..acec2bb8bba4 100644 --- a/src/ngLocale/angular-locale_fy-nl.js +++ b/src/ngLocale/angular-locale_fy-nl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "jannewaris", + "febrewaris", + "maart", + "april", + "maaie", + "juny", + "july", + "augustus", + "septimber", + "oktober", + "novimber", + "desimber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_fy.js b/src/ngLocale/angular-locale_fy.js index 6bf7ba6b0a7b..fdd59af50ff5 100644 --- a/src/ngLocale/angular-locale_fy.js +++ b/src/ngLocale/angular-locale_fy.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "jannewaris", + "febrewaris", + "maart", + "april", + "maaie", + "juny", + "july", + "augustus", + "septimber", + "oktober", + "novimber", + "desimber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ga-ie.js b/src/ngLocale/angular-locale_ga-ie.js index 5740a197d82d..6fddcc218ede 100644 --- a/src/ngLocale/angular-locale_ga-ie.js +++ b/src/ngLocale/angular-locale_ga-ie.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Samh", "Noll" ], + "STANDALONEMONTH": [ + "Ean\u00e1ir", + "Feabhra", + "M\u00e1rta", + "Aibre\u00e1n", + "Bealtaine", + "Meitheamh", + "I\u00fail", + "L\u00fanasa", + "Me\u00e1n F\u00f3mhair", + "Deireadh F\u00f3mhair", + "Samhain", + "Nollaig" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ga.js b/src/ngLocale/angular-locale_ga.js index 76f0d145e67b..874903572ece 100644 --- a/src/ngLocale/angular-locale_ga.js +++ b/src/ngLocale/angular-locale_ga.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Samh", "Noll" ], + "STANDALONEMONTH": [ + "Ean\u00e1ir", + "Feabhra", + "M\u00e1rta", + "Aibre\u00e1n", + "Bealtaine", + "Meitheamh", + "I\u00fail", + "L\u00fanasa", + "Me\u00e1n F\u00f3mhair", + "Deireadh F\u00f3mhair", + "Samhain", + "Nollaig" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gd-gb.js b/src/ngLocale/angular-locale_gd-gb.js index c245bc5d78da..110a04a31fad 100644 --- a/src/ngLocale/angular-locale_gd-gb.js +++ b/src/ngLocale/angular-locale_gd-gb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Samh", "D\u00f9bh" ], + "STANDALONEMONTH": [ + "Am Faoilleach", + "An Gearran", + "Am M\u00e0rt", + "An Giblean", + "An C\u00e8itean", + "An t-\u00d2gmhios", + "An t-Iuchar", + "An L\u00f9nastal", + "An t-Sultain", + "An D\u00e0mhair", + "An t-Samhain", + "An D\u00f9bhlachd" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gd.js b/src/ngLocale/angular-locale_gd.js index 9fe0c4d80f06..c699c252fcc8 100644 --- a/src/ngLocale/angular-locale_gd.js +++ b/src/ngLocale/angular-locale_gd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Samh", "D\u00f9bh" ], + "STANDALONEMONTH": [ + "Am Faoilleach", + "An Gearran", + "Am M\u00e0rt", + "An Giblean", + "An C\u00e8itean", + "An t-\u00d2gmhios", + "An t-Iuchar", + "An L\u00f9nastal", + "An t-Sultain", + "An D\u00e0mhair", + "An t-Samhain", + "An D\u00f9bhlachd" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gl-es.js b/src/ngLocale/angular-locale_gl-es.js index fff9928c8f18..4369b4054123 100644 --- a/src/ngLocale/angular-locale_gl-es.js +++ b/src/ngLocale/angular-locale_gl-es.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "Xaneiro", + "Febreiro", + "Marzo", + "Abril", + "Maio", + "Xu\u00f1o", + "Xullo", + "Agosto", + "Setembro", + "Outubro", + "Novembro", + "Decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gl.js b/src/ngLocale/angular-locale_gl.js index 9223c2769f10..5adb5ffd0979 100644 --- a/src/ngLocale/angular-locale_gl.js +++ b/src/ngLocale/angular-locale_gl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "Xaneiro", + "Febreiro", + "Marzo", + "Abril", + "Maio", + "Xu\u00f1o", + "Xullo", + "Agosto", + "Setembro", + "Outubro", + "Novembro", + "Decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gsw-ch.js b/src/ngLocale/angular-locale_gsw-ch.js index 54278de0ac70..b102ac3abe5a 100644 --- a/src/ngLocale/angular-locale_gsw-ch.js +++ b/src/ngLocale/angular-locale_gsw-ch.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "Auguscht", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gsw-fr.js b/src/ngLocale/angular-locale_gsw-fr.js index 979ced7a77e4..d7cdad767f87 100644 --- a/src/ngLocale/angular-locale_gsw-fr.js +++ b/src/ngLocale/angular-locale_gsw-fr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "Auguscht", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gsw-li.js b/src/ngLocale/angular-locale_gsw-li.js index c1a5aebcfb76..4ecc5d239aa5 100644 --- a/src/ngLocale/angular-locale_gsw-li.js +++ b/src/ngLocale/angular-locale_gsw-li.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "Auguscht", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gsw.js b/src/ngLocale/angular-locale_gsw.js index 93ef2cd09ac0..80587f8c3e81 100644 --- a/src/ngLocale/angular-locale_gsw.js +++ b/src/ngLocale/angular-locale_gsw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4rz", + "April", + "Mai", + "Juni", + "Juli", + "Auguscht", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gu-in.js b/src/ngLocale/angular-locale_gu-in.js index db7daba84954..9f9573bb848f 100644 --- a/src/ngLocale/angular-locale_gu-in.js +++ b/src/ngLocale/angular-locale_gu-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0aa8\u0ab5\u0ac7", "\u0aa1\u0abf\u0ab8\u0ac7" ], + "STANDALONEMONTH": [ + "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0", + "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0", + "\u0aae\u0abe\u0ab0\u0acd\u0a9a", + "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", + "\u0aae\u0ac7", + "\u0a9c\u0ac2\u0aa8", + "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", + "\u0a91\u0a97\u0ab8\u0acd\u0a9f", + "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0", + "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0", + "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0", + "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_gu.js b/src/ngLocale/angular-locale_gu.js index a66e2b549fa9..4040e619ae3f 100644 --- a/src/ngLocale/angular-locale_gu.js +++ b/src/ngLocale/angular-locale_gu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0aa8\u0ab5\u0ac7", "\u0aa1\u0abf\u0ab8\u0ac7" ], + "STANDALONEMONTH": [ + "\u0a9c\u0abe\u0aa8\u0acd\u0aaf\u0ac1\u0a86\u0ab0\u0ac0", + "\u0aab\u0ac7\u0aac\u0acd\u0ab0\u0ac1\u0a86\u0ab0\u0ac0", + "\u0aae\u0abe\u0ab0\u0acd\u0a9a", + "\u0a8f\u0aaa\u0acd\u0ab0\u0abf\u0ab2", + "\u0aae\u0ac7", + "\u0a9c\u0ac2\u0aa8", + "\u0a9c\u0ac1\u0ab2\u0abe\u0a88", + "\u0a91\u0a97\u0ab8\u0acd\u0a9f", + "\u0ab8\u0aaa\u0acd\u0a9f\u0ac7\u0aae\u0acd\u0aac\u0ab0", + "\u0a91\u0a95\u0acd\u0a9f\u0acb\u0aac\u0ab0", + "\u0aa8\u0ab5\u0ac7\u0aae\u0acd\u0aac\u0ab0", + "\u0aa1\u0abf\u0ab8\u0ac7\u0aae\u0acd\u0aac\u0ab0" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_guz-ke.js b/src/ngLocale/angular-locale_guz-ke.js index 675efe9537bf..229a20b45d16 100644 --- a/src/ngLocale/angular-locale_guz-ke.js +++ b/src/ngLocale/angular-locale_guz-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nob", "Dis" ], + "STANDALONEMONTH": [ + "Chanuari", + "Feburari", + "Machi", + "Apiriri", + "Mei", + "Juni", + "Chulai", + "Agosti", + "Septemba", + "Okitoba", + "Nobemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_guz.js b/src/ngLocale/angular-locale_guz.js index 9ce1ce3f1a75..29bb03b85379 100644 --- a/src/ngLocale/angular-locale_guz.js +++ b/src/ngLocale/angular-locale_guz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nob", "Dis" ], + "STANDALONEMONTH": [ + "Chanuari", + "Feburari", + "Machi", + "Apiriri", + "Mei", + "Juni", + "Chulai", + "Agosti", + "Septemba", + "Okitoba", + "Nobemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gv-im.js b/src/ngLocale/angular-locale_gv-im.js index aca51df15c8b..e93bb558b5cc 100644 --- a/src/ngLocale/angular-locale_gv-im.js +++ b/src/ngLocale/angular-locale_gv-im.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M.Houney", "M.Nollick" ], + "STANDALONEMONTH": [ + "Jerrey-geuree", + "Toshiaght-arree", + "Mayrnt", + "Averil", + "Boaldyn", + "Mean-souree", + "Jerrey-souree", + "Luanistyn", + "Mean-fouyir", + "Jerrey-fouyir", + "Mee Houney", + "Mee ny Nollick" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_gv.js b/src/ngLocale/angular-locale_gv.js index 0f99b6a475e3..64ca090d2628 100644 --- a/src/ngLocale/angular-locale_gv.js +++ b/src/ngLocale/angular-locale_gv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M.Houney", "M.Nollick" ], + "STANDALONEMONTH": [ + "Jerrey-geuree", + "Toshiaght-arree", + "Mayrnt", + "Averil", + "Boaldyn", + "Mean-souree", + "Jerrey-souree", + "Luanistyn", + "Mean-fouyir", + "Jerrey-fouyir", + "Mee Houney", + "Mee ny Nollick" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ha-latn-gh.js b/src/ngLocale/angular-locale_ha-latn-gh.js index c5209311eb44..25339eed2b2b 100644 --- a/src/ngLocale/angular-locale_ha-latn-gh.js +++ b/src/ngLocale/angular-locale_ha-latn-gh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuw", "Dis" ], + "STANDALONEMONTH": [ + "Janairu", + "Faburairu", + "Maris", + "Afirilu", + "Mayu", + "Yuni", + "Yuli", + "Agusta", + "Satumba", + "Oktoba", + "Nuwamba", + "Disamba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ha-latn-ne.js b/src/ngLocale/angular-locale_ha-latn-ne.js index f4b280c5b738..64e90e84bfe0 100644 --- a/src/ngLocale/angular-locale_ha-latn-ne.js +++ b/src/ngLocale/angular-locale_ha-latn-ne.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuw", "Dis" ], + "STANDALONEMONTH": [ + "Janairu", + "Faburairu", + "Maris", + "Afirilu", + "Mayu", + "Yuni", + "Yuli", + "Agusta", + "Satumba", + "Oktoba", + "Nuwamba", + "Disamba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ha-latn-ng.js b/src/ngLocale/angular-locale_ha-latn-ng.js index 81af53ebf344..d78f8c6e1a9b 100644 --- a/src/ngLocale/angular-locale_ha-latn-ng.js +++ b/src/ngLocale/angular-locale_ha-latn-ng.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuw", "Dis" ], + "STANDALONEMONTH": [ + "Janairu", + "Faburairu", + "Maris", + "Afirilu", + "Mayu", + "Yuni", + "Yuli", + "Agusta", + "Satumba", + "Oktoba", + "Nuwamba", + "Disamba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ha-latn.js b/src/ngLocale/angular-locale_ha-latn.js index 615939cd89f1..13140e67f431 100644 --- a/src/ngLocale/angular-locale_ha-latn.js +++ b/src/ngLocale/angular-locale_ha-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuw", "Dis" ], + "STANDALONEMONTH": [ + "Janairu", + "Faburairu", + "Maris", + "Afirilu", + "Mayu", + "Yuni", + "Yuli", + "Agusta", + "Satumba", + "Oktoba", + "Nuwamba", + "Disamba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ha.js b/src/ngLocale/angular-locale_ha.js index 0f36507e6a0f..92c83e3f521b 100644 --- a/src/ngLocale/angular-locale_ha.js +++ b/src/ngLocale/angular-locale_ha.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuw", "Dis" ], + "STANDALONEMONTH": [ + "Janairu", + "Faburairu", + "Maris", + "Afirilu", + "Mayu", + "Yuni", + "Yuli", + "Agusta", + "Satumba", + "Oktoba", + "Nuwamba", + "Disamba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_haw-us.js b/src/ngLocale/angular-locale_haw-us.js index 4091590e7aa9..8712114661e7 100644 --- a/src/ngLocale/angular-locale_haw-us.js +++ b/src/ngLocale/angular-locale_haw-us.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Now.", "Kek." ], + "STANDALONEMONTH": [ + "Ianuali", + "Pepeluali", + "Malaki", + "\u02bbApelila", + "Mei", + "Iune", + "Iulai", + "\u02bbAukake", + "Kepakemapa", + "\u02bbOkakopa", + "Nowemapa", + "Kekemapa" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_haw.js b/src/ngLocale/angular-locale_haw.js index a1253a4a9d59..4191fa741863 100644 --- a/src/ngLocale/angular-locale_haw.js +++ b/src/ngLocale/angular-locale_haw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Now.", "Kek." ], + "STANDALONEMONTH": [ + "Ianuali", + "Pepeluali", + "Malaki", + "\u02bbApelila", + "Mei", + "Iune", + "Iulai", + "\u02bbAukake", + "Kepakemapa", + "\u02bbOkakopa", + "Nowemapa", + "Kekemapa" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_he-il.js b/src/ngLocale/angular-locale_he-il.js index 7a05b986a7a1..471c2a2f4efa 100644 --- a/src/ngLocale/angular-locale_he-il.js +++ b/src/ngLocale/angular-locale_he-il.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u05e0\u05d5\u05d1\u05f3", "\u05d3\u05e6\u05de\u05f3" ], + "STANDALONEMONTH": [ + "\u05d9\u05e0\u05d5\u05d0\u05e8", + "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8", + "\u05de\u05e8\u05e5", + "\u05d0\u05e4\u05e8\u05d9\u05dc", + "\u05de\u05d0\u05d9", + "\u05d9\u05d5\u05e0\u05d9", + "\u05d9\u05d5\u05dc\u05d9", + "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", + "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", + "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", + "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", + "\u05d3\u05e6\u05de\u05d1\u05e8" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_he.js b/src/ngLocale/angular-locale_he.js index 2ef1d3c2c253..6e4d1063423e 100644 --- a/src/ngLocale/angular-locale_he.js +++ b/src/ngLocale/angular-locale_he.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u05e0\u05d5\u05d1\u05f3", "\u05d3\u05e6\u05de\u05f3" ], + "STANDALONEMONTH": [ + "\u05d9\u05e0\u05d5\u05d0\u05e8", + "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8", + "\u05de\u05e8\u05e5", + "\u05d0\u05e4\u05e8\u05d9\u05dc", + "\u05de\u05d0\u05d9", + "\u05d9\u05d5\u05e0\u05d9", + "\u05d9\u05d5\u05dc\u05d9", + "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", + "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", + "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", + "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", + "\u05d3\u05e6\u05de\u05d1\u05e8" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_hi-in.js b/src/ngLocale/angular-locale_hi-in.js index febae3995bbc..291d8a52a2ba 100644 --- a/src/ngLocale/angular-locale_hi-in.js +++ b/src/ngLocale/angular-locale_hi-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u0935\u0970", "\u0926\u093f\u0938\u0970" ], + "STANDALONEMONTH": [ + "\u091c\u0928\u0935\u0930\u0940", + "\u092b\u093c\u0930\u0935\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u0905\u092a\u094d\u0930\u0948\u0932", + "\u092e\u0908", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u093e\u0908", + "\u0905\u0917\u0938\u094d\u0924", + "\u0938\u093f\u0924\u0902\u092c\u0930", + "\u0905\u0915\u094d\u0924\u0942\u092c\u0930", + "\u0928\u0935\u0902\u092c\u0930", + "\u0926\u093f\u0938\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_hi.js b/src/ngLocale/angular-locale_hi.js index e5c34123669f..69e07f3b19d7 100644 --- a/src/ngLocale/angular-locale_hi.js +++ b/src/ngLocale/angular-locale_hi.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u0935\u0970", "\u0926\u093f\u0938\u0970" ], + "STANDALONEMONTH": [ + "\u091c\u0928\u0935\u0930\u0940", + "\u092b\u093c\u0930\u0935\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u0905\u092a\u094d\u0930\u0948\u0932", + "\u092e\u0908", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u093e\u0908", + "\u0905\u0917\u0938\u094d\u0924", + "\u0938\u093f\u0924\u0902\u092c\u0930", + "\u0905\u0915\u094d\u0924\u0942\u092c\u0930", + "\u0928\u0935\u0902\u092c\u0930", + "\u0926\u093f\u0938\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_hr-ba.js b/src/ngLocale/angular-locale_hr-ba.js index cb70c76e7415..501147dbb842 100644 --- a/src/ngLocale/angular-locale_hr-ba.js +++ b/src/ngLocale/angular-locale_hr-ba.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "stu", "pro" ], + "STANDALONEMONTH": [ + "sije\u010danj", + "velja\u010da", + "o\u017eujak", + "travanj", + "svibanj", + "lipanj", + "srpanj", + "kolovoz", + "rujan", + "listopad", + "studeni", + "prosinac" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hr-hr.js b/src/ngLocale/angular-locale_hr-hr.js index 248734f6b069..6a3a3ff3e1a5 100644 --- a/src/ngLocale/angular-locale_hr-hr.js +++ b/src/ngLocale/angular-locale_hr-hr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "stu", "pro" ], + "STANDALONEMONTH": [ + "sije\u010danj", + "velja\u010da", + "o\u017eujak", + "travanj", + "svibanj", + "lipanj", + "srpanj", + "kolovoz", + "rujan", + "listopad", + "studeni", + "prosinac" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hr.js b/src/ngLocale/angular-locale_hr.js index 4f6f1c140cf1..f52a8635939f 100644 --- a/src/ngLocale/angular-locale_hr.js +++ b/src/ngLocale/angular-locale_hr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "stu", "pro" ], + "STANDALONEMONTH": [ + "sije\u010danj", + "velja\u010da", + "o\u017eujak", + "travanj", + "svibanj", + "lipanj", + "srpanj", + "kolovoz", + "rujan", + "listopad", + "studeni", + "prosinac" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hsb-de.js b/src/ngLocale/angular-locale_hsb-de.js index f432ed9491c4..1c119bb343dc 100644 --- a/src/ngLocale/angular-locale_hsb-de.js +++ b/src/ngLocale/angular-locale_hsb-de.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "m\u011brc", + "apryl", + "meja", + "junij", + "julij", + "awgust", + "september", + "oktober", + "nowember", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hsb.js b/src/ngLocale/angular-locale_hsb.js index c11ebc7832e9..fd82f0e463a1 100644 --- a/src/ngLocale/angular-locale_hsb.js +++ b/src/ngLocale/angular-locale_hsb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "now.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "m\u011brc", + "apryl", + "meja", + "junij", + "julij", + "awgust", + "september", + "oktober", + "nowember", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hu-hu.js b/src/ngLocale/angular-locale_hu-hu.js index 10a3bbc518fe..eff9442469a0 100644 --- a/src/ngLocale/angular-locale_hu-hu.js +++ b/src/ngLocale/angular-locale_hu-hu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "janu\u00e1r", + "febru\u00e1r", + "m\u00e1rcius", + "\u00e1prilis", + "m\u00e1jus", + "j\u00fanius", + "j\u00falius", + "augusztus", + "szeptember", + "okt\u00f3ber", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hu.js b/src/ngLocale/angular-locale_hu.js index 1e61f045e215..97db7db6f1d7 100644 --- a/src/ngLocale/angular-locale_hu.js +++ b/src/ngLocale/angular-locale_hu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "janu\u00e1r", + "febru\u00e1r", + "m\u00e1rcius", + "\u00e1prilis", + "m\u00e1jus", + "j\u00fanius", + "j\u00falius", + "augusztus", + "szeptember", + "okt\u00f3ber", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hy-am.js b/src/ngLocale/angular-locale_hy-am.js index 17afd2763bd9..f7e9371cc6ea 100644 --- a/src/ngLocale/angular-locale_hy-am.js +++ b/src/ngLocale/angular-locale_hy-am.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0576\u0578\u0575", "\u0564\u0565\u056f" ], + "STANDALONEMONTH": [ + "\u0570\u0578\u0582\u0576\u057e\u0561\u0580", + "\u0583\u0565\u057f\u0580\u057e\u0561\u0580", + "\u0574\u0561\u0580\u057f", + "\u0561\u057a\u0580\u056b\u056c", + "\u0574\u0561\u0575\u056b\u057d", + "\u0570\u0578\u0582\u0576\u056b\u057d", + "\u0570\u0578\u0582\u056c\u056b\u057d", + "\u0585\u0563\u0578\u057d\u057f\u0578\u057d", + "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580", + "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580", + "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580", + "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_hy.js b/src/ngLocale/angular-locale_hy.js index c54fe770fdfc..5f8682e8c584 100644 --- a/src/ngLocale/angular-locale_hy.js +++ b/src/ngLocale/angular-locale_hy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0576\u0578\u0575", "\u0564\u0565\u056f" ], + "STANDALONEMONTH": [ + "\u0570\u0578\u0582\u0576\u057e\u0561\u0580", + "\u0583\u0565\u057f\u0580\u057e\u0561\u0580", + "\u0574\u0561\u0580\u057f", + "\u0561\u057a\u0580\u056b\u056c", + "\u0574\u0561\u0575\u056b\u057d", + "\u0570\u0578\u0582\u0576\u056b\u057d", + "\u0570\u0578\u0582\u056c\u056b\u057d", + "\u0585\u0563\u0578\u057d\u057f\u0578\u057d", + "\u057d\u0565\u057a\u057f\u0565\u0574\u0562\u0565\u0580", + "\u0570\u0578\u056f\u057f\u0565\u0574\u0562\u0565\u0580", + "\u0576\u0578\u0575\u0565\u0574\u0562\u0565\u0580", + "\u0564\u0565\u056f\u057f\u0565\u0574\u0562\u0565\u0580" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_id-id.js b/src/ngLocale/angular-locale_id-id.js index 8324dce6cfa8..d58841e81092 100644 --- a/src/ngLocale/angular-locale_id-id.js +++ b/src/ngLocale/angular-locale_id-id.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_id.js b/src/ngLocale/angular-locale_id.js index b91f32dd5c76..da8bc785e8b1 100644 --- a/src/ngLocale/angular-locale_id.js +++ b/src/ngLocale/angular-locale_id.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ig-ng.js b/src/ngLocale/angular-locale_ig-ng.js index 0515635b35e2..758d791dc1af 100644 --- a/src/ngLocale/angular-locale_ig-ng.js +++ b/src/ngLocale/angular-locale_ig-ng.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Jen\u1ee5war\u1ecb", + "Febr\u1ee5war\u1ecb", + "Maach\u1ecb", + "Eprel", + "Mee", + "Juun", + "Jula\u1ecb", + "\u1eccg\u1ecd\u1ecdst", + "Septemba", + "\u1eccktoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ig.js b/src/ngLocale/angular-locale_ig.js index 2c9cfe40060f..e126c753df9a 100644 --- a/src/ngLocale/angular-locale_ig.js +++ b/src/ngLocale/angular-locale_ig.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Jen\u1ee5war\u1ecb", + "Febr\u1ee5war\u1ecb", + "Maach\u1ecb", + "Eprel", + "Mee", + "Juun", + "Jula\u1ecb", + "\u1eccg\u1ecd\u1ecdst", + "Septemba", + "\u1eccktoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ii-cn.js b/src/ngLocale/angular-locale_ii-cn.js index 5cddd2021c72..9ff0ede251f2 100644 --- a/src/ngLocale/angular-locale_ii-cn.js +++ b/src/ngLocale/angular-locale_ii-cn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "11", "12" ], + "STANDALONEMONTH": [ + "\ua2cd\ua1aa", + "\ua44d\ua1aa", + "\ua315\ua1aa", + "\ua1d6\ua1aa", + "\ua26c\ua1aa", + "\ua0d8\ua1aa", + "\ua3c3\ua1aa", + "\ua246\ua1aa", + "\ua22c\ua1aa", + "\ua2b0\ua1aa", + "\ua2b0\ua2aa\ua1aa", + "\ua2b0\ua44b\ua1aa" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ii.js b/src/ngLocale/angular-locale_ii.js index 2b4f22f87b5c..b9440d60f093 100644 --- a/src/ngLocale/angular-locale_ii.js +++ b/src/ngLocale/angular-locale_ii.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "11", "12" ], + "STANDALONEMONTH": [ + "\ua2cd\ua1aa", + "\ua44d\ua1aa", + "\ua315\ua1aa", + "\ua1d6\ua1aa", + "\ua26c\ua1aa", + "\ua0d8\ua1aa", + "\ua3c3\ua1aa", + "\ua246\ua1aa", + "\ua22c\ua1aa", + "\ua2b0\ua1aa", + "\ua2b0\ua2aa\ua1aa", + "\ua2b0\ua44b\ua1aa" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_in.js b/src/ngLocale/angular-locale_in.js index f9d523aee674..ff0eefedb9dc 100644 --- a/src/ngLocale/angular-locale_in.js +++ b/src/ngLocale/angular-locale_in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maret", + "April", + "Mei", + "Juni", + "Juli", + "Agustus", + "September", + "Oktober", + "November", + "Desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_is-is.js b/src/ngLocale/angular-locale_is-is.js index b38bd19fe2df..cb7c17dc0ee7 100644 --- a/src/ngLocale/angular-locale_is-is.js +++ b/src/ngLocale/angular-locale_is-is.js @@ -93,6 +93,20 @@ $provide.value("$locale", { "n\u00f3v.", "des." ], + "STANDALONEMONTH": [ + "jan\u00faar", + "febr\u00faar", + "mars", + "apr\u00edl", + "ma\u00ed", + "j\u00fan\u00ed", + "j\u00fal\u00ed", + "\u00e1g\u00fast", + "september", + "okt\u00f3ber", + "n\u00f3vember", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_is.js b/src/ngLocale/angular-locale_is.js index 5b3ad4313a56..01187493cf13 100644 --- a/src/ngLocale/angular-locale_is.js +++ b/src/ngLocale/angular-locale_is.js @@ -93,6 +93,20 @@ $provide.value("$locale", { "n\u00f3v.", "des." ], + "STANDALONEMONTH": [ + "jan\u00faar", + "febr\u00faar", + "mars", + "apr\u00edl", + "ma\u00ed", + "j\u00fan\u00ed", + "j\u00fal\u00ed", + "\u00e1g\u00fast", + "september", + "okt\u00f3ber", + "n\u00f3vember", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_it-ch.js b/src/ngLocale/angular-locale_it-ch.js index 1adbbe48eeb3..415f16a5c68c 100644 --- a/src/ngLocale/angular-locale_it-ch.js +++ b/src/ngLocale/angular-locale_it-ch.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dic" ], + "STANDALONEMONTH": [ + "Gennaio", + "Febbraio", + "Marzo", + "Aprile", + "Maggio", + "Giugno", + "Luglio", + "Agosto", + "Settembre", + "Ottobre", + "Novembre", + "Dicembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_it-it.js b/src/ngLocale/angular-locale_it-it.js index f02cc459f1b8..0b9386992ee8 100644 --- a/src/ngLocale/angular-locale_it-it.js +++ b/src/ngLocale/angular-locale_it-it.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dic" ], + "STANDALONEMONTH": [ + "Gennaio", + "Febbraio", + "Marzo", + "Aprile", + "Maggio", + "Giugno", + "Luglio", + "Agosto", + "Settembre", + "Ottobre", + "Novembre", + "Dicembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_it-sm.js b/src/ngLocale/angular-locale_it-sm.js index 5ee2ce18efd3..a56bacfde995 100644 --- a/src/ngLocale/angular-locale_it-sm.js +++ b/src/ngLocale/angular-locale_it-sm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dic" ], + "STANDALONEMONTH": [ + "Gennaio", + "Febbraio", + "Marzo", + "Aprile", + "Maggio", + "Giugno", + "Luglio", + "Agosto", + "Settembre", + "Ottobre", + "Novembre", + "Dicembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_it.js b/src/ngLocale/angular-locale_it.js index b4b5e4e590e6..6b1a78e5d837 100644 --- a/src/ngLocale/angular-locale_it.js +++ b/src/ngLocale/angular-locale_it.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dic" ], + "STANDALONEMONTH": [ + "Gennaio", + "Febbraio", + "Marzo", + "Aprile", + "Maggio", + "Giugno", + "Luglio", + "Agosto", + "Settembre", + "Ottobre", + "Novembre", + "Dicembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_iw.js b/src/ngLocale/angular-locale_iw.js index 02622c14cbb0..a6de60881886 100644 --- a/src/ngLocale/angular-locale_iw.js +++ b/src/ngLocale/angular-locale_iw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u05e0\u05d5\u05d1\u05f3", "\u05d3\u05e6\u05de\u05f3" ], + "STANDALONEMONTH": [ + "\u05d9\u05e0\u05d5\u05d0\u05e8", + "\u05e4\u05d1\u05e8\u05d5\u05d0\u05e8", + "\u05de\u05e8\u05e5", + "\u05d0\u05e4\u05e8\u05d9\u05dc", + "\u05de\u05d0\u05d9", + "\u05d9\u05d5\u05e0\u05d9", + "\u05d9\u05d5\u05dc\u05d9", + "\u05d0\u05d5\u05d2\u05d5\u05e1\u05d8", + "\u05e1\u05e4\u05d8\u05de\u05d1\u05e8", + "\u05d0\u05d5\u05e7\u05d8\u05d5\u05d1\u05e8", + "\u05e0\u05d5\u05d1\u05de\u05d1\u05e8", + "\u05d3\u05e6\u05de\u05d1\u05e8" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ja-jp.js b/src/ngLocale/angular-locale_ja-jp.js index 78cd06948eb4..f93a71587e72 100644 --- a/src/ngLocale/angular-locale_ja-jp.js +++ b/src/ngLocale/angular-locale_ja-jp.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js index 0011b5cc3337..3e9306ccf0b5 100644 --- a/src/ngLocale/angular-locale_ja.js +++ b/src/ngLocale/angular-locale_ja.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_jgo-cm.js b/src/ngLocale/angular-locale_jgo-cm.js index ae05a5a7efce..c8269e7b2d39 100644 --- a/src/ngLocale/angular-locale_jgo-cm.js +++ b/src/ngLocale/angular-locale_jgo-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301", "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1" ], + "STANDALONEMONTH": [ + "Ndu\u014bmbi Sa\u014b", + "P\u025bsa\u014b P\u025b\u0301p\u00e1", + "P\u025bsa\u014b P\u025b\u0301t\u00e1t", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301kwa", + "P\u025bsa\u014b Pataa", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301nt\u00fak\u00fa", + "P\u025bsa\u014b Saamb\u00e1", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301f\u0254m", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301pf\u00fa\ua78b\u00fa", + "P\u025bsa\u014b N\u025bg\u025b\u0301m", + "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301", + "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_jgo.js b/src/ngLocale/angular-locale_jgo.js index f27c22c3836f..c079125bd918 100644 --- a/src/ngLocale/angular-locale_jgo.js +++ b/src/ngLocale/angular-locale_jgo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301", "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1" ], + "STANDALONEMONTH": [ + "Ndu\u014bmbi Sa\u014b", + "P\u025bsa\u014b P\u025b\u0301p\u00e1", + "P\u025bsa\u014b P\u025b\u0301t\u00e1t", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301kwa", + "P\u025bsa\u014b Pataa", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301nt\u00fak\u00fa", + "P\u025bsa\u014b Saamb\u00e1", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301f\u0254m", + "P\u025bsa\u014b P\u025b\u0301n\u025b\u0301pf\u00fa\ua78b\u00fa", + "P\u025bsa\u014b N\u025bg\u025b\u0301m", + "P\u025bsa\u014b Nts\u0254\u030cpm\u0254\u0301", + "P\u025bsa\u014b Nts\u0254\u030cpp\u00e1" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_jmc-tz.js b/src/ngLocale/angular-locale_jmc-tz.js index 8eff91dfe0c8..61ebbcadb89c 100644 --- a/src/ngLocale/angular-locale_jmc-tz.js +++ b/src/ngLocale/angular-locale_jmc-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_jmc.js b/src/ngLocale/angular-locale_jmc.js index dd754e93de64..877638e75abc 100644 --- a/src/ngLocale/angular-locale_jmc.js +++ b/src/ngLocale/angular-locale_jmc.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ka-ge.js b/src/ngLocale/angular-locale_ka-ge.js index 4383940aa5c7..afe52b88c3e5 100644 --- a/src/ngLocale/angular-locale_ka-ge.js +++ b/src/ngLocale/angular-locale_ka-ge.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u10dc\u10dd\u10d4", "\u10d3\u10d4\u10d9" ], + "STANDALONEMONTH": [ + "\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8", + "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8", + "\u10db\u10d0\u10e0\u10e2\u10d8", + "\u10d0\u10de\u10e0\u10d8\u10da\u10d8", + "\u10db\u10d0\u10d8\u10e1\u10d8", + "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8", + "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8", + "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd", + "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ka.js b/src/ngLocale/angular-locale_ka.js index fc846caeac23..70a4755a737b 100644 --- a/src/ngLocale/angular-locale_ka.js +++ b/src/ngLocale/angular-locale_ka.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u10dc\u10dd\u10d4", "\u10d3\u10d4\u10d9" ], + "STANDALONEMONTH": [ + "\u10d8\u10d0\u10dc\u10d5\u10d0\u10e0\u10d8", + "\u10d7\u10d4\u10d1\u10d4\u10e0\u10d5\u10d0\u10da\u10d8", + "\u10db\u10d0\u10e0\u10e2\u10d8", + "\u10d0\u10de\u10e0\u10d8\u10da\u10d8", + "\u10db\u10d0\u10d8\u10e1\u10d8", + "\u10d8\u10d5\u10dc\u10d8\u10e1\u10d8", + "\u10d8\u10d5\u10da\u10d8\u10e1\u10d8", + "\u10d0\u10d2\u10d5\u10d8\u10e1\u10e2\u10dd", + "\u10e1\u10d4\u10e5\u10e2\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10dd\u10e5\u10e2\u10dd\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10dc\u10dd\u10d4\u10db\u10d1\u10d4\u10e0\u10d8", + "\u10d3\u10d4\u10d9\u10d4\u10db\u10d1\u10d4\u10e0\u10d8" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kab-dz.js b/src/ngLocale/angular-locale_kab-dz.js index 6063c588f24b..ff98f4d4d5d8 100644 --- a/src/ngLocale/angular-locale_kab-dz.js +++ b/src/ngLocale/angular-locale_kab-dz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nun", "Du\u01e7" ], + "STANDALONEMONTH": [ + "Yennayer", + "Fu\u1e5bar", + "Me\u0263res", + "Yebrir", + "Mayyu", + "Yunyu", + "Yulyu", + "\u0194uct", + "Ctembe\u1e5b", + "Tube\u1e5b", + "Nunembe\u1e5b", + "Du\u01e7embe\u1e5b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kab.js b/src/ngLocale/angular-locale_kab.js index d7b82a94e863..f478973486e9 100644 --- a/src/ngLocale/angular-locale_kab.js +++ b/src/ngLocale/angular-locale_kab.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nun", "Du\u01e7" ], + "STANDALONEMONTH": [ + "Yennayer", + "Fu\u1e5bar", + "Me\u0263res", + "Yebrir", + "Mayyu", + "Yunyu", + "Yulyu", + "\u0194uct", + "Ctembe\u1e5b", + "Tube\u1e5b", + "Nunembe\u1e5b", + "Du\u01e7embe\u1e5b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kam-ke.js b/src/ngLocale/angular-locale_kam-ke.js index 669f17f152d6..340fc96654fa 100644 --- a/src/ngLocale/angular-locale_kam-ke.js +++ b/src/ngLocale/angular-locale_kam-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0128km", "\u0128kl" ], + "STANDALONEMONTH": [ + "Mwai wa mbee", + "Mwai wa kel\u0129", + "Mwai wa katat\u0169", + "Mwai wa kana", + "Mwai wa katano", + "Mwai wa thanthat\u0169", + "Mwai wa muonza", + "Mwai wa nyaanya", + "Mwai wa kenda", + "Mwai wa \u0129kumi", + "Mwai wa \u0129kumi na \u0129mwe", + "Mwai wa \u0129kumi na il\u0129" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kam.js b/src/ngLocale/angular-locale_kam.js index f099840034ec..ee358a3f70b7 100644 --- a/src/ngLocale/angular-locale_kam.js +++ b/src/ngLocale/angular-locale_kam.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0128km", "\u0128kl" ], + "STANDALONEMONTH": [ + "Mwai wa mbee", + "Mwai wa kel\u0129", + "Mwai wa katat\u0169", + "Mwai wa kana", + "Mwai wa katano", + "Mwai wa thanthat\u0169", + "Mwai wa muonza", + "Mwai wa nyaanya", + "Mwai wa kenda", + "Mwai wa \u0129kumi", + "Mwai wa \u0129kumi na \u0129mwe", + "Mwai wa \u0129kumi na il\u0129" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kde-tz.js b/src/ngLocale/angular-locale_kde-tz.js index 0363929f49dc..547dd5270989 100644 --- a/src/ngLocale/angular-locale_kde-tz.js +++ b/src/ngLocale/angular-locale_kde-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Mwedi Ntandi", + "Mwedi wa Pili", + "Mwedi wa Tatu", + "Mwedi wa Nchechi", + "Mwedi wa Nnyano", + "Mwedi wa Nnyano na Umo", + "Mwedi wa Nnyano na Mivili", + "Mwedi wa Nnyano na Mitatu", + "Mwedi wa Nnyano na Nchechi", + "Mwedi wa Nnyano na Nnyano", + "Mwedi wa Nnyano na Nnyano na U", + "Mwedi wa Nnyano na Nnyano na M" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kde.js b/src/ngLocale/angular-locale_kde.js index 6dcc55eb6075..9694c677b387 100644 --- a/src/ngLocale/angular-locale_kde.js +++ b/src/ngLocale/angular-locale_kde.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Mwedi Ntandi", + "Mwedi wa Pili", + "Mwedi wa Tatu", + "Mwedi wa Nchechi", + "Mwedi wa Nnyano", + "Mwedi wa Nnyano na Umo", + "Mwedi wa Nnyano na Mivili", + "Mwedi wa Nnyano na Mitatu", + "Mwedi wa Nnyano na Nchechi", + "Mwedi wa Nnyano na Nnyano", + "Mwedi wa Nnyano na Nnyano na U", + "Mwedi wa Nnyano na Nnyano na M" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kea-cv.js b/src/ngLocale/angular-locale_kea-cv.js index 1fc8d8e68348..c1a7e50571ec 100644 --- a/src/ngLocale/angular-locale_kea-cv.js +++ b/src/ngLocale/angular-locale_kea-cv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuv", "Diz" ], + "STANDALONEMONTH": [ + "Janeru", + "Febreru", + "Marsu", + "Abril", + "Maiu", + "Junhu", + "Julhu", + "Agostu", + "Setenbru", + "Otubru", + "Nuvenbru", + "Dizenbru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kea.js b/src/ngLocale/angular-locale_kea.js index 0bab114dd5b5..014c08d6cae4 100644 --- a/src/ngLocale/angular-locale_kea.js +++ b/src/ngLocale/angular-locale_kea.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nuv", "Diz" ], + "STANDALONEMONTH": [ + "Janeru", + "Febreru", + "Marsu", + "Abril", + "Maiu", + "Junhu", + "Julhu", + "Agostu", + "Setenbru", + "Otubru", + "Nuvenbru", + "Dizenbru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_khq-ml.js b/src/ngLocale/angular-locale_khq-ml.js index 328809e19552..d5eea1aa3345 100644 --- a/src/ngLocale/angular-locale_khq-ml.js +++ b/src/ngLocale/angular-locale_khq-ml.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_khq.js b/src/ngLocale/angular-locale_khq.js index 90fa7e6bb33c..5527f1334366 100644 --- a/src/ngLocale/angular-locale_khq.js +++ b/src/ngLocale/angular-locale_khq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ki-ke.js b/src/ngLocale/angular-locale_ki-ke.js index c8d312b7a4bf..5f3bcf34ca6e 100644 --- a/src/ngLocale/angular-locale_ki-ke.js +++ b/src/ngLocale/angular-locale_ki-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "WMW", "DIT" ], + "STANDALONEMONTH": [ + "Njenuar\u0129", + "Mwere wa ker\u0129", + "Mwere wa gatat\u0169", + "Mwere wa kana", + "Mwere wa gatano", + "Mwere wa gatandat\u0169", + "Mwere wa m\u0169gwanja", + "Mwere wa kanana", + "Mwere wa kenda", + "Mwere wa ik\u0169mi", + "Mwere wa ik\u0169mi na \u0169mwe", + "Ndithemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ki.js b/src/ngLocale/angular-locale_ki.js index b21103da2c1b..f4bf20d18ee5 100644 --- a/src/ngLocale/angular-locale_ki.js +++ b/src/ngLocale/angular-locale_ki.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "WMW", "DIT" ], + "STANDALONEMONTH": [ + "Njenuar\u0129", + "Mwere wa ker\u0129", + "Mwere wa gatat\u0169", + "Mwere wa kana", + "Mwere wa gatano", + "Mwere wa gatandat\u0169", + "Mwere wa m\u0169gwanja", + "Mwere wa kanana", + "Mwere wa kenda", + "Mwere wa ik\u0169mi", + "Mwere wa ik\u0169mi na \u0169mwe", + "Ndithemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kk-cyrl-kz.js b/src/ngLocale/angular-locale_kk-cyrl-kz.js index 828abbf4f6f8..7dd9bb33b928 100644 --- a/src/ngLocale/angular-locale_kk-cyrl-kz.js +++ b/src/ngLocale/angular-locale_kk-cyrl-kz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u049b\u0430\u0440.", "\u0436\u0435\u043b\u0442." ], + "STANDALONEMONTH": [ + "\u049b\u0430\u04a3\u0442\u0430\u0440", + "\u0430\u049b\u043f\u0430\u043d", + "\u043d\u0430\u0443\u0440\u044b\u0437", + "\u0441\u04d9\u0443\u0456\u0440", + "\u043c\u0430\u043c\u044b\u0440", + "\u043c\u0430\u0443\u0441\u044b\u043c", + "\u0448\u0456\u043b\u0434\u0435", + "\u0442\u0430\u043c\u044b\u0437", + "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a", + "\u049b\u0430\u0437\u0430\u043d", + "\u049b\u0430\u0440\u0430\u0448\u0430", + "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kk-cyrl.js b/src/ngLocale/angular-locale_kk-cyrl.js index 321fad886cf1..6524301d195b 100644 --- a/src/ngLocale/angular-locale_kk-cyrl.js +++ b/src/ngLocale/angular-locale_kk-cyrl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u049b\u0430\u0440.", "\u0436\u0435\u043b\u0442." ], + "STANDALONEMONTH": [ + "\u049b\u0430\u04a3\u0442\u0430\u0440", + "\u0430\u049b\u043f\u0430\u043d", + "\u043d\u0430\u0443\u0440\u044b\u0437", + "\u0441\u04d9\u0443\u0456\u0440", + "\u043c\u0430\u043c\u044b\u0440", + "\u043c\u0430\u0443\u0441\u044b\u043c", + "\u0448\u0456\u043b\u0434\u0435", + "\u0442\u0430\u043c\u044b\u0437", + "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a", + "\u049b\u0430\u0437\u0430\u043d", + "\u049b\u0430\u0440\u0430\u0448\u0430", + "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kk.js b/src/ngLocale/angular-locale_kk.js index 3d4a44e0c7e1..efe0291cf0c3 100644 --- a/src/ngLocale/angular-locale_kk.js +++ b/src/ngLocale/angular-locale_kk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u049b\u0430\u0440.", "\u0436\u0435\u043b\u0442." ], + "STANDALONEMONTH": [ + "\u049b\u0430\u04a3\u0442\u0430\u0440", + "\u0430\u049b\u043f\u0430\u043d", + "\u043d\u0430\u0443\u0440\u044b\u0437", + "\u0441\u04d9\u0443\u0456\u0440", + "\u043c\u0430\u043c\u044b\u0440", + "\u043c\u0430\u0443\u0441\u044b\u043c", + "\u0448\u0456\u043b\u0434\u0435", + "\u0442\u0430\u043c\u044b\u0437", + "\u049b\u044b\u0440\u043a\u04af\u0439\u0435\u043a", + "\u049b\u0430\u0437\u0430\u043d", + "\u049b\u0430\u0440\u0430\u0448\u0430", + "\u0436\u0435\u043b\u0442\u043e\u049b\u0441\u0430\u043d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kkj-cm.js b/src/ngLocale/angular-locale_kkj-cm.js index 8b2a2538793b..5ba8a1fc76b6 100644 --- a/src/ngLocale/angular-locale_kkj-cm.js +++ b/src/ngLocale/angular-locale_kkj-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "11", "\u0253ul\u0253us\u025b" ], + "STANDALONEMONTH": [ + "pamba", + "wanja", + "mbiy\u0254 m\u025bndo\u014bg\u0254", + "Ny\u0254l\u0254mb\u0254\u014bg\u0254", + "M\u0254n\u0254 \u014bgbanja", + "Nya\u014bgw\u025b \u014bgbanja", + "ku\u014bgw\u025b", + "f\u025b", + "njapi", + "nyukul", + "11", + "\u0253ul\u0253us\u025b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kkj.js b/src/ngLocale/angular-locale_kkj.js index dc0b25ad01d5..56b7cecb45c2 100644 --- a/src/ngLocale/angular-locale_kkj.js +++ b/src/ngLocale/angular-locale_kkj.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "11", "\u0253ul\u0253us\u025b" ], + "STANDALONEMONTH": [ + "pamba", + "wanja", + "mbiy\u0254 m\u025bndo\u014bg\u0254", + "Ny\u0254l\u0254mb\u0254\u014bg\u0254", + "M\u0254n\u0254 \u014bgbanja", + "Nya\u014bgw\u025b \u014bgbanja", + "ku\u014bgw\u025b", + "f\u025b", + "njapi", + "nyukul", + "11", + "\u0253ul\u0253us\u025b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kl-gl.js b/src/ngLocale/angular-locale_kl-gl.js index 3b3e77d0433b..eb4b01f78b2d 100644 --- a/src/ngLocale/angular-locale_kl-gl.js +++ b/src/ngLocale/angular-locale_kl-gl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januari", + "februari", + "martsi", + "aprili", + "maji", + "juni", + "juli", + "augustusi", + "septemberi", + "oktoberi", + "novemberi", + "decemberi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kl.js b/src/ngLocale/angular-locale_kl.js index a20a1950b4d3..7d1ecdf440d8 100644 --- a/src/ngLocale/angular-locale_kl.js +++ b/src/ngLocale/angular-locale_kl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januari", + "februari", + "martsi", + "aprili", + "maji", + "juni", + "juli", + "augustusi", + "septemberi", + "oktoberi", + "novemberi", + "decemberi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kln-ke.js b/src/ngLocale/angular-locale_kln-ke.js index 41e740503b19..74f99554f07c 100644 --- a/src/ngLocale/angular-locale_kln-ke.js +++ b/src/ngLocale/angular-locale_kln-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kpt", "Kpa" ], + "STANDALONEMONTH": [ + "Mulgul", + "Ng\u2019atyaato", + "Kiptaamo", + "Iwootkuut", + "Mamuut", + "Paagi", + "Ng\u2019eiyeet", + "Rooptui", + "Bureet", + "Epeeso", + "Kipsuunde ne taai", + "Kipsuunde nebo aeng\u2019" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kln.js b/src/ngLocale/angular-locale_kln.js index 973b711f84b8..072e28ffa1a5 100644 --- a/src/ngLocale/angular-locale_kln.js +++ b/src/ngLocale/angular-locale_kln.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kpt", "Kpa" ], + "STANDALONEMONTH": [ + "Mulgul", + "Ng\u2019atyaato", + "Kiptaamo", + "Iwootkuut", + "Mamuut", + "Paagi", + "Ng\u2019eiyeet", + "Rooptui", + "Bureet", + "Epeeso", + "Kipsuunde ne taai", + "Kipsuunde nebo aeng\u2019" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_km-kh.js b/src/ngLocale/angular-locale_km-kh.js index 43649cd6dc80..d84691c31c84 100644 --- a/src/ngLocale/angular-locale_km-kh.js +++ b/src/ngLocale/angular-locale_km-kh.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", "\u1792\u17d2\u1793\u17bc" ], + "STANDALONEMONTH": [ + "\u1798\u1780\u179a\u17b6", + "\u1780\u17bb\u1798\u17d2\u1797\u17c8", + "\u1798\u17b8\u1793\u17b6", + "\u1798\u17c1\u179f\u17b6", + "\u17a7\u179f\u1797\u17b6", + "\u1798\u17b7\u1790\u17bb\u1793\u17b6", + "\u1780\u1780\u17d2\u1780\u178a\u17b6", + "\u179f\u17b8\u17a0\u17b6", + "\u1780\u1789\u17d2\u1789\u17b6", + "\u178f\u17bb\u179b\u17b6", + "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", + "\u1792\u17d2\u1793\u17bc" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_km.js b/src/ngLocale/angular-locale_km.js index ee21ccc1a96b..ddeb756e2201 100644 --- a/src/ngLocale/angular-locale_km.js +++ b/src/ngLocale/angular-locale_km.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", "\u1792\u17d2\u1793\u17bc" ], + "STANDALONEMONTH": [ + "\u1798\u1780\u179a\u17b6", + "\u1780\u17bb\u1798\u17d2\u1797\u17c8", + "\u1798\u17b8\u1793\u17b6", + "\u1798\u17c1\u179f\u17b6", + "\u17a7\u179f\u1797\u17b6", + "\u1798\u17b7\u1790\u17bb\u1793\u17b6", + "\u1780\u1780\u17d2\u1780\u178a\u17b6", + "\u179f\u17b8\u17a0\u17b6", + "\u1780\u1789\u17d2\u1789\u17b6", + "\u178f\u17bb\u179b\u17b6", + "\u179c\u17b7\u1785\u17d2\u1786\u17b7\u1780\u17b6", + "\u1792\u17d2\u1793\u17bc" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kn-in.js b/src/ngLocale/angular-locale_kn-in.js index 59f60a75c8e5..740b6b811d04 100644 --- a/src/ngLocale/angular-locale_kn-in.js +++ b/src/ngLocale/angular-locale_kn-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82" ], + "STANDALONEMONTH": [ + "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", + "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", + "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", + "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd", + "\u0cae\u0cc7", + "\u0c9c\u0cc2\u0ca8\u0ccd", + "\u0c9c\u0cc1\u0cb2\u0cc8", + "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd", + "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd", + "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd", + "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd", + "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_kn.js b/src/ngLocale/angular-locale_kn.js index 4dcebb61cb5d..04a2651d82d3 100644 --- a/src/ngLocale/angular-locale_kn.js +++ b/src/ngLocale/angular-locale_kn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ca8\u0cb5\u0cc6\u0c82", "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82" ], + "STANDALONEMONTH": [ + "\u0c9c\u0ca8\u0cb5\u0cb0\u0cbf", + "\u0cab\u0cc6\u0cac\u0ccd\u0cb0\u0cb5\u0cb0\u0cbf", + "\u0cae\u0cbe\u0cb0\u0ccd\u0c9a\u0ccd", + "\u0c8f\u0caa\u0ccd\u0cb0\u0cbf\u0cb2\u0ccd", + "\u0cae\u0cc7", + "\u0c9c\u0cc2\u0ca8\u0ccd", + "\u0c9c\u0cc1\u0cb2\u0cc8", + "\u0c86\u0c97\u0cb8\u0ccd\u0c9f\u0ccd", + "\u0cb8\u0cc6\u0caa\u0ccd\u0c9f\u0cc6\u0c82\u0cac\u0cb0\u0ccd", + "\u0c85\u0c95\u0ccd\u0c9f\u0ccb\u0cac\u0cb0\u0ccd", + "\u0ca8\u0cb5\u0cc6\u0c82\u0cac\u0cb0\u0ccd", + "\u0ca1\u0cbf\u0cb8\u0cc6\u0c82\u0cac\u0cb0\u0ccd" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ko-kp.js b/src/ngLocale/angular-locale_ko-kp.js index 61ae2b1be5c8..5a7ad847a845 100644 --- a/src/ngLocale/angular-locale_ko-kp.js +++ b/src/ngLocale/angular-locale_ko-kp.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\uc6d4", "12\uc6d4" ], + "STANDALONEMONTH": [ + "1\uc6d4", + "2\uc6d4", + "3\uc6d4", + "4\uc6d4", + "5\uc6d4", + "6\uc6d4", + "7\uc6d4", + "8\uc6d4", + "9\uc6d4", + "10\uc6d4", + "11\uc6d4", + "12\uc6d4" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ko-kr.js b/src/ngLocale/angular-locale_ko-kr.js index 004a2d8db71f..39af6df7f7fa 100644 --- a/src/ngLocale/angular-locale_ko-kr.js +++ b/src/ngLocale/angular-locale_ko-kr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\uc6d4", "12\uc6d4" ], + "STANDALONEMONTH": [ + "1\uc6d4", + "2\uc6d4", + "3\uc6d4", + "4\uc6d4", + "5\uc6d4", + "6\uc6d4", + "7\uc6d4", + "8\uc6d4", + "9\uc6d4", + "10\uc6d4", + "11\uc6d4", + "12\uc6d4" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ko.js b/src/ngLocale/angular-locale_ko.js index b9c6fea38abf..593abbe2e571 100644 --- a/src/ngLocale/angular-locale_ko.js +++ b/src/ngLocale/angular-locale_ko.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\uc6d4", "12\uc6d4" ], + "STANDALONEMONTH": [ + "1\uc6d4", + "2\uc6d4", + "3\uc6d4", + "4\uc6d4", + "5\uc6d4", + "6\uc6d4", + "7\uc6d4", + "8\uc6d4", + "9\uc6d4", + "10\uc6d4", + "11\uc6d4", + "12\uc6d4" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kok-in.js b/src/ngLocale/angular-locale_kok-in.js index fde838b73260..f48823ed5c9d 100644 --- a/src/ngLocale/angular-locale_kok-in.js +++ b/src/ngLocale/angular-locale_kok-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u090f\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u0948", + "\u0913\u0917\u0938\u094d\u091f", + "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930", + "\u0913\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", + "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_kok.js b/src/ngLocale/angular-locale_kok.js index 701c8f7e0844..15505c95149f 100644 --- a/src/ngLocale/angular-locale_kok.js +++ b/src/ngLocale/angular-locale_kok.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u090f\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u0948", + "\u0913\u0917\u0938\u094d\u091f", + "\u0938\u0947\u092a\u094d\u091f\u0947\u0902\u092c\u0930", + "\u0913\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", + "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ks-arab-in.js b/src/ngLocale/angular-locale_ks-arab-in.js index 3f2caf1cf0c4..954f2d0b389d 100644 --- a/src/ngLocale/angular-locale_ks-arab-in.js +++ b/src/ngLocale/angular-locale_ks-arab-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0624\u0631\u06cc", + "\u0641\u0631\u0624\u0631\u06cc", + "\u0645\u0627\u0631\u0655\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc\u0654", + "\u062c\u0648\u0657\u0646", + "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ks-arab.js b/src/ngLocale/angular-locale_ks-arab.js index 364703caeb8b..7d6f211fb0cb 100644 --- a/src/ngLocale/angular-locale_ks-arab.js +++ b/src/ngLocale/angular-locale_ks-arab.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0624\u0631\u06cc", + "\u0641\u0631\u0624\u0631\u06cc", + "\u0645\u0627\u0631\u0655\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc\u0654", + "\u062c\u0648\u0657\u0646", + "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ks.js b/src/ngLocale/angular-locale_ks.js index d5d58c66f245..5e9de026dc71 100644 --- a/src/ngLocale/angular-locale_ks.js +++ b/src/ngLocale/angular-locale_ks.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0624\u0631\u06cc", + "\u0641\u0631\u0624\u0631\u06cc", + "\u0645\u0627\u0631\u0655\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc\u0654", + "\u062c\u0648\u0657\u0646", + "\u062c\u0648\u0657\u0644\u0627\u06cc\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0657\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ksb-tz.js b/src/ngLocale/angular-locale_ksb-tz.js index f52a6f36252d..6927d58420b3 100644 --- a/src/ngLocale/angular-locale_ksb-tz.js +++ b/src/ngLocale/angular-locale_ksb-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januali", + "Febluali", + "Machi", + "Aplili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ksb.js b/src/ngLocale/angular-locale_ksb.js index 145289260197..457fe2d8d823 100644 --- a/src/ngLocale/angular-locale_ksb.js +++ b/src/ngLocale/angular-locale_ksb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januali", + "Febluali", + "Machi", + "Aplili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ksf-cm.js b/src/ngLocale/angular-locale_ksf-cm.js index a3f69547b074..d7ea7edb121f 100644 --- a/src/ngLocale/angular-locale_ksf-cm.js +++ b/src/ngLocale/angular-locale_ksf-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u014b11", "\u014b12" ], + "STANDALONEMONTH": [ + "\u014bw\u00ed\u00ed a nt\u0254\u0301nt\u0254", + "\u014bw\u00ed\u00ed ak\u01dd b\u025b\u0301\u025b", + "\u014bw\u00ed\u00ed ak\u01dd r\u00e1\u00e1", + "\u014bw\u00ed\u00ed ak\u01dd nin", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1an", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1af\u0254k", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1ab\u025b\u025b", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1araa", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1anin", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u0254\u0301k", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u025b\u0301\u025b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ksf.js b/src/ngLocale/angular-locale_ksf.js index dfd65a2e4457..e84c9dd64f09 100644 --- a/src/ngLocale/angular-locale_ksf.js +++ b/src/ngLocale/angular-locale_ksf.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u014b11", "\u014b12" ], + "STANDALONEMONTH": [ + "\u014bw\u00ed\u00ed a nt\u0254\u0301nt\u0254", + "\u014bw\u00ed\u00ed ak\u01dd b\u025b\u0301\u025b", + "\u014bw\u00ed\u00ed ak\u01dd r\u00e1\u00e1", + "\u014bw\u00ed\u00ed ak\u01dd nin", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1an", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1af\u0254k", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1ab\u025b\u025b", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1araa", + "\u014bw\u00ed\u00ed ak\u01dd t\u00e1anin", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u0254\u0301k", + "\u014bw\u00ed\u00ed ak\u01dd nt\u025bk di b\u025b\u0301\u025b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ksh-de.js b/src/ngLocale/angular-locale_ksh-de.js index c69f40d7430a..f2e138b66b40 100644 --- a/src/ngLocale/angular-locale_ksh-de.js +++ b/src/ngLocale/angular-locale_ksh-de.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Jannewa", + "F\u00e4browa", + "M\u00e4\u00e4z", + "Aprell", + "M\u00e4i", + "Juuni", + "Juuli", + "Oujo\u00df", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ksh.js b/src/ngLocale/angular-locale_ksh.js index cb166982d715..d4bf1699fe92 100644 --- a/src/ngLocale/angular-locale_ksh.js +++ b/src/ngLocale/angular-locale_ksh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dez" ], + "STANDALONEMONTH": [ + "Jannewa", + "F\u00e4browa", + "M\u00e4\u00e4z", + "Aprell", + "M\u00e4i", + "Juuni", + "Juuli", + "Oujo\u00df", + "Sept\u00e4mber", + "Oktoober", + "Nov\u00e4mber", + "Dez\u00e4mber" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kw-gb.js b/src/ngLocale/angular-locale_kw-gb.js index 45be15071378..2a95376ccbe0 100644 --- a/src/ngLocale/angular-locale_kw-gb.js +++ b/src/ngLocale/angular-locale_kw-gb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Du", "Kev" ], + "STANDALONEMONTH": [ + "mis Genver", + "mis Hwevrer", + "mis Meurth", + "mis Ebrel", + "mis Me", + "mis Metheven", + "mis Gortheren", + "mis Est", + "mis Gwynngala", + "mis Hedra", + "mis Du", + "mis Kevardhu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_kw.js b/src/ngLocale/angular-locale_kw.js index b1349d6a4234..5be45e290945 100644 --- a/src/ngLocale/angular-locale_kw.js +++ b/src/ngLocale/angular-locale_kw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Du", "Kev" ], + "STANDALONEMONTH": [ + "mis Genver", + "mis Hwevrer", + "mis Meurth", + "mis Ebrel", + "mis Me", + "mis Metheven", + "mis Gortheren", + "mis Est", + "mis Gwynngala", + "mis Hedra", + "mis Du", + "mis Kevardhu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ky-cyrl-kg.js b/src/ngLocale/angular-locale_ky-cyrl-kg.js index 75a594719d95..784c2d16d132 100644 --- a/src/ngLocale/angular-locale_ky-cyrl-kg.js +++ b/src/ngLocale/angular-locale_ky-cyrl-kg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ky-cyrl.js b/src/ngLocale/angular-locale_ky-cyrl.js index 7c5a577843de..073cfbbcfc46 100644 --- a/src/ngLocale/angular-locale_ky-cyrl.js +++ b/src/ngLocale/angular-locale_ky-cyrl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ky.js b/src/ngLocale/angular-locale_ky.js index b7fe26351d5a..f012d22aad2b 100644 --- a/src/ngLocale/angular-locale_ky.js +++ b/src/ngLocale/angular-locale_ky.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lag-tz.js b/src/ngLocale/angular-locale_lag-tz.js index a76e7696ede0..20a8682ef36f 100644 --- a/src/ngLocale/angular-locale_lag-tz.js +++ b/src/ngLocale/angular-locale_lag-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Saano", "Sasat\u0289" ], + "STANDALONEMONTH": [ + "K\u0289f\u00fangat\u0268", + "K\u0289naan\u0268", + "K\u0289keenda", + "Kwiikumi", + "Kwiinyamb\u00e1la", + "Kwiidwaata", + "K\u0289m\u0289\u0289nch\u0268", + "K\u0289v\u0268\u0268r\u0268", + "K\u0289saat\u0289", + "Kwiinyi", + "K\u0289saano", + "K\u0289sasat\u0289" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lag.js b/src/ngLocale/angular-locale_lag.js index 6fb2f6e53c51..3b8bb4fa7813 100644 --- a/src/ngLocale/angular-locale_lag.js +++ b/src/ngLocale/angular-locale_lag.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Saano", "Sasat\u0289" ], + "STANDALONEMONTH": [ + "K\u0289f\u00fangat\u0268", + "K\u0289naan\u0268", + "K\u0289keenda", + "Kwiikumi", + "Kwiinyamb\u00e1la", + "Kwiidwaata", + "K\u0289m\u0289\u0289nch\u0268", + "K\u0289v\u0268\u0268r\u0268", + "K\u0289saat\u0289", + "Kwiinyi", + "K\u0289saano", + "K\u0289sasat\u0289" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lb-lu.js b/src/ngLocale/angular-locale_lb-lu.js index 64ef9776921a..e05f59cfed47 100644 --- a/src/ngLocale/angular-locale_lb-lu.js +++ b/src/ngLocale/angular-locale_lb-lu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4erz", + "Abr\u00ebll", + "Mee", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lb.js b/src/ngLocale/angular-locale_lb.js index dd721993738a..8734cc3ec7f1 100644 --- a/src/ngLocale/angular-locale_lb.js +++ b/src/ngLocale/angular-locale_lb.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov.", "Dez." ], + "STANDALONEMONTH": [ + "Januar", + "Februar", + "M\u00e4erz", + "Abr\u00ebll", + "Mee", + "Juni", + "Juli", + "August", + "September", + "Oktober", + "November", + "Dezember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lg-ug.js b/src/ngLocale/angular-locale_lg-ug.js index 78d1c9f0be6f..ac345cd6872d 100644 --- a/src/ngLocale/angular-locale_lg-ug.js +++ b/src/ngLocale/angular-locale_lg-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janwaliyo", + "Febwaliyo", + "Marisi", + "Apuli", + "Maayi", + "Juuni", + "Julaayi", + "Agusito", + "Sebuttemba", + "Okitobba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lg.js b/src/ngLocale/angular-locale_lg.js index e0bbf02f1fe9..61e1c20db1b0 100644 --- a/src/ngLocale/angular-locale_lg.js +++ b/src/ngLocale/angular-locale_lg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janwaliyo", + "Febwaliyo", + "Marisi", + "Apuli", + "Maayi", + "Juuni", + "Julaayi", + "Agusito", + "Sebuttemba", + "Okitobba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lkt-us.js b/src/ngLocale/angular-locale_lkt-us.js index e5b488b86ca4..c59db627073b 100644 --- a/src/ngLocale/angular-locale_lkt-us.js +++ b/src/ngLocale/angular-locale_lkt-us.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Wan\u00edyetu W\u00ed", "T\u021fah\u00e9kap\u0161u\u014b W\u00ed" ], + "STANDALONEMONTH": [ + "Wi\u00f3the\u021fika W\u00ed", + "Thiy\u00f3\u021feyu\u014bka W\u00ed", + "I\u0161t\u00e1wi\u010dhayaza\u014b W\u00ed", + "P\u021fe\u017e\u00edt\u021fo W\u00ed", + "\u010cha\u014bw\u00e1pet\u021fo W\u00ed", + "W\u00edpazuk\u021fa-wa\u0161t\u00e9 W\u00ed", + "\u010cha\u014bp\u021f\u00e1sapa W\u00ed", + "Was\u00fat\u021fu\u014b W\u00ed", + "\u010cha\u014bw\u00e1pe\u01e7i W\u00ed", + "\u010cha\u014bw\u00e1pe-kasn\u00e1 W\u00ed", + "Wan\u00edyetu W\u00ed", + "T\u021fah\u00e9kap\u0161u\u014b W\u00ed" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lkt.js b/src/ngLocale/angular-locale_lkt.js index 57398cb3e1b3..e65494a6fd03 100644 --- a/src/ngLocale/angular-locale_lkt.js +++ b/src/ngLocale/angular-locale_lkt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Wan\u00edyetu W\u00ed", "T\u021fah\u00e9kap\u0161u\u014b W\u00ed" ], + "STANDALONEMONTH": [ + "Wi\u00f3the\u021fika W\u00ed", + "Thiy\u00f3\u021feyu\u014bka W\u00ed", + "I\u0161t\u00e1wi\u010dhayaza\u014b W\u00ed", + "P\u021fe\u017e\u00edt\u021fo W\u00ed", + "\u010cha\u014bw\u00e1pet\u021fo W\u00ed", + "W\u00edpazuk\u021fa-wa\u0161t\u00e9 W\u00ed", + "\u010cha\u014bp\u021f\u00e1sapa W\u00ed", + "Was\u00fat\u021fu\u014b W\u00ed", + "\u010cha\u014bw\u00e1pe\u01e7i W\u00ed", + "\u010cha\u014bw\u00e1pe-kasn\u00e1 W\u00ed", + "Wan\u00edyetu W\u00ed", + "T\u021fah\u00e9kap\u0161u\u014b W\u00ed" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ln-ao.js b/src/ngLocale/angular-locale_ln-ao.js index 8a88e889ae03..9d01b1c90a05 100644 --- a/src/ngLocale/angular-locale_ln-ao.js +++ b/src/ngLocale/angular-locale_ln-ao.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nvb", "dsb" ], + "STANDALONEMONTH": [ + "s\u00e1nz\u00e1 ya yambo", + "s\u00e1nz\u00e1 ya m\u00edbal\u00e9", + "s\u00e1nz\u00e1 ya m\u00eds\u00e1to", + "s\u00e1nz\u00e1 ya m\u00ednei", + "s\u00e1nz\u00e1 ya m\u00edt\u00e1no", + "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1", + "s\u00e1nz\u00e1 ya nsambo", + "s\u00e1nz\u00e1 ya mwambe", + "s\u00e1nz\u00e1 ya libwa", + "s\u00e1nz\u00e1 ya z\u00f3mi", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ln-cd.js b/src/ngLocale/angular-locale_ln-cd.js index f08e4f4f6643..d7ad31d17b46 100644 --- a/src/ngLocale/angular-locale_ln-cd.js +++ b/src/ngLocale/angular-locale_ln-cd.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nvb", "dsb" ], + "STANDALONEMONTH": [ + "s\u00e1nz\u00e1 ya yambo", + "s\u00e1nz\u00e1 ya m\u00edbal\u00e9", + "s\u00e1nz\u00e1 ya m\u00eds\u00e1to", + "s\u00e1nz\u00e1 ya m\u00ednei", + "s\u00e1nz\u00e1 ya m\u00edt\u00e1no", + "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1", + "s\u00e1nz\u00e1 ya nsambo", + "s\u00e1nz\u00e1 ya mwambe", + "s\u00e1nz\u00e1 ya libwa", + "s\u00e1nz\u00e1 ya z\u00f3mi", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ln-cf.js b/src/ngLocale/angular-locale_ln-cf.js index 7af86d5a9272..b2b8535cad5c 100644 --- a/src/ngLocale/angular-locale_ln-cf.js +++ b/src/ngLocale/angular-locale_ln-cf.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nvb", "dsb" ], + "STANDALONEMONTH": [ + "s\u00e1nz\u00e1 ya yambo", + "s\u00e1nz\u00e1 ya m\u00edbal\u00e9", + "s\u00e1nz\u00e1 ya m\u00eds\u00e1to", + "s\u00e1nz\u00e1 ya m\u00ednei", + "s\u00e1nz\u00e1 ya m\u00edt\u00e1no", + "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1", + "s\u00e1nz\u00e1 ya nsambo", + "s\u00e1nz\u00e1 ya mwambe", + "s\u00e1nz\u00e1 ya libwa", + "s\u00e1nz\u00e1 ya z\u00f3mi", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ln-cg.js b/src/ngLocale/angular-locale_ln-cg.js index 5c8e41cd5ada..92ba0b5b3e9b 100644 --- a/src/ngLocale/angular-locale_ln-cg.js +++ b/src/ngLocale/angular-locale_ln-cg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nvb", "dsb" ], + "STANDALONEMONTH": [ + "s\u00e1nz\u00e1 ya yambo", + "s\u00e1nz\u00e1 ya m\u00edbal\u00e9", + "s\u00e1nz\u00e1 ya m\u00eds\u00e1to", + "s\u00e1nz\u00e1 ya m\u00ednei", + "s\u00e1nz\u00e1 ya m\u00edt\u00e1no", + "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1", + "s\u00e1nz\u00e1 ya nsambo", + "s\u00e1nz\u00e1 ya mwambe", + "s\u00e1nz\u00e1 ya libwa", + "s\u00e1nz\u00e1 ya z\u00f3mi", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ln.js b/src/ngLocale/angular-locale_ln.js index 300de98e8522..05facff8c651 100644 --- a/src/ngLocale/angular-locale_ln.js +++ b/src/ngLocale/angular-locale_ln.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nvb", "dsb" ], + "STANDALONEMONTH": [ + "s\u00e1nz\u00e1 ya yambo", + "s\u00e1nz\u00e1 ya m\u00edbal\u00e9", + "s\u00e1nz\u00e1 ya m\u00eds\u00e1to", + "s\u00e1nz\u00e1 ya m\u00ednei", + "s\u00e1nz\u00e1 ya m\u00edt\u00e1no", + "s\u00e1nz\u00e1 ya mot\u00f3b\u00e1", + "s\u00e1nz\u00e1 ya nsambo", + "s\u00e1nz\u00e1 ya mwambe", + "s\u00e1nz\u00e1 ya libwa", + "s\u00e1nz\u00e1 ya z\u00f3mi", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u0254\u030ck\u0254\u0301", + "s\u00e1nz\u00e1 ya z\u00f3mi na m\u00edbal\u00e9" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lo-la.js b/src/ngLocale/angular-locale_lo-la.js index f6bf34f10749..08e5daa0dbf4 100644 --- a/src/ngLocale/angular-locale_lo-la.js +++ b/src/ngLocale/angular-locale_lo-la.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0e9e.\u0e88.", "\u0e97.\u0ea7." ], + "STANDALONEMONTH": [ + "\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99", + "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2", + "\u0ea1\u0eb5\u0e99\u0eb2", + "\u0ec0\u0ea1\u0eaa\u0eb2", + "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2", + "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2", + "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94", + "\u0eaa\u0eb4\u0e87\u0eab\u0eb2", + "\u0e81\u0eb1\u0e99\u0e8d\u0eb2", + "\u0e95\u0eb8\u0ea5\u0eb2", + "\u0e9e\u0eb0\u0e88\u0eb4\u0e81", + "\u0e97\u0eb1\u0e99\u0ea7\u0eb2" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lo.js b/src/ngLocale/angular-locale_lo.js index 76d517543fd8..99c438792368 100644 --- a/src/ngLocale/angular-locale_lo.js +++ b/src/ngLocale/angular-locale_lo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0e9e.\u0e88.", "\u0e97.\u0ea7." ], + "STANDALONEMONTH": [ + "\u0ea1\u0eb1\u0e87\u0e81\u0ead\u0e99", + "\u0e81\u0eb8\u0ea1\u0e9e\u0eb2", + "\u0ea1\u0eb5\u0e99\u0eb2", + "\u0ec0\u0ea1\u0eaa\u0eb2", + "\u0e9e\u0eb6\u0e94\u0eaa\u0eb0\u0e9e\u0eb2", + "\u0ea1\u0eb4\u0e96\u0eb8\u0e99\u0eb2", + "\u0e81\u0ecd\u0ea5\u0eb0\u0e81\u0ebb\u0e94", + "\u0eaa\u0eb4\u0e87\u0eab\u0eb2", + "\u0e81\u0eb1\u0e99\u0e8d\u0eb2", + "\u0e95\u0eb8\u0ea5\u0eb2", + "\u0e9e\u0eb0\u0e88\u0eb4\u0e81", + "\u0e97\u0eb1\u0e99\u0ea7\u0eb2" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lt-lt.js b/src/ngLocale/angular-locale_lt-lt.js index 34e16f9d6594..491a184b0a32 100644 --- a/src/ngLocale/angular-locale_lt-lt.js +++ b/src/ngLocale/angular-locale_lt-lt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lapkr.", "gruod." ], + "STANDALONEMONTH": [ + "sausis", + "vasaris", + "kovas", + "balandis", + "gegu\u017e\u0117", + "bir\u017eelis", + "liepa", + "rugpj\u016btis", + "rugs\u0117jis", + "spalis", + "lapkritis", + "gruodis" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lt.js b/src/ngLocale/angular-locale_lt.js index b8f7a9b3df5f..54222b2737d5 100644 --- a/src/ngLocale/angular-locale_lt.js +++ b/src/ngLocale/angular-locale_lt.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lapkr.", "gruod." ], + "STANDALONEMONTH": [ + "sausis", + "vasaris", + "kovas", + "balandis", + "gegu\u017e\u0117", + "bir\u017eelis", + "liepa", + "rugpj\u016btis", + "rugs\u0117jis", + "spalis", + "lapkritis", + "gruodis" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lu-cd.js b/src/ngLocale/angular-locale_lu-cd.js index 055332330b53..de0abaea1233 100644 --- a/src/ngLocale/angular-locale_lu-cd.js +++ b/src/ngLocale/angular-locale_lu-cd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kas", "Cis" ], + "STANDALONEMONTH": [ + "Ciongo", + "L\u00f9ishi", + "Lus\u00f2lo", + "M\u00f9uy\u00e0", + "Lum\u00f9ng\u00f9l\u00f9", + "Lufuimi", + "Kab\u00e0l\u00e0sh\u00ecp\u00f9", + "L\u00f9sh\u00eck\u00e0", + "Lutongolo", + "Lung\u00f9di", + "Kasw\u00e8k\u00e8s\u00e8", + "Cisw\u00e0" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lu.js b/src/ngLocale/angular-locale_lu.js index 9cddb8fab549..864e73860090 100644 --- a/src/ngLocale/angular-locale_lu.js +++ b/src/ngLocale/angular-locale_lu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kas", "Cis" ], + "STANDALONEMONTH": [ + "Ciongo", + "L\u00f9ishi", + "Lus\u00f2lo", + "M\u00f9uy\u00e0", + "Lum\u00f9ng\u00f9l\u00f9", + "Lufuimi", + "Kab\u00e0l\u00e0sh\u00ecp\u00f9", + "L\u00f9sh\u00eck\u00e0", + "Lutongolo", + "Lung\u00f9di", + "Kasw\u00e8k\u00e8s\u00e8", + "Cisw\u00e0" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_luo-ke.js b/src/ngLocale/angular-locale_luo-ke.js index 0f85ee6be2f8..96396b354919 100644 --- a/src/ngLocale/angular-locale_luo-ke.js +++ b/src/ngLocale/angular-locale_luo-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "DGI", "DAG" ], + "STANDALONEMONTH": [ + "Dwe mar Achiel", + "Dwe mar Ariyo", + "Dwe mar Adek", + "Dwe mar Ang\u2019wen", + "Dwe mar Abich", + "Dwe mar Auchiel", + "Dwe mar Abiriyo", + "Dwe mar Aboro", + "Dwe mar Ochiko", + "Dwe mar Apar", + "Dwe mar gi achiel", + "Dwe mar Apar gi ariyo" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_luo.js b/src/ngLocale/angular-locale_luo.js index 0067d1f42f45..cda811a6a18f 100644 --- a/src/ngLocale/angular-locale_luo.js +++ b/src/ngLocale/angular-locale_luo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "DGI", "DAG" ], + "STANDALONEMONTH": [ + "Dwe mar Achiel", + "Dwe mar Ariyo", + "Dwe mar Adek", + "Dwe mar Ang\u2019wen", + "Dwe mar Abich", + "Dwe mar Auchiel", + "Dwe mar Abiriyo", + "Dwe mar Aboro", + "Dwe mar Ochiko", + "Dwe mar Apar", + "Dwe mar gi achiel", + "Dwe mar Apar gi ariyo" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_luy-ke.js b/src/ngLocale/angular-locale_luy-ke.js index 301f5bf83775..96cfd849691b 100644 --- a/src/ngLocale/angular-locale_luy-ke.js +++ b/src/ngLocale/angular-locale_luy-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_luy.js b/src/ngLocale/angular-locale_luy.js index 01f683a53d71..8c6406e34e14 100644 --- a/src/ngLocale/angular-locale_luy.js +++ b/src/ngLocale/angular-locale_luy.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lv-lv.js b/src/ngLocale/angular-locale_lv-lv.js index e892fd4373dc..733588cdc6dc 100644 --- a/src/ngLocale/angular-locale_lv-lv.js +++ b/src/ngLocale/angular-locale_lv-lv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Janv\u0101ris", + "Febru\u0101ris", + "Marts", + "Apr\u012blis", + "Maijs", + "J\u016bnijs", + "J\u016blijs", + "Augusts", + "Septembris", + "Oktobris", + "Novembris", + "Decembris" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_lv.js b/src/ngLocale/angular-locale_lv.js index c22256cbbae3..574c73ced27b 100644 --- a/src/ngLocale/angular-locale_lv.js +++ b/src/ngLocale/angular-locale_lv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Janv\u0101ris", + "Febru\u0101ris", + "Marts", + "Apr\u012blis", + "Maijs", + "J\u016bnijs", + "J\u016blijs", + "Augusts", + "Septembris", + "Oktobris", + "Novembris", + "Decembris" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mas-ke.js b/src/ngLocale/angular-locale_mas-ke.js index 74bf268bde6b..1a05ccf1c684 100644 --- a/src/ngLocale/angular-locale_mas-ke.js +++ b/src/ngLocale/angular-locale_mas-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sh\u0289\u0301", "Nt\u0289\u0301" ], + "STANDALONEMONTH": [ + "Oladal\u0289\u0301", + "Ar\u00e1t", + "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k", + "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2", + "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2", + "K\u00faj\u00fa\u0254r\u0254k", + "M\u00f3rus\u00e1sin", + "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b", + "K\u00fash\u00een", + "Olg\u00edsan", + "P\u0289sh\u0289\u0301ka", + "Nt\u0289\u0301\u014b\u0289\u0301s" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mas-tz.js b/src/ngLocale/angular-locale_mas-tz.js index 0a81920be8d4..555c9ced0c44 100644 --- a/src/ngLocale/angular-locale_mas-tz.js +++ b/src/ngLocale/angular-locale_mas-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sh\u0289\u0301", "Nt\u0289\u0301" ], + "STANDALONEMONTH": [ + "Oladal\u0289\u0301", + "Ar\u00e1t", + "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k", + "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2", + "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2", + "K\u00faj\u00fa\u0254r\u0254k", + "M\u00f3rus\u00e1sin", + "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b", + "K\u00fash\u00een", + "Olg\u00edsan", + "P\u0289sh\u0289\u0301ka", + "Nt\u0289\u0301\u014b\u0289\u0301s" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mas.js b/src/ngLocale/angular-locale_mas.js index 16938f98df4d..3f46d8b76856 100644 --- a/src/ngLocale/angular-locale_mas.js +++ b/src/ngLocale/angular-locale_mas.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sh\u0289\u0301", "Nt\u0289\u0301" ], + "STANDALONEMONTH": [ + "Oladal\u0289\u0301", + "Ar\u00e1t", + "\u0186\u025bn\u0268\u0301\u0254\u0268\u014b\u0254k", + "Olodoy\u00ed\u00f3r\u00ed\u00ea ink\u00f3k\u00fa\u00e2", + "Oloil\u00e9p\u016bny\u012b\u0113 ink\u00f3k\u00fa\u00e2", + "K\u00faj\u00fa\u0254r\u0254k", + "M\u00f3rus\u00e1sin", + "\u0186l\u0254\u0301\u0268\u0301b\u0254\u0301r\u00e1r\u025b", + "K\u00fash\u00een", + "Olg\u00edsan", + "P\u0289sh\u0289\u0301ka", + "Nt\u0289\u0301\u014b\u0289\u0301s" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mer-ke.js b/src/ngLocale/angular-locale_mer-ke.js index da3e57d0d5a0..3f4960dee88f 100644 --- a/src/ngLocale/angular-locale_mer-ke.js +++ b/src/ngLocale/angular-locale_mer-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "NOV", "DEC" ], + "STANDALONEMONTH": [ + "Januar\u0129", + "Feburuar\u0129", + "Machi", + "\u0128pur\u0169", + "M\u0129\u0129", + "Njuni", + "Njura\u0129", + "Agasti", + "Septemba", + "Okt\u0169ba", + "Novemba", + "Dicemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mer.js b/src/ngLocale/angular-locale_mer.js index 8c359f30edba..4b658b5600e4 100644 --- a/src/ngLocale/angular-locale_mer.js +++ b/src/ngLocale/angular-locale_mer.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "NOV", "DEC" ], + "STANDALONEMONTH": [ + "Januar\u0129", + "Feburuar\u0129", + "Machi", + "\u0128pur\u0169", + "M\u0129\u0129", + "Njuni", + "Njura\u0129", + "Agasti", + "Septemba", + "Okt\u0169ba", + "Novemba", + "Dicemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mfe-mu.js b/src/ngLocale/angular-locale_mfe-mu.js index 1222582ea749..ae9e8d82f1bf 100644 --- a/src/ngLocale/angular-locale_mfe-mu.js +++ b/src/ngLocale/angular-locale_mfe-mu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "des" ], + "STANDALONEMONTH": [ + "zanvie", + "fevriye", + "mars", + "avril", + "me", + "zin", + "zilye", + "out", + "septam", + "oktob", + "novam", + "desam" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mfe.js b/src/ngLocale/angular-locale_mfe.js index 56029318d6cb..5578bcce76f5 100644 --- a/src/ngLocale/angular-locale_mfe.js +++ b/src/ngLocale/angular-locale_mfe.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "des" ], + "STANDALONEMONTH": [ + "zanvie", + "fevriye", + "mars", + "avril", + "me", + "zin", + "zilye", + "out", + "septam", + "oktob", + "novam", + "desam" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mg-mg.js b/src/ngLocale/angular-locale_mg-mg.js index 7d6499176341..425c85fac52e 100644 --- a/src/ngLocale/angular-locale_mg-mg.js +++ b/src/ngLocale/angular-locale_mg-mg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janoary", + "Febroary", + "Martsa", + "Aprily", + "Mey", + "Jona", + "Jolay", + "Aogositra", + "Septambra", + "Oktobra", + "Novambra", + "Desambra" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mg.js b/src/ngLocale/angular-locale_mg.js index 7b4b871689b9..64c69dda0c41 100644 --- a/src/ngLocale/angular-locale_mg.js +++ b/src/ngLocale/angular-locale_mg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janoary", + "Febroary", + "Martsa", + "Aprily", + "Mey", + "Jona", + "Jolay", + "Aogositra", + "Septambra", + "Oktobra", + "Novambra", + "Desambra" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mgh-mz.js b/src/ngLocale/angular-locale_mgh-mz.js index 3a96657c7e30..b75b9d81cb80 100644 --- a/src/ngLocale/angular-locale_mgh-mz.js +++ b/src/ngLocale/angular-locale_mgh-mz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Moj", "Yel" ], + "STANDALONEMONTH": [ + "Mweri wo kwanza", + "Mweri wo unayeli", + "Mweri wo uneraru", + "Mweri wo unecheshe", + "Mweri wo unethanu", + "Mweri wo thanu na mocha", + "Mweri wo saba", + "Mweri wo nane", + "Mweri wo tisa", + "Mweri wo kumi", + "Mweri wo kumi na moja", + "Mweri wo kumi na yel\u2019li" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mgh.js b/src/ngLocale/angular-locale_mgh.js index 8b52d09442ec..cefa7dbf17a7 100644 --- a/src/ngLocale/angular-locale_mgh.js +++ b/src/ngLocale/angular-locale_mgh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Moj", "Yel" ], + "STANDALONEMONTH": [ + "Mweri wo kwanza", + "Mweri wo unayeli", + "Mweri wo uneraru", + "Mweri wo unecheshe", + "Mweri wo unethanu", + "Mweri wo thanu na mocha", + "Mweri wo saba", + "Mweri wo nane", + "Mweri wo tisa", + "Mweri wo kumi", + "Mweri wo kumi na moja", + "Mweri wo kumi na yel\u2019li" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mgo-cm.js b/src/ngLocale/angular-locale_mgo-cm.js index da0baa9d2173..ef41badcc926 100644 --- a/src/ngLocale/angular-locale_mgo-cm.js +++ b/src/ngLocale/angular-locale_mgo-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "im\u0259g z\u00f2", "im\u0259g krizmed" ], + "STANDALONEMONTH": [ + "im\u0259g mbegtug", + "imeg \u00e0b\u00f9b\u00ec", + "imeg mb\u0259\u014bchubi", + "im\u0259g ngw\u0259\u0300t", + "im\u0259g fog", + "im\u0259g ichiib\u0254d", + "im\u0259g \u00e0d\u00f9mb\u0259\u0300\u014b", + "im\u0259g ichika", + "im\u0259g kud", + "im\u0259g t\u00e8si\u02bce", + "im\u0259g z\u00f2", + "im\u0259g krizmed" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mgo.js b/src/ngLocale/angular-locale_mgo.js index 74bc53ecad0d..9f0d50882c9c 100644 --- a/src/ngLocale/angular-locale_mgo.js +++ b/src/ngLocale/angular-locale_mgo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "im\u0259g z\u00f2", "im\u0259g krizmed" ], + "STANDALONEMONTH": [ + "im\u0259g mbegtug", + "imeg \u00e0b\u00f9b\u00ec", + "imeg mb\u0259\u014bchubi", + "im\u0259g ngw\u0259\u0300t", + "im\u0259g fog", + "im\u0259g ichiib\u0254d", + "im\u0259g \u00e0d\u00f9mb\u0259\u0300\u014b", + "im\u0259g ichika", + "im\u0259g kud", + "im\u0259g t\u00e8si\u02bce", + "im\u0259g z\u00f2", + "im\u0259g krizmed" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mk-mk.js b/src/ngLocale/angular-locale_mk-mk.js index bd775d868684..6bda8ef30599 100644 --- a/src/ngLocale/angular-locale_mk-mk.js +++ b/src/ngLocale/angular-locale_mk-mk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440\u0438", + "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d\u0438", + "\u0458\u0443\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", + "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", + "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", + "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mk.js b/src/ngLocale/angular-locale_mk.js index b456dc6efebd..c8145fa61667 100644 --- a/src/ngLocale/angular-locale_mk.js +++ b/src/ngLocale/angular-locale_mk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0435\u043c.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440\u0438", + "\u0444\u0435\u0432\u0440\u0443\u0430\u0440\u0438", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d\u0438", + "\u0458\u0443\u043b\u0438", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0432\u0440\u0438", + "\u043e\u043a\u0442\u043e\u043c\u0432\u0440\u0438", + "\u043d\u043e\u0435\u043c\u0432\u0440\u0438", + "\u0434\u0435\u043a\u0435\u043c\u0432\u0440\u0438" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ml-in.js b/src/ngLocale/angular-locale_ml-in.js index c3d012ff7a1a..e3f23631343b 100644 --- a/src/ngLocale/angular-locale_ml-in.js +++ b/src/ngLocale/angular-locale_ml-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0d28\u0d35\u0d02", "\u0d21\u0d3f\u0d38\u0d02" ], + "STANDALONEMONTH": [ + "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f", + "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f", + "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d", + "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d", + "\u0d2e\u0d47\u0d2f\u0d4d", + "\u0d1c\u0d42\u0d7a", + "\u0d1c\u0d42\u0d32\u0d48", + "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d", + "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c", + "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c", + "\u0d28\u0d35\u0d02\u0d2c\u0d7c", + "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ml.js b/src/ngLocale/angular-locale_ml.js index 8d50656ed960..e7a3fd4d01fb 100644 --- a/src/ngLocale/angular-locale_ml.js +++ b/src/ngLocale/angular-locale_ml.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0d28\u0d35\u0d02", "\u0d21\u0d3f\u0d38\u0d02" ], + "STANDALONEMONTH": [ + "\u0d1c\u0d28\u0d41\u0d35\u0d30\u0d3f", + "\u0d2b\u0d46\u0d2c\u0d4d\u0d30\u0d41\u0d35\u0d30\u0d3f", + "\u0d2e\u0d3e\u0d7c\u0d1a\u0d4d\u0d1a\u0d4d", + "\u0d0f\u0d2a\u0d4d\u0d30\u0d3f\u0d7d", + "\u0d2e\u0d47\u0d2f\u0d4d", + "\u0d1c\u0d42\u0d7a", + "\u0d1c\u0d42\u0d32\u0d48", + "\u0d06\u0d17\u0d38\u0d4d\u0d31\u0d4d\u0d31\u0d4d", + "\u0d38\u0d46\u0d2a\u0d4d\u0d31\u0d4d\u0d31\u0d02\u0d2c\u0d7c", + "\u0d12\u0d15\u0d4d\u200c\u0d1f\u0d4b\u0d2c\u0d7c", + "\u0d28\u0d35\u0d02\u0d2c\u0d7c", + "\u0d21\u0d3f\u0d38\u0d02\u0d2c\u0d7c" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_mn-cyrl-mn.js b/src/ngLocale/angular-locale_mn-cyrl-mn.js index 961fdd2c6d53..a49572945229 100644 --- a/src/ngLocale/angular-locale_mn-cyrl-mn.js +++ b/src/ngLocale/angular-locale_mn-cyrl-mn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11-\u0440 \u0441\u0430\u0440", "12-\u0440 \u0441\u0430\u0440" ], + "STANDALONEMONTH": [ + "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mn-cyrl.js b/src/ngLocale/angular-locale_mn-cyrl.js index c69a40d3823b..41a2166a8540 100644 --- a/src/ngLocale/angular-locale_mn-cyrl.js +++ b/src/ngLocale/angular-locale_mn-cyrl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11-\u0440 \u0441\u0430\u0440", "12-\u0440 \u0441\u0430\u0440" ], + "STANDALONEMONTH": [ + "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mn.js b/src/ngLocale/angular-locale_mn.js index 0b4240931be3..c29b23a70735 100644 --- a/src/ngLocale/angular-locale_mn.js +++ b/src/ngLocale/angular-locale_mn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11-\u0440 \u0441\u0430\u0440", "12-\u0440 \u0441\u0430\u0440" ], + "STANDALONEMONTH": [ + "\u041d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0425\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0413\u0443\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u04e9\u0440\u04e9\u0432\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0422\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0417\u0443\u0440\u0433\u0430\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0414\u043e\u043b\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u041d\u0430\u0439\u043c\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0415\u0441\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0430\u0432\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u043d\u044d\u0433\u0434\u04af\u0433\u044d\u044d\u0440 \u0441\u0430\u0440", + "\u0410\u0440\u0432\u0430\u043d \u0445\u043e\u0451\u0440\u0434\u0443\u0433\u0430\u0430\u0440 \u0441\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mr-in.js b/src/ngLocale/angular-locale_mr-in.js index b040d89d5218..6987709bbb37 100644 --- a/src/ngLocale/angular-locale_mr-in.js +++ b/src/ngLocale/angular-locale_mr-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u094b\u0935\u094d\u0939\u0947\u0902", "\u0921\u093f\u0938\u0947\u0902" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u090f\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u0948", + "\u0911\u0917\u0938\u094d\u091f", + "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930", + "\u0911\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", + "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_mr.js b/src/ngLocale/angular-locale_mr.js index 5f5847dfdf94..95489e794600 100644 --- a/src/ngLocale/angular-locale_mr.js +++ b/src/ngLocale/angular-locale_mr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u094b\u0935\u094d\u0939\u0947\u0902", "\u0921\u093f\u0938\u0947\u0902" ], + "STANDALONEMONTH": [ + "\u091c\u093e\u0928\u0947\u0935\u093e\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0935\u093e\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u090f\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0942\u0928", + "\u091c\u0941\u0932\u0948", + "\u0911\u0917\u0938\u094d\u091f", + "\u0938\u092a\u094d\u091f\u0947\u0902\u092c\u0930", + "\u0911\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u0935\u094d\u0939\u0947\u0902\u092c\u0930", + "\u0921\u093f\u0938\u0947\u0902\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ms-latn-bn.js b/src/ngLocale/angular-locale_ms-latn-bn.js index 1bc9d07ce225..8194f4ddfb52 100644 --- a/src/ngLocale/angular-locale_ms-latn-bn.js +++ b/src/ngLocale/angular-locale_ms-latn-bn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mac", + "April", + "Mei", + "Jun", + "Julai", + "Ogos", + "September", + "Oktober", + "November", + "Disember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ms-latn-my.js b/src/ngLocale/angular-locale_ms-latn-my.js index 5177e15f4221..24c1a2378e64 100644 --- a/src/ngLocale/angular-locale_ms-latn-my.js +++ b/src/ngLocale/angular-locale_ms-latn-my.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mac", + "April", + "Mei", + "Jun", + "Julai", + "Ogos", + "September", + "Oktober", + "November", + "Disember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ms-latn-sg.js b/src/ngLocale/angular-locale_ms-latn-sg.js index ebd3bd4cbbc1..65e9d3b8e597 100644 --- a/src/ngLocale/angular-locale_ms-latn-sg.js +++ b/src/ngLocale/angular-locale_ms-latn-sg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mac", + "April", + "Mei", + "Jun", + "Julai", + "Ogos", + "September", + "Oktober", + "November", + "Disember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ms-latn.js b/src/ngLocale/angular-locale_ms-latn.js index 2d4c07a84282..fdecd0f49f9e 100644 --- a/src/ngLocale/angular-locale_ms-latn.js +++ b/src/ngLocale/angular-locale_ms-latn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mac", + "April", + "Mei", + "Jun", + "Julai", + "Ogos", + "September", + "Oktober", + "November", + "Disember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ms.js b/src/ngLocale/angular-locale_ms.js index 0549f85b0e4f..37e14a6bf1ff 100644 --- a/src/ngLocale/angular-locale_ms.js +++ b/src/ngLocale/angular-locale_ms.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mac", + "April", + "Mei", + "Jun", + "Julai", + "Ogos", + "September", + "Oktober", + "November", + "Disember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mt-mt.js b/src/ngLocale/angular-locale_mt-mt.js index 20170a1a0a41..6377ee69ec7d 100644 --- a/src/ngLocale/angular-locale_mt-mt.js +++ b/src/ngLocale/angular-locale_mt-mt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Di\u010b" ], + "STANDALONEMONTH": [ + "Jannar", + "Frar", + "Marzu", + "April", + "Mejju", + "\u0120unju", + "Lulju", + "Awwissu", + "Settembru", + "Ottubru", + "Novembru", + "Di\u010bembru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mt.js b/src/ngLocale/angular-locale_mt.js index 94902b1952f0..17ffdf79f0bb 100644 --- a/src/ngLocale/angular-locale_mt.js +++ b/src/ngLocale/angular-locale_mt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Di\u010b" ], + "STANDALONEMONTH": [ + "Jannar", + "Frar", + "Marzu", + "April", + "Mejju", + "\u0120unju", + "Lulju", + "Awwissu", + "Settembru", + "Ottubru", + "Novembru", + "Di\u010bembru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mua-cm.js b/src/ngLocale/angular-locale_mua-cm.js index 49c1012de479..ef4142a54473 100644 --- a/src/ngLocale/angular-locale_mua-cm.js +++ b/src/ngLocale/angular-locale_mua-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "FGW", "FYU" ], + "STANDALONEMONTH": [ + "F\u0129i Loo", + "Cokcwakla\u014bne", + "Cokcwaklii", + "F\u0129i Marfoo", + "Mad\u01dd\u01dduut\u01ddbija\u014b", + "Mam\u01dd\u014bgw\u00e3afahbii", + "Mam\u01dd\u014bgw\u00e3alii", + "Mad\u01ddmbii", + "F\u0129i D\u01dd\u0253lii", + "F\u0129i Munda\u014b", + "F\u0129i Gwahlle", + "F\u0129i Yuru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_mua.js b/src/ngLocale/angular-locale_mua.js index c5f30a2f850b..3aa7d673cff3 100644 --- a/src/ngLocale/angular-locale_mua.js +++ b/src/ngLocale/angular-locale_mua.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "FGW", "FYU" ], + "STANDALONEMONTH": [ + "F\u0129i Loo", + "Cokcwakla\u014bne", + "Cokcwaklii", + "F\u0129i Marfoo", + "Mad\u01dd\u01dduut\u01ddbija\u014b", + "Mam\u01dd\u014bgw\u00e3afahbii", + "Mam\u01dd\u014bgw\u00e3alii", + "Mad\u01ddmbii", + "F\u0129i D\u01dd\u0253lii", + "F\u0129i Munda\u014b", + "F\u0129i Gwahlle", + "F\u0129i Yuru" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_my-mm.js b/src/ngLocale/angular-locale_my-mm.js index d658ac96cd73..560eb6111595 100644 --- a/src/ngLocale/angular-locale_my-mm.js +++ b/src/ngLocale/angular-locale_my-mm.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u1014\u102d\u102f", "\u1012\u102e" ], + "STANDALONEMONTH": [ + "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e", + "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e", + "\u1019\u1010\u103a", + "\u1027\u1015\u103c\u102e", + "\u1019\u1031", + "\u1007\u103d\u1014\u103a", + "\u1007\u1030\u101c\u102d\u102f\u1004\u103a", + "\u1029\u1002\u102f\u1010\u103a", + "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c", + "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c", + "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c", + "\u1012\u102e\u1007\u1004\u103a\u1018\u102c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_my.js b/src/ngLocale/angular-locale_my.js index 7a6c02b472d7..ad609dba463f 100644 --- a/src/ngLocale/angular-locale_my.js +++ b/src/ngLocale/angular-locale_my.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u1014\u102d\u102f", "\u1012\u102e" ], + "STANDALONEMONTH": [ + "\u1007\u1014\u103a\u1014\u101d\u102b\u101b\u102e", + "\u1016\u1031\u1016\u1031\u102c\u103a\u101d\u102b\u101b\u102e", + "\u1019\u1010\u103a", + "\u1027\u1015\u103c\u102e", + "\u1019\u1031", + "\u1007\u103d\u1014\u103a", + "\u1007\u1030\u101c\u102d\u102f\u1004\u103a", + "\u1029\u1002\u102f\u1010\u103a", + "\u1005\u1000\u103a\u1010\u1004\u103a\u1018\u102c", + "\u1021\u1031\u102c\u1000\u103a\u1010\u102d\u102f\u1018\u102c", + "\u1014\u102d\u102f\u101d\u1004\u103a\u1018\u102c", + "\u1012\u102e\u1007\u1004\u103a\u1018\u102c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_naq-na.js b/src/ngLocale/angular-locale_naq-na.js index 699ab6211b3f..55ccfa94dfe0 100644 --- a/src/ngLocale/angular-locale_naq-na.js +++ b/src/ngLocale/angular-locale_naq-na.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "\u01c3Khanni", + "\u01c3Khan\u01c0g\u00f4ab", + "\u01c0Khuu\u01c1kh\u00e2b", + "\u01c3H\u00f4a\u01c2khaib", + "\u01c3Khaits\u00e2b", + "Gama\u01c0aeb", + "\u01c2Khoesaob", + "Ao\u01c1khuum\u00fb\u01c1kh\u00e2b", + "Tara\u01c0khuum\u00fb\u01c1kh\u00e2b", + "\u01c2N\u00fb\u01c1n\u00e2iseb", + "\u01c0Hoo\u01c2gaeb", + "H\u00f4asore\u01c1kh\u00e2b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_naq.js b/src/ngLocale/angular-locale_naq.js index 3c376cdb7de2..ee3ae873709d 100644 --- a/src/ngLocale/angular-locale_naq.js +++ b/src/ngLocale/angular-locale_naq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "\u01c3Khanni", + "\u01c3Khan\u01c0g\u00f4ab", + "\u01c0Khuu\u01c1kh\u00e2b", + "\u01c3H\u00f4a\u01c2khaib", + "\u01c3Khaits\u00e2b", + "Gama\u01c0aeb", + "\u01c2Khoesaob", + "Ao\u01c1khuum\u00fb\u01c1kh\u00e2b", + "Tara\u01c0khuum\u00fb\u01c1kh\u00e2b", + "\u01c2N\u00fb\u01c1n\u00e2iseb", + "\u01c0Hoo\u01c2gaeb", + "H\u00f4asore\u01c1kh\u00e2b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nb-no.js b/src/ngLocale/angular-locale_nb-no.js index 931bf639e739..b6fd1312cf61 100644 --- a/src/ngLocale/angular-locale_nb-no.js +++ b/src/ngLocale/angular-locale_nb-no.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nb-sj.js b/src/ngLocale/angular-locale_nb-sj.js index 487815bf0f98..92d048b0a12e 100644 --- a/src/ngLocale/angular-locale_nb-sj.js +++ b/src/ngLocale/angular-locale_nb-sj.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nb.js b/src/ngLocale/angular-locale_nb.js index 61106d82e15d..54fe1f0c567c 100644 --- a/src/ngLocale/angular-locale_nb.js +++ b/src/ngLocale/angular-locale_nb.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nd-zw.js b/src/ngLocale/angular-locale_nd-zw.js index b9ac58142e15..89d2ff89aa30 100644 --- a/src/ngLocale/angular-locale_nd-zw.js +++ b/src/ngLocale/angular-locale_nd-zw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Lwe", "Mpal" ], + "STANDALONEMONTH": [ + "Zibandlela", + "Nhlolanja", + "Mbimbitho", + "Mabasa", + "Nkwenkwezi", + "Nhlangula", + "Ntulikazi", + "Ncwabakazi", + "Mpandula", + "Mfumfu", + "Lwezi", + "Mpalakazi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nd.js b/src/ngLocale/angular-locale_nd.js index 96d113bd1664..63dd61fdc333 100644 --- a/src/ngLocale/angular-locale_nd.js +++ b/src/ngLocale/angular-locale_nd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Lwe", "Mpal" ], + "STANDALONEMONTH": [ + "Zibandlela", + "Nhlolanja", + "Mbimbitho", + "Mabasa", + "Nkwenkwezi", + "Nhlangula", + "Ntulikazi", + "Ncwabakazi", + "Mpandula", + "Mfumfu", + "Lwezi", + "Mpalakazi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ne-in.js b/src/ngLocale/angular-locale_ne-in.js index 283c8ca2adf8..f827eb7cd4a2 100644 --- a/src/ngLocale/angular-locale_ne-in.js +++ b/src/ngLocale/angular-locale_ne-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u0928\u0935\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u0905\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0941\u0928", + "\u091c\u0941\u0932\u093e\u0908", + "\u0905\u0917\u0938\u094d\u091f", + "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930", + "\u0905\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", + "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ne-np.js b/src/ngLocale/angular-locale_ne-np.js index d8e52d088ab4..5e7b5737659d 100644 --- a/src/ngLocale/angular-locale_ne-np.js +++ b/src/ngLocale/angular-locale_ne-np.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u0928\u0935\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u0905\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0941\u0928", + "\u091c\u0941\u0932\u093e\u0908", + "\u0905\u0917\u0938\u094d\u091f", + "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930", + "\u0905\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", + "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ne.js b/src/ngLocale/angular-locale_ne.js index cff99fec1bf4..26ab63e1e93e 100644 --- a/src/ngLocale/angular-locale_ne.js +++ b/src/ngLocale/angular-locale_ne.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" ], + "STANDALONEMONTH": [ + "\u091c\u0928\u0935\u0930\u0940", + "\u092b\u0947\u092c\u094d\u0930\u0941\u0905\u0930\u0940", + "\u092e\u093e\u0930\u094d\u091a", + "\u0905\u092a\u094d\u0930\u093f\u0932", + "\u092e\u0947", + "\u091c\u0941\u0928", + "\u091c\u0941\u0932\u093e\u0908", + "\u0905\u0917\u0938\u094d\u091f", + "\u0938\u0947\u092a\u094d\u091f\u0947\u092e\u094d\u092c\u0930", + "\u0905\u0915\u094d\u091f\u094b\u092c\u0930", + "\u0928\u094b\u092d\u0947\u092e\u094d\u092c\u0930", + "\u0921\u093f\u0938\u0947\u092e\u094d\u092c\u0930" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-aw.js b/src/ngLocale/angular-locale_nl-aw.js index 3e22477d4e31..3f3ab3fd162c 100644 --- a/src/ngLocale/angular-locale_nl-aw.js +++ b/src/ngLocale/angular-locale_nl-aw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-be.js b/src/ngLocale/angular-locale_nl-be.js index 38ba3ab8425e..5ec84e3d40c4 100644 --- a/src/ngLocale/angular-locale_nl-be.js +++ b/src/ngLocale/angular-locale_nl-be.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-bq.js b/src/ngLocale/angular-locale_nl-bq.js index 87c008a23afd..4d1ca2504a45 100644 --- a/src/ngLocale/angular-locale_nl-bq.js +++ b/src/ngLocale/angular-locale_nl-bq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-cw.js b/src/ngLocale/angular-locale_nl-cw.js index 7475f6ed9bb0..0966a86bbd29 100644 --- a/src/ngLocale/angular-locale_nl-cw.js +++ b/src/ngLocale/angular-locale_nl-cw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-nl.js b/src/ngLocale/angular-locale_nl-nl.js index 3b7bd150e686..ff59e65ac3b1 100644 --- a/src/ngLocale/angular-locale_nl-nl.js +++ b/src/ngLocale/angular-locale_nl-nl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-sr.js b/src/ngLocale/angular-locale_nl-sr.js index 06875a8158a7..49e5c7bcd354 100644 --- a/src/ngLocale/angular-locale_nl-sr.js +++ b/src/ngLocale/angular-locale_nl-sr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl-sx.js b/src/ngLocale/angular-locale_nl-sx.js index c59dfb5accaa..9234decf7c71 100644 --- a/src/ngLocale/angular-locale_nl-sx.js +++ b/src/ngLocale/angular-locale_nl-sx.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nl.js b/src/ngLocale/angular-locale_nl.js index 79428d98be28..8b0bc820cc0d 100644 --- a/src/ngLocale/angular-locale_nl.js +++ b/src/ngLocale/angular-locale_nl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Maart", + "April", + "Mei", + "Juni", + "Juli", + "Augustus", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nmg-cm.js b/src/ngLocale/angular-locale_nmg-cm.js index 24594190e8da..f77a235c0518 100644 --- a/src/ngLocale/angular-locale_nmg-cm.js +++ b/src/ngLocale/angular-locale_nmg-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ng11", "kris" ], + "STANDALONEMONTH": [ + "ngw\u025bn mat\u00e1hra", + "ngw\u025bn \u0144mba", + "ngw\u025bn \u0144lal", + "ngw\u025bn \u0144na", + "ngw\u025bn \u0144tan", + "ngw\u025bn \u0144tu\u00f3", + "ngw\u025bn h\u025bmbu\u025br\u00ed", + "ngw\u025bn l\u0254mbi", + "ngw\u025bn r\u025bbvu\u00e2", + "ngw\u025bn wum", + "ngw\u025bn wum nav\u01d4r", + "kr\u00edsimin" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nmg.js b/src/ngLocale/angular-locale_nmg.js index 98f5073e6f78..73588a8e9071 100644 --- a/src/ngLocale/angular-locale_nmg.js +++ b/src/ngLocale/angular-locale_nmg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ng11", "kris" ], + "STANDALONEMONTH": [ + "ngw\u025bn mat\u00e1hra", + "ngw\u025bn \u0144mba", + "ngw\u025bn \u0144lal", + "ngw\u025bn \u0144na", + "ngw\u025bn \u0144tan", + "ngw\u025bn \u0144tu\u00f3", + "ngw\u025bn h\u025bmbu\u025br\u00ed", + "ngw\u025bn l\u0254mbi", + "ngw\u025bn r\u025bbvu\u00e2", + "ngw\u025bn wum", + "ngw\u025bn wum nav\u01d4r", + "kr\u00edsimin" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nn-no.js b/src/ngLocale/angular-locale_nn-no.js index c303718bb475..05da031f81de 100644 --- a/src/ngLocale/angular-locale_nn-no.js +++ b/src/ngLocale/angular-locale_nn-no.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nn.js b/src/ngLocale/angular-locale_nn.js index 6d2f0370c59a..50d242215ad8 100644 --- a/src/ngLocale/angular-locale_nn.js +++ b/src/ngLocale/angular-locale_nn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nnh-cm.js b/src/ngLocale/angular-locale_nnh-cm.js index 92eef3bf8058..1236df95fbfa 100644 --- a/src/ngLocale/angular-locale_nnh-cm.js +++ b/src/ngLocale/angular-locale_nnh-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sa\u014b mejwo\u014b\u00f3", "sa\u014b l\u00f9m" ], + "STANDALONEMONTH": [ + "sa\u014b tsets\u025b\u0300\u025b l\u00f9m", + "sa\u014b k\u00e0g ngw\u00f3\u014b", + "sa\u014b lepy\u00e8 sh\u00fam", + "sa\u014b c\u00ff\u00f3", + "sa\u014b ts\u025b\u0300\u025b c\u00ff\u00f3", + "sa\u014b nj\u00ffol\u00e1\u02bc", + "sa\u014b ty\u025b\u0300b ty\u025b\u0300b mb\u0289\u0300", + "sa\u014b mb\u0289\u0300\u014b", + "sa\u014b ngw\u0254\u0300\u02bc mb\u00ff\u025b", + "sa\u014b t\u00e0\u014ba tsets\u00e1\u02bc", + "sa\u014b mejwo\u014b\u00f3", + "sa\u014b l\u00f9m" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nnh.js b/src/ngLocale/angular-locale_nnh.js index b8745d193346..631bbdc6e43f 100644 --- a/src/ngLocale/angular-locale_nnh.js +++ b/src/ngLocale/angular-locale_nnh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sa\u014b mejwo\u014b\u00f3", "sa\u014b l\u00f9m" ], + "STANDALONEMONTH": [ + "sa\u014b tsets\u025b\u0300\u025b l\u00f9m", + "sa\u014b k\u00e0g ngw\u00f3\u014b", + "sa\u014b lepy\u00e8 sh\u00fam", + "sa\u014b c\u00ff\u00f3", + "sa\u014b ts\u025b\u0300\u025b c\u00ff\u00f3", + "sa\u014b nj\u00ffol\u00e1\u02bc", + "sa\u014b ty\u025b\u0300b ty\u025b\u0300b mb\u0289\u0300", + "sa\u014b mb\u0289\u0300\u014b", + "sa\u014b ngw\u0254\u0300\u02bc mb\u00ff\u025b", + "sa\u014b t\u00e0\u014ba tsets\u00e1\u02bc", + "sa\u014b mejwo\u014b\u00f3", + "sa\u014b l\u00f9m" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_no-no.js b/src/ngLocale/angular-locale_no-no.js index dc93791c96be..ccc662b0ee04 100644 --- a/src/ngLocale/angular-locale_no-no.js +++ b/src/ngLocale/angular-locale_no-no.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_no.js b/src/ngLocale/angular-locale_no.js index b0b2fec1c676..07585f4b5788 100644 --- a/src/ngLocale/angular-locale_no.js +++ b/src/ngLocale/angular-locale_no.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov.", "des." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mars", + "april", + "mai", + "juni", + "juli", + "august", + "september", + "oktober", + "november", + "desember" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nus-sd.js b/src/ngLocale/angular-locale_nus-sd.js index a46aee485d63..64f90a4bd332 100644 --- a/src/ngLocale/angular-locale_nus-sd.js +++ b/src/ngLocale/angular-locale_nus-sd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kur", "Tid" ], + "STANDALONEMONTH": [ + "Tiop thar p\u025bt", + "P\u025bt", + "Du\u0254\u0331\u0254\u0331\u014b", + "Guak", + "Du\u00e4t", + "Kornyoot", + "Pay yie\u0331tni", + "Tho\u0331o\u0331r", + "T\u025b\u025br", + "Laath", + "Kur", + "Tio\u0331p in di\u0331i\u0331t" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nus.js b/src/ngLocale/angular-locale_nus.js index 8d2014984505..9588182ce884 100644 --- a/src/ngLocale/angular-locale_nus.js +++ b/src/ngLocale/angular-locale_nus.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Kur", "Tid" ], + "STANDALONEMONTH": [ + "Tiop thar p\u025bt", + "P\u025bt", + "Du\u0254\u0331\u0254\u0331\u014b", + "Guak", + "Du\u00e4t", + "Kornyoot", + "Pay yie\u0331tni", + "Tho\u0331o\u0331r", + "T\u025b\u025br", + "Laath", + "Kur", + "Tio\u0331p in di\u0331i\u0331t" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nyn-ug.js b/src/ngLocale/angular-locale_nyn-ug.js index bc15a7dce521..1cde06938cfa 100644 --- a/src/ngLocale/angular-locale_nyn-ug.js +++ b/src/ngLocale/angular-locale_nyn-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KNK", "KNB" ], + "STANDALONEMONTH": [ + "Okwokubanza", + "Okwakabiri", + "Okwakashatu", + "Okwakana", + "Okwakataana", + "Okwamukaaga", + "Okwamushanju", + "Okwamunaana", + "Okwamwenda", + "Okwaikumi", + "Okwaikumi na kumwe", + "Okwaikumi na ibiri" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_nyn.js b/src/ngLocale/angular-locale_nyn.js index ecc65b9ba843..31cf2bcbcca6 100644 --- a/src/ngLocale/angular-locale_nyn.js +++ b/src/ngLocale/angular-locale_nyn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KNK", "KNB" ], + "STANDALONEMONTH": [ + "Okwokubanza", + "Okwakabiri", + "Okwakashatu", + "Okwakana", + "Okwakataana", + "Okwamukaaga", + "Okwamushanju", + "Okwamunaana", + "Okwamwenda", + "Okwaikumi", + "Okwaikumi na kumwe", + "Okwaikumi na ibiri" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_om-et.js b/src/ngLocale/angular-locale_om-et.js index 3857abd03935..b6e63b053277 100644 --- a/src/ngLocale/angular-locale_om-et.js +++ b/src/ngLocale/angular-locale_om-et.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sad", "Mud" ], + "STANDALONEMONTH": [ + "Amajjii", + "Guraandhala", + "Bitooteessa", + "Elba", + "Caamsa", + "Waxabajjii", + "Adooleessa", + "Hagayya", + "Fuulbana", + "Onkololeessa", + "Sadaasa", + "Muddee" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_om-ke.js b/src/ngLocale/angular-locale_om-ke.js index dba7fd1f3393..d23f6a66419e 100644 --- a/src/ngLocale/angular-locale_om-ke.js +++ b/src/ngLocale/angular-locale_om-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sad", "Mud" ], + "STANDALONEMONTH": [ + "Amajjii", + "Guraandhala", + "Bitooteessa", + "Elba", + "Caamsa", + "Waxabajjii", + "Adooleessa", + "Hagayya", + "Fuulbana", + "Onkololeessa", + "Sadaasa", + "Muddee" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_om.js b/src/ngLocale/angular-locale_om.js index c41c27722e51..24fb7e6f0401 100644 --- a/src/ngLocale/angular-locale_om.js +++ b/src/ngLocale/angular-locale_om.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Sad", "Mud" ], + "STANDALONEMONTH": [ + "Amajjii", + "Guraandhala", + "Bitooteessa", + "Elba", + "Caamsa", + "Waxabajjii", + "Adooleessa", + "Hagayya", + "Fuulbana", + "Onkololeessa", + "Sadaasa", + "Muddee" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_or-in.js b/src/ngLocale/angular-locale_or-in.js index 5f1da84c5e9a..b972437f9d51 100644 --- a/src/ngLocale/angular-locale_or-in.js +++ b/src/ngLocale/angular-locale_or-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30" ], + "STANDALONEMONTH": [ + "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40", + "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40", + "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a", + "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32", + "\u0b2e\u0b07", + "\u0b1c\u0b41\u0b28", + "\u0b1c\u0b41\u0b32\u0b3e\u0b07", + "\u0b05\u0b17\u0b37\u0b4d\u0b1f", + "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30", + "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30", + "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", + "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_or.js b/src/ngLocale/angular-locale_or.js index 43c4fd3af647..82edfb9d262e 100644 --- a/src/ngLocale/angular-locale_or.js +++ b/src/ngLocale/angular-locale_or.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30" ], + "STANDALONEMONTH": [ + "\u0b1c\u0b3e\u0b28\u0b41\u0b06\u0b30\u0b40", + "\u0b2b\u0b47\u0b2c\u0b43\u0b06\u0b30\u0b40", + "\u0b2e\u0b3e\u0b30\u0b4d\u0b1a\u0b4d\u0b1a", + "\u0b05\u0b2a\u0b4d\u0b30\u0b47\u0b32", + "\u0b2e\u0b07", + "\u0b1c\u0b41\u0b28", + "\u0b1c\u0b41\u0b32\u0b3e\u0b07", + "\u0b05\u0b17\u0b37\u0b4d\u0b1f", + "\u0b38\u0b47\u0b2a\u0b4d\u0b1f\u0b47\u0b2e\u0b4d\u0b2c\u0b30", + "\u0b05\u0b15\u0b4d\u0b1f\u0b4b\u0b2c\u0b30", + "\u0b28\u0b2d\u0b47\u0b2e\u0b4d\u0b2c\u0b30", + "\u0b21\u0b3f\u0b38\u0b47\u0b2e\u0b4d\u0b2c\u0b30" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_os-ge.js b/src/ngLocale/angular-locale_os-ge.js index 3516f726b96f..17841ea9269b 100644 --- a/src/ngLocale/angular-locale_os-ge.js +++ b/src/ngLocale/angular-locale_os-ge.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442\u044a\u0438", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_os-ru.js b/src/ngLocale/angular-locale_os-ru.js index d740670b057a..4cb8879a74cd 100644 --- a/src/ngLocale/angular-locale_os-ru.js +++ b/src/ngLocale/angular-locale_os-ru.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442\u044a\u0438", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_os.js b/src/ngLocale/angular-locale_os.js index a643a330faf2..5d1c43491db3 100644 --- a/src/ngLocale/angular-locale_os.js +++ b/src/ngLocale/angular-locale_os.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440\u044c", + "\u0424\u0435\u0432\u0440\u0430\u043b\u044c", + "\u041c\u0430\u0440\u0442\u044a\u0438", + "\u0410\u043f\u0440\u0435\u043b\u044c", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d\u044c", + "\u0418\u044e\u043b\u044c", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u041e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u041d\u043e\u044f\u0431\u0440\u044c", + "\u0414\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pa-arab-pk.js b/src/ngLocale/angular-locale_pa-arab-pk.js index 90f605797616..464c6664e50a 100644 --- a/src/ngLocale/angular-locale_pa-arab-pk.js +++ b/src/ngLocale/angular-locale_pa-arab-pk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u0626", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u0626\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pa-arab.js b/src/ngLocale/angular-locale_pa-arab.js index 184a60c70d12..44938a70797a 100644 --- a/src/ngLocale/angular-locale_pa-arab.js +++ b/src/ngLocale/angular-locale_pa-arab.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u0626", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u0626\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pa-guru-in.js b/src/ngLocale/angular-locale_pa-guru-in.js index 3572f992afeb..5bab508201d4 100644 --- a/src/ngLocale/angular-locale_pa-guru-in.js +++ b/src/ngLocale/angular-locale_pa-guru-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0a28\u0a35\u0a70", "\u0a26\u0a38\u0a70" ], + "STANDALONEMONTH": [ + "\u0a1c\u0a28\u0a35\u0a30\u0a40", + "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40", + "\u0a2e\u0a3e\u0a30\u0a1a", + "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32", + "\u0a2e\u0a08", + "\u0a1c\u0a42\u0a28", + "\u0a1c\u0a41\u0a32\u0a3e\u0a08", + "\u0a05\u0a17\u0a38\u0a24", + "\u0a38\u0a24\u0a70\u0a2c\u0a30", + "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30", + "\u0a28\u0a35\u0a70\u0a2c\u0a30", + "\u0a26\u0a38\u0a70\u0a2c\u0a30" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_pa-guru.js b/src/ngLocale/angular-locale_pa-guru.js index 18c8431ceed5..63eb6c2f30a3 100644 --- a/src/ngLocale/angular-locale_pa-guru.js +++ b/src/ngLocale/angular-locale_pa-guru.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0a28\u0a35\u0a70", "\u0a26\u0a38\u0a70" ], + "STANDALONEMONTH": [ + "\u0a1c\u0a28\u0a35\u0a30\u0a40", + "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40", + "\u0a2e\u0a3e\u0a30\u0a1a", + "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32", + "\u0a2e\u0a08", + "\u0a1c\u0a42\u0a28", + "\u0a1c\u0a41\u0a32\u0a3e\u0a08", + "\u0a05\u0a17\u0a38\u0a24", + "\u0a38\u0a24\u0a70\u0a2c\u0a30", + "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30", + "\u0a28\u0a35\u0a70\u0a2c\u0a30", + "\u0a26\u0a38\u0a70\u0a2c\u0a30" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_pa.js b/src/ngLocale/angular-locale_pa.js index 6f6dc99539b3..a939a4581bf5 100644 --- a/src/ngLocale/angular-locale_pa.js +++ b/src/ngLocale/angular-locale_pa.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0a28\u0a35\u0a70", "\u0a26\u0a38\u0a70" ], + "STANDALONEMONTH": [ + "\u0a1c\u0a28\u0a35\u0a30\u0a40", + "\u0a2b\u0a3c\u0a30\u0a35\u0a30\u0a40", + "\u0a2e\u0a3e\u0a30\u0a1a", + "\u0a05\u0a2a\u0a4d\u0a30\u0a48\u0a32", + "\u0a2e\u0a08", + "\u0a1c\u0a42\u0a28", + "\u0a1c\u0a41\u0a32\u0a3e\u0a08", + "\u0a05\u0a17\u0a38\u0a24", + "\u0a38\u0a24\u0a70\u0a2c\u0a30", + "\u0a05\u0a15\u0a24\u0a42\u0a2c\u0a30", + "\u0a28\u0a35\u0a70\u0a2c\u0a30", + "\u0a26\u0a38\u0a70\u0a2c\u0a30" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_pl-pl.js b/src/ngLocale/angular-locale_pl-pl.js index fae20c898c71..ea2e09620c66 100644 --- a/src/ngLocale/angular-locale_pl-pl.js +++ b/src/ngLocale/angular-locale_pl-pl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lis", "gru" ], + "STANDALONEMONTH": [ + "stycze\u0144", + "luty", + "marzec", + "kwiecie\u0144", + "maj", + "czerwiec", + "lipiec", + "sierpie\u0144", + "wrzesie\u0144", + "pa\u017adziernik", + "listopad", + "grudzie\u0144" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pl.js b/src/ngLocale/angular-locale_pl.js index a37a284f72be..6999f918d604 100644 --- a/src/ngLocale/angular-locale_pl.js +++ b/src/ngLocale/angular-locale_pl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "lis", "gru" ], + "STANDALONEMONTH": [ + "stycze\u0144", + "luty", + "marzec", + "kwiecie\u0144", + "maj", + "czerwiec", + "lipiec", + "sierpie\u0144", + "wrzesie\u0144", + "pa\u017adziernik", + "listopad", + "grudzie\u0144" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ps-af.js b/src/ngLocale/angular-locale_ps-af.js index d6d407750223..516d9be4980d 100644 --- a/src/ngLocale/angular-locale_ps-af.js +++ b/src/ngLocale/angular-locale_ps-af.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u064a", + "\u0641\u0628\u0631\u0648\u0631\u064a", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u06cc", + "\u0627\u06ab\u0633\u062a", + "\u0633\u067e\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 3, 4 diff --git a/src/ngLocale/angular-locale_ps.js b/src/ngLocale/angular-locale_ps.js index 4bbe51110495..2ffb84116cd8 100644 --- a/src/ngLocale/angular-locale_ps.js +++ b/src/ngLocale/angular-locale_ps.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u064a", + "\u0641\u0628\u0631\u0648\u0631\u064a", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u06cc", + "\u0627\u06ab\u0633\u062a", + "\u0633\u067e\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 3, 4 diff --git a/src/ngLocale/angular-locale_pt-ao.js b/src/ngLocale/angular-locale_pt-ao.js index dcc91dab62aa..45633778f376 100644 --- a/src/ngLocale/angular-locale_pt-ao.js +++ b/src/ngLocale/angular-locale_pt-ao.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-br.js b/src/ngLocale/angular-locale_pt-br.js index 146aad33647a..6ff4b5e4f5e9 100644 --- a/src/ngLocale/angular-locale_pt-br.js +++ b/src/ngLocale/angular-locale_pt-br.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-cv.js b/src/ngLocale/angular-locale_pt-cv.js index d9beaa1d60b9..7dd09909707d 100644 --- a/src/ngLocale/angular-locale_pt-cv.js +++ b/src/ngLocale/angular-locale_pt-cv.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-gw.js b/src/ngLocale/angular-locale_pt-gw.js index 801f3e72ca9d..248fa397fd78 100644 --- a/src/ngLocale/angular-locale_pt-gw.js +++ b/src/ngLocale/angular-locale_pt-gw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-mo.js b/src/ngLocale/angular-locale_pt-mo.js index fecce7cb9315..625037261cdf 100644 --- a/src/ngLocale/angular-locale_pt-mo.js +++ b/src/ngLocale/angular-locale_pt-mo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-mz.js b/src/ngLocale/angular-locale_pt-mz.js index e7450a218675..9c3a5e052c51 100644 --- a/src/ngLocale/angular-locale_pt-mz.js +++ b/src/ngLocale/angular-locale_pt-mz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-pt.js b/src/ngLocale/angular-locale_pt-pt.js index 6718f9dc26d1..286cd41307c9 100644 --- a/src/ngLocale/angular-locale_pt-pt.js +++ b/src/ngLocale/angular-locale_pt-pt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-st.js b/src/ngLocale/angular-locale_pt-st.js index a6ff9cd7c0b1..b43435bc2068 100644 --- a/src/ngLocale/angular-locale_pt-st.js +++ b/src/ngLocale/angular-locale_pt-st.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt-tl.js b/src/ngLocale/angular-locale_pt-tl.js index bb36d6dc8e37..425a8627ad3b 100644 --- a/src/ngLocale/angular-locale_pt-tl.js +++ b/src/ngLocale/angular-locale_pt-tl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_pt.js b/src/ngLocale/angular-locale_pt.js index 4c80611e51cd..3e651e76b134 100644 --- a/src/ngLocale/angular-locale_pt.js +++ b/src/ngLocale/angular-locale_pt.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "nov", "dez" ], + "STANDALONEMONTH": [ + "janeiro", + "fevereiro", + "mar\u00e7o", + "abril", + "maio", + "junho", + "julho", + "agosto", + "setembro", + "outubro", + "novembro", + "dezembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_qu-bo.js b/src/ngLocale/angular-locale_qu-bo.js index cb05d91a5df5..412bcdc21a6e 100644 --- a/src/ngLocale/angular-locale_qu-bo.js +++ b/src/ngLocale/angular-locale_qu-bo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Aya", "Kap" ], + "STANDALONEMONTH": [ + "Qulla puquy", + "Hatun puquy", + "Pauqar waray", + "Ayriwa", + "Aymuray", + "Inti raymi", + "Anta Sitwa", + "Qhapaq Sitwa", + "Uma raymi", + "Kantaray", + "Ayamarq\u02bca", + "Kapaq Raymi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_qu-ec.js b/src/ngLocale/angular-locale_qu-ec.js index 9978c4a3c619..8fca57d16149 100644 --- a/src/ngLocale/angular-locale_qu-ec.js +++ b/src/ngLocale/angular-locale_qu-ec.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Aya", "Kap" ], + "STANDALONEMONTH": [ + "Qulla puquy", + "Hatun puquy", + "Pauqar waray", + "Ayriwa", + "Aymuray", + "Inti raymi", + "Anta Sitwa", + "Qhapaq Sitwa", + "Uma raymi", + "Kantaray", + "Ayamarq\u02bca", + "Kapaq Raymi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_qu-pe.js b/src/ngLocale/angular-locale_qu-pe.js index 942275b6be79..de81ef142386 100644 --- a/src/ngLocale/angular-locale_qu-pe.js +++ b/src/ngLocale/angular-locale_qu-pe.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Aya", "Kap" ], + "STANDALONEMONTH": [ + "Qulla puquy", + "Hatun puquy", + "Pauqar waray", + "Ayriwa", + "Aymuray", + "Inti raymi", + "Anta Sitwa", + "Qhapaq Sitwa", + "Uma raymi", + "Kantaray", + "Ayamarq\u02bca", + "Kapaq Raymi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_qu.js b/src/ngLocale/angular-locale_qu.js index e2b56e6d5fb3..63f3c4581cc4 100644 --- a/src/ngLocale/angular-locale_qu.js +++ b/src/ngLocale/angular-locale_qu.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Aya", "Kap" ], + "STANDALONEMONTH": [ + "Qulla puquy", + "Hatun puquy", + "Pauqar waray", + "Ayriwa", + "Aymuray", + "Inti raymi", + "Anta Sitwa", + "Qhapaq Sitwa", + "Uma raymi", + "Kantaray", + "Ayamarq\u02bca", + "Kapaq Raymi" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rm-ch.js b/src/ngLocale/angular-locale_rm-ch.js index 091c0827e2fb..d907140a9810 100644 --- a/src/ngLocale/angular-locale_rm-ch.js +++ b/src/ngLocale/angular-locale_rm-ch.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "schaner", + "favrer", + "mars", + "avrigl", + "matg", + "zercladur", + "fanadur", + "avust", + "settember", + "october", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rm.js b/src/ngLocale/angular-locale_rm.js index 7bddcf97216e..811db26d6937 100644 --- a/src/ngLocale/angular-locale_rm.js +++ b/src/ngLocale/angular-locale_rm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "schaner", + "favrer", + "mars", + "avrigl", + "matg", + "zercladur", + "fanadur", + "avust", + "settember", + "october", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rn-bi.js b/src/ngLocale/angular-locale_rn-bi.js index cd61a1d476df..7743b8f77f3e 100644 --- a/src/ngLocale/angular-locale_rn-bi.js +++ b/src/ngLocale/angular-locale_rn-bi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Ugu.", "Uku." ], + "STANDALONEMONTH": [ + "Nzero", + "Ruhuhuma", + "Ntwarante", + "Ndamukiza", + "Rusama", + "Ruheshi", + "Mukakaro", + "Nyandagaro", + "Nyakanga", + "Gitugutu", + "Munyonyo", + "Kigarama" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rn.js b/src/ngLocale/angular-locale_rn.js index 0a2a5e8ec88d..0ceb82d7ff4e 100644 --- a/src/ngLocale/angular-locale_rn.js +++ b/src/ngLocale/angular-locale_rn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Ugu.", "Uku." ], + "STANDALONEMONTH": [ + "Nzero", + "Ruhuhuma", + "Ntwarante", + "Ndamukiza", + "Rusama", + "Ruheshi", + "Mukakaro", + "Nyandagaro", + "Nyakanga", + "Gitugutu", + "Munyonyo", + "Kigarama" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ro-md.js b/src/ngLocale/angular-locale_ro-md.js index b36304708566..7f8544c89c46 100644 --- a/src/ngLocale/angular-locale_ro-md.js +++ b/src/ngLocale/angular-locale_ro-md.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Ianuarie", + "Februarie", + "Martie", + "Aprilie", + "Mai", + "Iunie", + "Iulie", + "August", + "Septembrie", + "Octombrie", + "Noiembrie", + "Decembrie" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ro-ro.js b/src/ngLocale/angular-locale_ro-ro.js index d87922602678..2931e8ebeaae 100644 --- a/src/ngLocale/angular-locale_ro-ro.js +++ b/src/ngLocale/angular-locale_ro-ro.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Ianuarie", + "Februarie", + "Martie", + "Aprilie", + "Mai", + "Iunie", + "Iulie", + "August", + "Septembrie", + "Octombrie", + "Noiembrie", + "Decembrie" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ro.js b/src/ngLocale/angular-locale_ro.js index 3c52dd2a70d1..c30d0d989098 100644 --- a/src/ngLocale/angular-locale_ro.js +++ b/src/ngLocale/angular-locale_ro.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Ianuarie", + "Februarie", + "Martie", + "Aprilie", + "Mai", + "Iunie", + "Iulie", + "August", + "Septembrie", + "Octombrie", + "Noiembrie", + "Decembrie" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rof-tz.js b/src/ngLocale/angular-locale_rof-tz.js index 8458d5ca910a..6ddc5ac6d127 100644 --- a/src/ngLocale/angular-locale_rof-tz.js +++ b/src/ngLocale/angular-locale_rof-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M11", "M12" ], + "STANDALONEMONTH": [ + "Mweri wa kwanza", + "Mweri wa kaili", + "Mweri wa katatu", + "Mweri wa kaana", + "Mweri wa tanu", + "Mweri wa sita", + "Mweri wa saba", + "Mweri wa nane", + "Mweri wa tisa", + "Mweri wa ikumi", + "Mweri wa ikumi na moja", + "Mweri wa ikumi na mbili" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rof.js b/src/ngLocale/angular-locale_rof.js index a233d6cad528..70ff21851ee8 100644 --- a/src/ngLocale/angular-locale_rof.js +++ b/src/ngLocale/angular-locale_rof.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M11", "M12" ], + "STANDALONEMONTH": [ + "Mweri wa kwanza", + "Mweri wa kaili", + "Mweri wa katatu", + "Mweri wa kaana", + "Mweri wa tanu", + "Mweri wa sita", + "Mweri wa saba", + "Mweri wa nane", + "Mweri wa tisa", + "Mweri wa ikumi", + "Mweri wa ikumi na moja", + "Mweri wa ikumi na mbili" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-by.js b/src/ngLocale/angular-locale_ru-by.js index f735266cf0e2..603381668538 100644 --- a/src/ngLocale/angular-locale_ru-by.js +++ b/src/ngLocale/angular-locale_ru-by.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-kg.js b/src/ngLocale/angular-locale_ru-kg.js index b1d9db982035..cae7d7806cbd 100644 --- a/src/ngLocale/angular-locale_ru-kg.js +++ b/src/ngLocale/angular-locale_ru-kg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-kz.js b/src/ngLocale/angular-locale_ru-kz.js index a1c93672969d..4d600a77e670 100644 --- a/src/ngLocale/angular-locale_ru-kz.js +++ b/src/ngLocale/angular-locale_ru-kz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-md.js b/src/ngLocale/angular-locale_ru-md.js index de3f0498624d..6eeaea422dbf 100644 --- a/src/ngLocale/angular-locale_ru-md.js +++ b/src/ngLocale/angular-locale_ru-md.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-ru.js b/src/ngLocale/angular-locale_ru-ru.js index e9337210de25..b0ab8dce679d 100644 --- a/src/ngLocale/angular-locale_ru-ru.js +++ b/src/ngLocale/angular-locale_ru-ru.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru-ua.js b/src/ngLocale/angular-locale_ru-ua.js index f6dfc507eac3..9e54f2c8b3cf 100644 --- a/src/ngLocale/angular-locale_ru-ua.js +++ b/src/ngLocale/angular-locale_ru-ua.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ru.js b/src/ngLocale/angular-locale_ru.js index 553360f025fc..bf09f0f9fc5a 100644 --- a/src/ngLocale/angular-locale_ru.js +++ b/src/ngLocale/angular-locale_ru.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u044f\u0431.", "\u0434\u0435\u043a." ], + "STANDALONEMONTH": [ + "\u044f\u043d\u0432\u0430\u0440\u044c", + "\u0444\u0435\u0432\u0440\u0430\u043b\u044c", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0435\u043b\u044c", + "\u043c\u0430\u0439", + "\u0438\u044e\u043d\u044c", + "\u0438\u044e\u043b\u044c", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043d\u0442\u044f\u0431\u0440\u044c", + "\u043e\u043a\u0442\u044f\u0431\u0440\u044c", + "\u043d\u043e\u044f\u0431\u0440\u044c", + "\u0434\u0435\u043a\u0430\u0431\u0440\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rw-rw.js b/src/ngLocale/angular-locale_rw-rw.js index 7e679df6b9c0..48d9613e5d97 100644 --- a/src/ngLocale/angular-locale_rw-rw.js +++ b/src/ngLocale/angular-locale_rw-rw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ugu.", "uku." ], + "STANDALONEMONTH": [ + "Mutarama", + "Gashyantare", + "Werurwe", + "Mata", + "Gicuransi", + "Kamena", + "Nyakanga", + "Kanama", + "Nzeli", + "Ukwakira", + "Ugushyingo", + "Ukuboza" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rw.js b/src/ngLocale/angular-locale_rw.js index 2e5db17a54f1..6dab48fd3a27 100644 --- a/src/ngLocale/angular-locale_rw.js +++ b/src/ngLocale/angular-locale_rw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "ugu.", "uku." ], + "STANDALONEMONTH": [ + "Mutarama", + "Gashyantare", + "Werurwe", + "Mata", + "Gicuransi", + "Kamena", + "Nyakanga", + "Kanama", + "Nzeli", + "Ukwakira", + "Ugushyingo", + "Ukuboza" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rwk-tz.js b/src/ngLocale/angular-locale_rwk-tz.js index 3dcb29aea7dc..85e799016382 100644 --- a/src/ngLocale/angular-locale_rwk-tz.js +++ b/src/ngLocale/angular-locale_rwk-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_rwk.js b/src/ngLocale/angular-locale_rwk.js index 726ed59ad231..9ad59b88c20b 100644 --- a/src/ngLocale/angular-locale_rwk.js +++ b/src/ngLocale/angular-locale_rwk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sah-ru.js b/src/ngLocale/angular-locale_sah-ru.js index 85b3776f2bd5..5d4feaf47e26 100644 --- a/src/ngLocale/angular-locale_sah-ru.js +++ b/src/ngLocale/angular-locale_sah-ru.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0421\u044d\u0442", "\u0410\u0445\u0441" ], + "STANDALONEMONTH": [ + "\u0422\u043e\u0445\u0441\u0443\u043d\u043d\u044c\u0443", + "\u041e\u043b\u0443\u043d\u043d\u044c\u0443", + "\u041a\u0443\u043b\u0443\u043d \u0442\u0443\u0442\u0430\u0440", + "\u041c\u0443\u0443\u0441 \u0443\u0441\u0442\u0430\u0440", + "\u042b\u0430\u043c \u044b\u0439\u044b\u043d", + "\u0411\u044d\u0441 \u044b\u0439\u044b\u043d", + "\u041e\u0442 \u044b\u0439\u044b\u043d", + "\u0410\u0442\u044b\u0440\u0434\u044c\u044b\u0445 \u044b\u0439\u044b\u043d", + "\u0411\u0430\u043b\u0430\u0495\u0430\u043d \u044b\u0439\u044b\u043d", + "\u0410\u043b\u0442\u044b\u043d\u043d\u044c\u044b", + "\u0421\u044d\u0442\u0438\u043d\u043d\u044c\u0438", + "\u0410\u0445\u0441\u044b\u043d\u043d\u044c\u044b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sah.js b/src/ngLocale/angular-locale_sah.js index 23bd88ee59e7..038898d14500 100644 --- a/src/ngLocale/angular-locale_sah.js +++ b/src/ngLocale/angular-locale_sah.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0421\u044d\u0442", "\u0410\u0445\u0441" ], + "STANDALONEMONTH": [ + "\u0422\u043e\u0445\u0441\u0443\u043d\u043d\u044c\u0443", + "\u041e\u043b\u0443\u043d\u043d\u044c\u0443", + "\u041a\u0443\u043b\u0443\u043d \u0442\u0443\u0442\u0430\u0440", + "\u041c\u0443\u0443\u0441 \u0443\u0441\u0442\u0430\u0440", + "\u042b\u0430\u043c \u044b\u0439\u044b\u043d", + "\u0411\u044d\u0441 \u044b\u0439\u044b\u043d", + "\u041e\u0442 \u044b\u0439\u044b\u043d", + "\u0410\u0442\u044b\u0440\u0434\u044c\u044b\u0445 \u044b\u0439\u044b\u043d", + "\u0411\u0430\u043b\u0430\u0495\u0430\u043d \u044b\u0439\u044b\u043d", + "\u0410\u043b\u0442\u044b\u043d\u043d\u044c\u044b", + "\u0421\u044d\u0442\u0438\u043d\u043d\u044c\u0438", + "\u0410\u0445\u0441\u044b\u043d\u043d\u044c\u044b" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_saq-ke.js b/src/ngLocale/angular-locale_saq-ke.js index a7f8998041e1..dd7e3d25719a 100644 --- a/src/ngLocale/angular-locale_saq-ke.js +++ b/src/ngLocale/angular-locale_saq-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Tob", "Tow" ], + "STANDALONEMONTH": [ + "Lapa le obo", + "Lapa le waare", + "Lapa le okuni", + "Lapa le ong\u2019wan", + "Lapa le imet", + "Lapa le ile", + "Lapa le sapa", + "Lapa le isiet", + "Lapa le saal", + "Lapa le tomon", + "Lapa le tomon obo", + "Lapa le tomon waare" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_saq.js b/src/ngLocale/angular-locale_saq.js index b515603a9a59..c2018d190d77 100644 --- a/src/ngLocale/angular-locale_saq.js +++ b/src/ngLocale/angular-locale_saq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Tob", "Tow" ], + "STANDALONEMONTH": [ + "Lapa le obo", + "Lapa le waare", + "Lapa le okuni", + "Lapa le ong\u2019wan", + "Lapa le imet", + "Lapa le ile", + "Lapa le sapa", + "Lapa le isiet", + "Lapa le saal", + "Lapa le tomon", + "Lapa le tomon obo", + "Lapa le tomon waare" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sbp-tz.js b/src/ngLocale/angular-locale_sbp-tz.js index 1e5a0e825c40..bb66514b03f7 100644 --- a/src/ngLocale/angular-locale_sbp-tz.js +++ b/src/ngLocale/angular-locale_sbp-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Mus", "Muh" ], + "STANDALONEMONTH": [ + "Mupalangulwa", + "Mwitope", + "Mushende", + "Munyi", + "Mushende Magali", + "Mujimbi", + "Mushipepo", + "Mupuguto", + "Munyense", + "Mokhu", + "Musongandembwe", + "Muhaano" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sbp.js b/src/ngLocale/angular-locale_sbp.js index da6106a6a81a..a19aefa266b4 100644 --- a/src/ngLocale/angular-locale_sbp.js +++ b/src/ngLocale/angular-locale_sbp.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Mus", "Muh" ], + "STANDALONEMONTH": [ + "Mupalangulwa", + "Mwitope", + "Mushende", + "Munyi", + "Mushende Magali", + "Mujimbi", + "Mushipepo", + "Mupuguto", + "Munyense", + "Mokhu", + "Musongandembwe", + "Muhaano" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_se-fi.js b/src/ngLocale/angular-locale_se-fi.js index 62de6b1ada6b..ae4868f1c47e 100644 --- a/src/ngLocale/angular-locale_se-fi.js +++ b/src/ngLocale/angular-locale_se-fi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sk\u00e1bma", "juovla" ], + "STANDALONEMONTH": [ + "o\u0111\u0111ajagem\u00e1nnu", + "guovvam\u00e1nnu", + "njuk\u010dam\u00e1nnu", + "cuo\u014bom\u00e1nnu", + "miessem\u00e1nnu", + "geassem\u00e1nnu", + "suoidnem\u00e1nnu", + "borgem\u00e1nnu", + "\u010dak\u010dam\u00e1nnu", + "golggotm\u00e1nnu", + "sk\u00e1bmam\u00e1nnu", + "juovlam\u00e1nnu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_se-no.js b/src/ngLocale/angular-locale_se-no.js index b2e24ae6afbb..f1be3a564368 100644 --- a/src/ngLocale/angular-locale_se-no.js +++ b/src/ngLocale/angular-locale_se-no.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sk\u00e1b", "juov" ], + "STANDALONEMONTH": [ + "o\u0111\u0111ajagem\u00e1nnu", + "guovvam\u00e1nnu", + "njuk\u010dam\u00e1nnu", + "cuo\u014bom\u00e1nnu", + "miessem\u00e1nnu", + "geassem\u00e1nnu", + "suoidnem\u00e1nnu", + "borgem\u00e1nnu", + "\u010dak\u010dam\u00e1nnu", + "golggotm\u00e1nnu", + "sk\u00e1bmam\u00e1nnu", + "juovlam\u00e1nnu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_se-se.js b/src/ngLocale/angular-locale_se-se.js index 7915d431c94a..0093aef074a5 100644 --- a/src/ngLocale/angular-locale_se-se.js +++ b/src/ngLocale/angular-locale_se-se.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sk\u00e1b", "juov" ], + "STANDALONEMONTH": [ + "o\u0111\u0111ajagem\u00e1nnu", + "guovvam\u00e1nnu", + "njuk\u010dam\u00e1nnu", + "cuo\u014bom\u00e1nnu", + "miessem\u00e1nnu", + "geassem\u00e1nnu", + "suoidnem\u00e1nnu", + "borgem\u00e1nnu", + "\u010dak\u010dam\u00e1nnu", + "golggotm\u00e1nnu", + "sk\u00e1bmam\u00e1nnu", + "juovlam\u00e1nnu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_se.js b/src/ngLocale/angular-locale_se.js index 0a6d7d665482..85da150cee96 100644 --- a/src/ngLocale/angular-locale_se.js +++ b/src/ngLocale/angular-locale_se.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "sk\u00e1b", "juov" ], + "STANDALONEMONTH": [ + "o\u0111\u0111ajagem\u00e1nnu", + "guovvam\u00e1nnu", + "njuk\u010dam\u00e1nnu", + "cuo\u014bom\u00e1nnu", + "miessem\u00e1nnu", + "geassem\u00e1nnu", + "suoidnem\u00e1nnu", + "borgem\u00e1nnu", + "\u010dak\u010dam\u00e1nnu", + "golggotm\u00e1nnu", + "sk\u00e1bmam\u00e1nnu", + "juovlam\u00e1nnu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_seh-mz.js b/src/ngLocale/angular-locale_seh-mz.js index f723c867881d..c343c1a31b93 100644 --- a/src/ngLocale/angular-locale_seh-mz.js +++ b/src/ngLocale/angular-locale_seh-mz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "Janeiro", + "Fevreiro", + "Marco", + "Abril", + "Maio", + "Junho", + "Julho", + "Augusto", + "Setembro", + "Otubro", + "Novembro", + "Decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_seh.js b/src/ngLocale/angular-locale_seh.js index d9c55eecfdd9..9f634bab9596 100644 --- a/src/ngLocale/angular-locale_seh.js +++ b/src/ngLocale/angular-locale_seh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Dec" ], + "STANDALONEMONTH": [ + "Janeiro", + "Fevreiro", + "Marco", + "Abril", + "Maio", + "Junho", + "Julho", + "Augusto", + "Setembro", + "Otubro", + "Novembro", + "Decembro" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ses-ml.js b/src/ngLocale/angular-locale_ses-ml.js index 596dfe43b05e..ec52ebe5d043 100644 --- a/src/ngLocale/angular-locale_ses-ml.js +++ b/src/ngLocale/angular-locale_ses-ml.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ses.js b/src/ngLocale/angular-locale_ses.js index e150d779fe21..abb629a5ed4d 100644 --- a/src/ngLocale/angular-locale_ses.js +++ b/src/ngLocale/angular-locale_ses.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sg-cf.js b/src/ngLocale/angular-locale_sg-cf.js index fb6d2f76c8cf..effce3dd44c7 100644 --- a/src/ngLocale/angular-locale_sg-cf.js +++ b/src/ngLocale/angular-locale_sg-cf.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nab", "Kak" ], + "STANDALONEMONTH": [ + "Nyenye", + "Fulund\u00efgi", + "Mb\u00e4ng\u00fc", + "Ngub\u00f9e", + "B\u00eal\u00e4w\u00fc", + "F\u00f6ndo", + "Lengua", + "K\u00fck\u00fcr\u00fc", + "Mvuka", + "Ngberere", + "Nab\u00e4nd\u00fcru", + "Kakauka" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sg.js b/src/ngLocale/angular-locale_sg.js index 3b671dae11ef..8f714dbed381 100644 --- a/src/ngLocale/angular-locale_sg.js +++ b/src/ngLocale/angular-locale_sg.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nab", "Kak" ], + "STANDALONEMONTH": [ + "Nyenye", + "Fulund\u00efgi", + "Mb\u00e4ng\u00fc", + "Ngub\u00f9e", + "B\u00eal\u00e4w\u00fc", + "F\u00f6ndo", + "Lengua", + "K\u00fck\u00fcr\u00fc", + "Mvuka", + "Ngberere", + "Nab\u00e4nd\u00fcru", + "Kakauka" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_shi-latn-ma.js b/src/ngLocale/angular-locale_shi-latn-ma.js index 02156c6921b6..7cbe1df4649e 100644 --- a/src/ngLocale/angular-locale_shi-latn-ma.js +++ b/src/ngLocale/angular-locale_shi-latn-ma.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nuw", "duj" ], + "STANDALONEMONTH": [ + "innayr", + "b\u1e5bay\u1e5b", + "ma\u1e5b\u1e63", + "ibrir", + "mayyu", + "yunyu", + "yulyuz", + "\u0263uct", + "cutanbir", + "ktubr", + "nuwanbir", + "dujanbir" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_shi-latn.js b/src/ngLocale/angular-locale_shi-latn.js index 6b8b6f7042ce..887ca9500a35 100644 --- a/src/ngLocale/angular-locale_shi-latn.js +++ b/src/ngLocale/angular-locale_shi-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nuw", "duj" ], + "STANDALONEMONTH": [ + "innayr", + "b\u1e5bay\u1e5b", + "ma\u1e5b\u1e63", + "ibrir", + "mayyu", + "yunyu", + "yulyuz", + "\u0263uct", + "cutanbir", + "ktubr", + "nuwanbir", + "dujanbir" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_shi-tfng-ma.js b/src/ngLocale/angular-locale_shi-tfng-ma.js index 998d17a2f315..77497d9f7034 100644 --- a/src/ngLocale/angular-locale_shi-tfng-ma.js +++ b/src/ngLocale/angular-locale_shi-tfng-ma.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u2d4f\u2d53\u2d61", "\u2d37\u2d53\u2d4a" ], + "STANDALONEMONTH": [ + "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54", + "\u2d31\u2d55\u2d30\u2d62\u2d55", + "\u2d4e\u2d30\u2d55\u2d5a", + "\u2d49\u2d31\u2d54\u2d49\u2d54", + "\u2d4e\u2d30\u2d62\u2d62\u2d53", + "\u2d62\u2d53\u2d4f\u2d62\u2d53", + "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63", + "\u2d56\u2d53\u2d5b\u2d5c", + "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d3d\u2d5c\u2d53\u2d31\u2d54", + "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_shi-tfng.js b/src/ngLocale/angular-locale_shi-tfng.js index a2d825b3243b..e797c6728c25 100644 --- a/src/ngLocale/angular-locale_shi-tfng.js +++ b/src/ngLocale/angular-locale_shi-tfng.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u2d4f\u2d53\u2d61", "\u2d37\u2d53\u2d4a" ], + "STANDALONEMONTH": [ + "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54", + "\u2d31\u2d55\u2d30\u2d62\u2d55", + "\u2d4e\u2d30\u2d55\u2d5a", + "\u2d49\u2d31\u2d54\u2d49\u2d54", + "\u2d4e\u2d30\u2d62\u2d62\u2d53", + "\u2d62\u2d53\u2d4f\u2d62\u2d53", + "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63", + "\u2d56\u2d53\u2d5b\u2d5c", + "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d3d\u2d5c\u2d53\u2d31\u2d54", + "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_shi.js b/src/ngLocale/angular-locale_shi.js index 5f2fe453d200..f3600ad527cb 100644 --- a/src/ngLocale/angular-locale_shi.js +++ b/src/ngLocale/angular-locale_shi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u2d4f\u2d53\u2d61", "\u2d37\u2d53\u2d4a" ], + "STANDALONEMONTH": [ + "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54", + "\u2d31\u2d55\u2d30\u2d62\u2d55", + "\u2d4e\u2d30\u2d55\u2d5a", + "\u2d49\u2d31\u2d54\u2d49\u2d54", + "\u2d4e\u2d30\u2d62\u2d62\u2d53", + "\u2d62\u2d53\u2d4f\u2d62\u2d53", + "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63", + "\u2d56\u2d53\u2d5b\u2d5c", + "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d3d\u2d5c\u2d53\u2d31\u2d54", + "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_si-lk.js b/src/ngLocale/angular-locale_si-lk.js index c216c7530654..76e47499c8b1 100644 --- a/src/ngLocale/angular-locale_si-lk.js +++ b/src/ngLocale/angular-locale_si-lk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0" ], + "STANDALONEMONTH": [ + "\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2", + "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2", + "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", + "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", + "\u0db8\u0dd0\u0dba\u0dd2", + "\u0da2\u0dd6\u0db1\u0dd2", + "\u0da2\u0dd6\u0dbd\u0dd2", + "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4", + "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", + "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca", + "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", + "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_si.js b/src/ngLocale/angular-locale_si.js index bfcdd628f21e..e2e342c13c86 100644 --- a/src/ngLocale/angular-locale_si.js +++ b/src/ngLocale/angular-locale_si.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0db1\u0ddc\u0dc0\u0dd0", "\u0daf\u0dd9\u0dc3\u0dd0" ], + "STANDALONEMONTH": [ + "\u0da2\u0db1\u0dc0\u0dcf\u0dbb\u0dd2", + "\u0db4\u0dd9\u0db6\u0dbb\u0dc0\u0dcf\u0dbb\u0dd2", + "\u0db8\u0dcf\u0dbb\u0dca\u0dad\u0dd4", + "\u0d85\u0db4\u0dca\u200d\u0dbb\u0dda\u0dbd\u0dca", + "\u0db8\u0dd0\u0dba\u0dd2", + "\u0da2\u0dd6\u0db1\u0dd2", + "\u0da2\u0dd6\u0dbd\u0dd2", + "\u0d85\u0d9c\u0ddd\u0dc3\u0dca\u0dad\u0dd4", + "\u0dc3\u0dd0\u0db4\u0dca\u0dad\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", + "\u0d94\u0d9a\u0dca\u0dad\u0ddd\u0db6\u0dbb\u0dca", + "\u0db1\u0ddc\u0dc0\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca", + "\u0daf\u0dd9\u0dc3\u0dd0\u0db8\u0dca\u0db6\u0dbb\u0dca" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sk-sk.js b/src/ngLocale/angular-locale_sk-sk.js index 01f0f0cb42ef..07f25c959ff4 100644 --- a/src/ngLocale/angular-locale_sk-sk.js +++ b/src/ngLocale/angular-locale_sk-sk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "janu\u00e1r", + "febru\u00e1r", + "marec", + "apr\u00edl", + "m\u00e1j", + "j\u00fan", + "j\u00fal", + "august", + "september", + "okt\u00f3ber", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sk.js b/src/ngLocale/angular-locale_sk.js index 7618fe3835dd..bd6800287cea 100644 --- a/src/ngLocale/angular-locale_sk.js +++ b/src/ngLocale/angular-locale_sk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "janu\u00e1r", + "febru\u00e1r", + "marec", + "apr\u00edl", + "m\u00e1j", + "j\u00fan", + "j\u00fal", + "august", + "september", + "okt\u00f3ber", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sl-si.js b/src/ngLocale/angular-locale_sl-si.js index f480b7895180..5b90ec4656d6 100644 --- a/src/ngLocale/angular-locale_sl-si.js +++ b/src/ngLocale/angular-locale_sl-si.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "marec", + "april", + "maj", + "junij", + "julij", + "avgust", + "september", + "oktober", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sl.js b/src/ngLocale/angular-locale_sl.js index 24d4a779f3d5..068ceade66ec 100644 --- a/src/ngLocale/angular-locale_sl.js +++ b/src/ngLocale/angular-locale_sl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "januar", + "februar", + "marec", + "april", + "maj", + "junij", + "julij", + "avgust", + "september", + "oktober", + "november", + "december" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_smn-fi.js b/src/ngLocale/angular-locale_smn-fi.js index 027b0a2c88db..1e9920b88e03 100644 --- a/src/ngLocale/angular-locale_smn-fi.js +++ b/src/ngLocale/angular-locale_smn-fi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M11", "M12" ], + "STANDALONEMONTH": [ + "u\u0111\u0111\u00e2ivem\u00e1\u00e1nu", + "kuov\u00e2m\u00e1\u00e1nu", + "njuh\u010d\u00e2m\u00e1\u00e1nu", + "cu\u00e1\u014buim\u00e1\u00e1nu", + "vyesim\u00e1\u00e1nu", + "kesim\u00e1\u00e1nu", + "syeinim\u00e1\u00e1nu", + "porgem\u00e1\u00e1nu", + "\u010doh\u010d\u00e2m\u00e1\u00e1nu", + "roovv\u00e2dm\u00e1\u00e1nu", + "skamm\u00e2m\u00e1\u00e1nu", + "juovl\u00e2m\u00e1\u00e1nu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_smn.js b/src/ngLocale/angular-locale_smn.js index 68c71cfaf367..0576fc37745c 100644 --- a/src/ngLocale/angular-locale_smn.js +++ b/src/ngLocale/angular-locale_smn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "M11", "M12" ], + "STANDALONEMONTH": [ + "u\u0111\u0111\u00e2ivem\u00e1\u00e1nu", + "kuov\u00e2m\u00e1\u00e1nu", + "njuh\u010d\u00e2m\u00e1\u00e1nu", + "cu\u00e1\u014buim\u00e1\u00e1nu", + "vyesim\u00e1\u00e1nu", + "kesim\u00e1\u00e1nu", + "syeinim\u00e1\u00e1nu", + "porgem\u00e1\u00e1nu", + "\u010doh\u010d\u00e2m\u00e1\u00e1nu", + "roovv\u00e2dm\u00e1\u00e1nu", + "skamm\u00e2m\u00e1\u00e1nu", + "juovl\u00e2m\u00e1\u00e1nu" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sn-zw.js b/src/ngLocale/angular-locale_sn-zw.js index 1d8cd0ffb1af..fcccf07a11b6 100644 --- a/src/ngLocale/angular-locale_sn-zw.js +++ b/src/ngLocale/angular-locale_sn-zw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Mb", "Zvi" ], + "STANDALONEMONTH": [ + "Ndira", + "Kukadzi", + "Kurume", + "Kubvumbi", + "Chivabvu", + "Chikumi", + "Chikunguru", + "Nyamavhuvhu", + "Gunyana", + "Gumiguru", + "Mbudzi", + "Zvita" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sn.js b/src/ngLocale/angular-locale_sn.js index 7b16b4dc258e..85ddc5870683 100644 --- a/src/ngLocale/angular-locale_sn.js +++ b/src/ngLocale/angular-locale_sn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Mb", "Zvi" ], + "STANDALONEMONTH": [ + "Ndira", + "Kukadzi", + "Kurume", + "Kubvumbi", + "Chivabvu", + "Chikumi", + "Chikunguru", + "Nyamavhuvhu", + "Gunyana", + "Gumiguru", + "Mbudzi", + "Zvita" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_so-dj.js b/src/ngLocale/angular-locale_so-dj.js index d8307cbda7e7..ba730757e696 100644 --- a/src/ngLocale/angular-locale_so-dj.js +++ b/src/ngLocale/angular-locale_so-dj.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KIT", "LIT" ], + "STANDALONEMONTH": [ + "Bisha Koobaad", + "Bisha Labaad", + "Bisha Saddexaad", + "Bisha Afraad", + "Bisha Shanaad", + "Bisha Lixaad", + "Bisha Todobaad", + "Bisha Sideedaad", + "Bisha Sagaalaad", + "Bisha Tobnaad", + "Bisha Kow iyo Tobnaad", + "Bisha Laba iyo Tobnaad" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_so-et.js b/src/ngLocale/angular-locale_so-et.js index ef34ea2c8e17..c235f85dbc86 100644 --- a/src/ngLocale/angular-locale_so-et.js +++ b/src/ngLocale/angular-locale_so-et.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KIT", "LIT" ], + "STANDALONEMONTH": [ + "Bisha Koobaad", + "Bisha Labaad", + "Bisha Saddexaad", + "Bisha Afraad", + "Bisha Shanaad", + "Bisha Lixaad", + "Bisha Todobaad", + "Bisha Sideedaad", + "Bisha Sagaalaad", + "Bisha Tobnaad", + "Bisha Kow iyo Tobnaad", + "Bisha Laba iyo Tobnaad" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_so-ke.js b/src/ngLocale/angular-locale_so-ke.js index 67fc74e0162e..d3d8529fae70 100644 --- a/src/ngLocale/angular-locale_so-ke.js +++ b/src/ngLocale/angular-locale_so-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KIT", "LIT" ], + "STANDALONEMONTH": [ + "Bisha Koobaad", + "Bisha Labaad", + "Bisha Saddexaad", + "Bisha Afraad", + "Bisha Shanaad", + "Bisha Lixaad", + "Bisha Todobaad", + "Bisha Sideedaad", + "Bisha Sagaalaad", + "Bisha Tobnaad", + "Bisha Kow iyo Tobnaad", + "Bisha Laba iyo Tobnaad" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_so-so.js b/src/ngLocale/angular-locale_so-so.js index c91a42358446..8fb95547dbeb 100644 --- a/src/ngLocale/angular-locale_so-so.js +++ b/src/ngLocale/angular-locale_so-so.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KIT", "LIT" ], + "STANDALONEMONTH": [ + "Bisha Koobaad", + "Bisha Labaad", + "Bisha Saddexaad", + "Bisha Afraad", + "Bisha Shanaad", + "Bisha Lixaad", + "Bisha Todobaad", + "Bisha Sideedaad", + "Bisha Sagaalaad", + "Bisha Tobnaad", + "Bisha Kow iyo Tobnaad", + "Bisha Laba iyo Tobnaad" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_so.js b/src/ngLocale/angular-locale_so.js index 743a24ba98bd..b5bef99e2fea 100644 --- a/src/ngLocale/angular-locale_so.js +++ b/src/ngLocale/angular-locale_so.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "KIT", "LIT" ], + "STANDALONEMONTH": [ + "Bisha Koobaad", + "Bisha Labaad", + "Bisha Saddexaad", + "Bisha Afraad", + "Bisha Shanaad", + "Bisha Lixaad", + "Bisha Todobaad", + "Bisha Sideedaad", + "Bisha Sagaalaad", + "Bisha Tobnaad", + "Bisha Kow iyo Tobnaad", + "Bisha Laba iyo Tobnaad" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sq-al.js b/src/ngLocale/angular-locale_sq-al.js index 6dac5e79ef1e..2a0c58ba5548 100644 --- a/src/ngLocale/angular-locale_sq-al.js +++ b/src/ngLocale/angular-locale_sq-al.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "N\u00ebn", "Dhj" ], + "STANDALONEMONTH": [ + "Janar", + "Shkurt", + "Mars", + "Prill", + "Maj", + "Qershor", + "Korrik", + "Gusht", + "Shtator", + "Tetor", + "N\u00ebntor", + "Dhjetor" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sq-mk.js b/src/ngLocale/angular-locale_sq-mk.js index e7f5c31e1bea..c4e4bdeca297 100644 --- a/src/ngLocale/angular-locale_sq-mk.js +++ b/src/ngLocale/angular-locale_sq-mk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "N\u00ebn", "Dhj" ], + "STANDALONEMONTH": [ + "Janar", + "Shkurt", + "Mars", + "Prill", + "Maj", + "Qershor", + "Korrik", + "Gusht", + "Shtator", + "Tetor", + "N\u00ebntor", + "Dhjetor" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sq-xk.js b/src/ngLocale/angular-locale_sq-xk.js index ccdf61f562b6..c61fc5f3548c 100644 --- a/src/ngLocale/angular-locale_sq-xk.js +++ b/src/ngLocale/angular-locale_sq-xk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "N\u00ebn", "Dhj" ], + "STANDALONEMONTH": [ + "Janar", + "Shkurt", + "Mars", + "Prill", + "Maj", + "Qershor", + "Korrik", + "Gusht", + "Shtator", + "Tetor", + "N\u00ebntor", + "Dhjetor" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sq.js b/src/ngLocale/angular-locale_sq.js index bc614eedb67f..ce420dbea6ac 100644 --- a/src/ngLocale/angular-locale_sq.js +++ b/src/ngLocale/angular-locale_sq.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "N\u00ebn", "Dhj" ], + "STANDALONEMONTH": [ + "Janar", + "Shkurt", + "Mars", + "Prill", + "Maj", + "Qershor", + "Korrik", + "Gusht", + "Shtator", + "Tetor", + "N\u00ebntor", + "Dhjetor" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-cyrl-ba.js b/src/ngLocale/angular-locale_sr-cyrl-ba.js index e3843b15953e..549bfe41424c 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-ba.js +++ b/src/ngLocale/angular-locale_sr-cyrl-ba.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-cyrl-me.js b/src/ngLocale/angular-locale_sr-cyrl-me.js index 3bf9c2cc07b6..721b6527f1d8 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-me.js +++ b/src/ngLocale/angular-locale_sr-cyrl-me.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-cyrl-rs.js b/src/ngLocale/angular-locale_sr-cyrl-rs.js index 0f883f0bb7c7..af70f7817abc 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-rs.js +++ b/src/ngLocale/angular-locale_sr-cyrl-rs.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-cyrl-xk.js b/src/ngLocale/angular-locale_sr-cyrl-xk.js index cf7c3e2fd49b..3527f42f68c3 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-xk.js +++ b/src/ngLocale/angular-locale_sr-cyrl-xk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-cyrl.js b/src/ngLocale/angular-locale_sr-cyrl.js index a917cf7fd093..e876eff2fd98 100644 --- a/src/ngLocale/angular-locale_sr-cyrl.js +++ b/src/ngLocale/angular-locale_sr-cyrl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-latn-ba.js b/src/ngLocale/angular-locale_sr-latn-ba.js index 54d8cd0e6b5c..0de3c625c2ae 100644 --- a/src/ngLocale/angular-locale_sr-latn-ba.js +++ b/src/ngLocale/angular-locale_sr-latn-ba.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "jun", + "jul", + "avgust", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-latn-me.js b/src/ngLocale/angular-locale_sr-latn-me.js index cc0607a17aef..dea5a7d64e43 100644 --- a/src/ngLocale/angular-locale_sr-latn-me.js +++ b/src/ngLocale/angular-locale_sr-latn-me.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "jun", + "jul", + "avgust", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-latn-rs.js b/src/ngLocale/angular-locale_sr-latn-rs.js index 517e8eab6976..5fb45f9d3f2e 100644 --- a/src/ngLocale/angular-locale_sr-latn-rs.js +++ b/src/ngLocale/angular-locale_sr-latn-rs.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "jun", + "jul", + "avgust", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-latn-xk.js b/src/ngLocale/angular-locale_sr-latn-xk.js index 1cb50a737a5b..1305e7d6769c 100644 --- a/src/ngLocale/angular-locale_sr-latn-xk.js +++ b/src/ngLocale/angular-locale_sr-latn-xk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "jun", + "jul", + "avgust", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr-latn.js b/src/ngLocale/angular-locale_sr-latn.js index 040041da2b3e..cb9f44c57552 100644 --- a/src/ngLocale/angular-locale_sr-latn.js +++ b/src/ngLocale/angular-locale_sr-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov", "dec" ], + "STANDALONEMONTH": [ + "januar", + "februar", + "mart", + "april", + "maj", + "jun", + "jul", + "avgust", + "septembar", + "oktobar", + "novembar", + "decembar" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sr.js b/src/ngLocale/angular-locale_sr.js index 15f2f1de24bc..8d929bb1cdd5 100644 --- a/src/ngLocale/angular-locale_sr.js +++ b/src/ngLocale/angular-locale_sr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043d\u043e\u0432", "\u0434\u0435\u0446" ], + "STANDALONEMONTH": [ + "\u0458\u0430\u043d\u0443\u0430\u0440", + "\u0444\u0435\u0431\u0440\u0443\u0430\u0440", + "\u043c\u0430\u0440\u0442", + "\u0430\u043f\u0440\u0438\u043b", + "\u043c\u0430\u0458", + "\u0458\u0443\u043d", + "\u0458\u0443\u043b", + "\u0430\u0432\u0433\u0443\u0441\u0442", + "\u0441\u0435\u043f\u0442\u0435\u043c\u0431\u0430\u0440", + "\u043e\u043a\u0442\u043e\u0431\u0430\u0440", + "\u043d\u043e\u0432\u0435\u043c\u0431\u0430\u0440", + "\u0434\u0435\u0446\u0435\u043c\u0431\u0430\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sv-ax.js b/src/ngLocale/angular-locale_sv-ax.js index 3c2e1f0d945d..10513ccef63b 100644 --- a/src/ngLocale/angular-locale_sv-ax.js +++ b/src/ngLocale/angular-locale_sv-ax.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mars", + "April", + "Maj", + "Juni", + "Juli", + "Augusti", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sv-fi.js b/src/ngLocale/angular-locale_sv-fi.js index 2d62ce66c8a3..0154b2625366 100644 --- a/src/ngLocale/angular-locale_sv-fi.js +++ b/src/ngLocale/angular-locale_sv-fi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mars", + "April", + "Maj", + "Juni", + "Juli", + "Augusti", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sv-se.js b/src/ngLocale/angular-locale_sv-se.js index 124285db403c..db8b672ec2cd 100644 --- a/src/ngLocale/angular-locale_sv-se.js +++ b/src/ngLocale/angular-locale_sv-se.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mars", + "April", + "Maj", + "Juni", + "Juli", + "Augusti", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sv.js b/src/ngLocale/angular-locale_sv.js index dfd1aa78f503..e33f94655e7c 100644 --- a/src/ngLocale/angular-locale_sv.js +++ b/src/ngLocale/angular-locale_sv.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "nov.", "dec." ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Mars", + "April", + "Maj", + "Juni", + "Juli", + "Augusti", + "September", + "Oktober", + "November", + "December" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sw-cd.js b/src/ngLocale/angular-locale_sw-cd.js index b41d77c8b95e..ba72b709a073 100644 --- a/src/ngLocale/angular-locale_sw-cd.js +++ b/src/ngLocale/angular-locale_sw-cd.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "mkm", "mkb" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sw-ke.js b/src/ngLocale/angular-locale_sw-ke.js index 6230e7c9e523..761d21d4d45f 100644 --- a/src/ngLocale/angular-locale_sw-ke.js +++ b/src/ngLocale/angular-locale_sw-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sw-tz.js b/src/ngLocale/angular-locale_sw-tz.js index 3f1cc2d23f96..38f68e93f97d 100644 --- a/src/ngLocale/angular-locale_sw-tz.js +++ b/src/ngLocale/angular-locale_sw-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sw-ug.js b/src/ngLocale/angular-locale_sw-ug.js index f2d0312014bf..1d7e970cf51c 100644 --- a/src/ngLocale/angular-locale_sw-ug.js +++ b/src/ngLocale/angular-locale_sw-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_sw.js b/src/ngLocale/angular-locale_sw.js index e6dd8fe8c08e..994c7971dbda 100644 --- a/src/ngLocale/angular-locale_sw.js +++ b/src/ngLocale/angular-locale_sw.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprili", + "Mei", + "Juni", + "Julai", + "Agosti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ta-in.js b/src/ngLocale/angular-locale_ta-in.js index 8ef2205a8a9f..4e5647a4df50 100644 --- a/src/ngLocale/angular-locale_ta-in.js +++ b/src/ngLocale/angular-locale_ta-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a." ], + "STANDALONEMONTH": [ + "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", + "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", + "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", + "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", + "\u0bae\u0bc7", + "\u0b9c\u0bc2\u0ba9\u0bcd", + "\u0b9c\u0bc2\u0bb2\u0bc8", + "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1", + "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", + "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ta-lk.js b/src/ngLocale/angular-locale_ta-lk.js index ffb0e7ca6e51..e112383cc457 100644 --- a/src/ngLocale/angular-locale_ta-lk.js +++ b/src/ngLocale/angular-locale_ta-lk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a." ], + "STANDALONEMONTH": [ + "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", + "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", + "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", + "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", + "\u0bae\u0bc7", + "\u0b9c\u0bc2\u0ba9\u0bcd", + "\u0b9c\u0bc2\u0bb2\u0bc8", + "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1", + "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", + "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ta-my.js b/src/ngLocale/angular-locale_ta-my.js index 3a9287a63cf0..7b260131b36f 100644 --- a/src/ngLocale/angular-locale_ta-my.js +++ b/src/ngLocale/angular-locale_ta-my.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a." ], + "STANDALONEMONTH": [ + "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", + "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", + "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", + "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", + "\u0bae\u0bc7", + "\u0b9c\u0bc2\u0ba9\u0bcd", + "\u0b9c\u0bc2\u0bb2\u0bc8", + "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1", + "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", + "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ta-sg.js b/src/ngLocale/angular-locale_ta-sg.js index fc6a77d88ce6..2bf73b973ba6 100644 --- a/src/ngLocale/angular-locale_ta-sg.js +++ b/src/ngLocale/angular-locale_ta-sg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a." ], + "STANDALONEMONTH": [ + "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", + "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", + "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", + "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", + "\u0bae\u0bc7", + "\u0b9c\u0bc2\u0ba9\u0bcd", + "\u0b9c\u0bc2\u0bb2\u0bc8", + "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1", + "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", + "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ta.js b/src/ngLocale/angular-locale_ta.js index 627262465791..4c248f0c2e89 100644 --- a/src/ngLocale/angular-locale_ta.js +++ b/src/ngLocale/angular-locale_ta.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0ba8\u0bb5.", "\u0b9f\u0bbf\u0b9a." ], + "STANDALONEMONTH": [ + "\u0b9c\u0ba9\u0bb5\u0bb0\u0bbf", + "\u0baa\u0bbf\u0baa\u0bcd\u0bb0\u0bb5\u0bb0\u0bbf", + "\u0bae\u0bbe\u0bb0\u0bcd\u0b9a\u0bcd", + "\u0b8f\u0baa\u0bcd\u0bb0\u0bb2\u0bcd", + "\u0bae\u0bc7", + "\u0b9c\u0bc2\u0ba9\u0bcd", + "\u0b9c\u0bc2\u0bb2\u0bc8", + "\u0b86\u0b95\u0bb8\u0bcd\u0b9f\u0bc1", + "\u0b9a\u0bc6\u0baa\u0bcd\u0b9f\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b85\u0b95\u0bcd\u0b9f\u0bcb\u0baa\u0bb0\u0bcd", + "\u0ba8\u0bb5\u0bae\u0bcd\u0baa\u0bb0\u0bcd", + "\u0b9f\u0bbf\u0b9a\u0bae\u0bcd\u0baa\u0bb0\u0bcd" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_te-in.js b/src/ngLocale/angular-locale_te-in.js index fccdcfe8ca7a..ffd82e89b105 100644 --- a/src/ngLocale/angular-locale_te-in.js +++ b/src/ngLocale/angular-locale_te-in.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0c28\u0c35\u0c02", "\u0c21\u0c3f\u0c38\u0c46\u0c02" ], + "STANDALONEMONTH": [ + "\u0c1c\u0c28\u0c35\u0c30\u0c3f", + "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f", + "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", + "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d", + "\u0c2e\u0c47", + "\u0c1c\u0c42\u0c28\u0c4d", + "\u0c1c\u0c41\u0c32\u0c48", + "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41", + "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d", + "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d", + "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d", + "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_te.js b/src/ngLocale/angular-locale_te.js index a3c493fc3d60..e5028890148b 100644 --- a/src/ngLocale/angular-locale_te.js +++ b/src/ngLocale/angular-locale_te.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0c28\u0c35\u0c02", "\u0c21\u0c3f\u0c38\u0c46\u0c02" ], + "STANDALONEMONTH": [ + "\u0c1c\u0c28\u0c35\u0c30\u0c3f", + "\u0c2b\u0c3f\u0c2c\u0c4d\u0c30\u0c35\u0c30\u0c3f", + "\u0c2e\u0c3e\u0c30\u0c4d\u0c1a\u0c3f", + "\u0c0f\u0c2a\u0c4d\u0c30\u0c3f\u0c32\u0c4d", + "\u0c2e\u0c47", + "\u0c1c\u0c42\u0c28\u0c4d", + "\u0c1c\u0c41\u0c32\u0c48", + "\u0c06\u0c17\u0c38\u0c4d\u0c1f\u0c41", + "\u0c38\u0c46\u0c2a\u0c4d\u0c1f\u0c46\u0c02\u0c2c\u0c30\u0c4d", + "\u0c05\u0c15\u0c4d\u0c1f\u0c4b\u0c2c\u0c30\u0c4d", + "\u0c28\u0c35\u0c02\u0c2c\u0c30\u0c4d", + "\u0c21\u0c3f\u0c38\u0c46\u0c02\u0c2c\u0c30\u0c4d" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_teo-ke.js b/src/ngLocale/angular-locale_teo-ke.js index 04178e1c5681..30d7543e71ee 100644 --- a/src/ngLocale/angular-locale_teo-ke.js +++ b/src/ngLocale/angular-locale_teo-ke.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Lab", "Poo" ], + "STANDALONEMONTH": [ + "Orara", + "Omuk", + "Okwamg\u2019", + "Odung\u2019el", + "Omaruk", + "Omodok\u2019king\u2019ol", + "Ojola", + "Opedel", + "Osokosokoma", + "Otibar", + "Olabor", + "Opoo" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_teo-ug.js b/src/ngLocale/angular-locale_teo-ug.js index 8a6e1a783ce8..f7852e3ff884 100644 --- a/src/ngLocale/angular-locale_teo-ug.js +++ b/src/ngLocale/angular-locale_teo-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Lab", "Poo" ], + "STANDALONEMONTH": [ + "Orara", + "Omuk", + "Okwamg\u2019", + "Odung\u2019el", + "Omaruk", + "Omodok\u2019king\u2019ol", + "Ojola", + "Opedel", + "Osokosokoma", + "Otibar", + "Olabor", + "Opoo" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_teo.js b/src/ngLocale/angular-locale_teo.js index b3a750c60bec..119e66ae5ed6 100644 --- a/src/ngLocale/angular-locale_teo.js +++ b/src/ngLocale/angular-locale_teo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Lab", "Poo" ], + "STANDALONEMONTH": [ + "Orara", + "Omuk", + "Okwamg\u2019", + "Odung\u2019el", + "Omaruk", + "Omodok\u2019king\u2019ol", + "Ojola", + "Opedel", + "Osokosokoma", + "Otibar", + "Olabor", + "Opoo" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_th-th.js b/src/ngLocale/angular-locale_th-th.js index 93c1cce8321c..3998b3b6d05b 100644 --- a/src/ngLocale/angular-locale_th-th.js +++ b/src/ngLocale/angular-locale_th-th.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0e1e.\u0e22.", "\u0e18.\u0e04." ], + "STANDALONEMONTH": [ + "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", + "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", + "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", + "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", + "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", + "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", + "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", + "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", + "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", + "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", + "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", + "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_th.js b/src/ngLocale/angular-locale_th.js index d9c21b282064..df7a7202684e 100644 --- a/src/ngLocale/angular-locale_th.js +++ b/src/ngLocale/angular-locale_th.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0e1e.\u0e22.", "\u0e18.\u0e04." ], + "STANDALONEMONTH": [ + "\u0e21\u0e01\u0e23\u0e32\u0e04\u0e21", + "\u0e01\u0e38\u0e21\u0e20\u0e32\u0e1e\u0e31\u0e19\u0e18\u0e4c", + "\u0e21\u0e35\u0e19\u0e32\u0e04\u0e21", + "\u0e40\u0e21\u0e29\u0e32\u0e22\u0e19", + "\u0e1e\u0e24\u0e29\u0e20\u0e32\u0e04\u0e21", + "\u0e21\u0e34\u0e16\u0e38\u0e19\u0e32\u0e22\u0e19", + "\u0e01\u0e23\u0e01\u0e0e\u0e32\u0e04\u0e21", + "\u0e2a\u0e34\u0e07\u0e2b\u0e32\u0e04\u0e21", + "\u0e01\u0e31\u0e19\u0e22\u0e32\u0e22\u0e19", + "\u0e15\u0e38\u0e25\u0e32\u0e04\u0e21", + "\u0e1e\u0e24\u0e28\u0e08\u0e34\u0e01\u0e32\u0e22\u0e19", + "\u0e18\u0e31\u0e19\u0e27\u0e32\u0e04\u0e21" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ti-er.js b/src/ngLocale/angular-locale_ti-er.js index 26948d7c219e..be3484a0d30e 100644 --- a/src/ngLocale/angular-locale_ti-er.js +++ b/src/ngLocale/angular-locale_ti-er.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u1215\u12f3\u122d", "\u1273\u1215\u1233" ], + "STANDALONEMONTH": [ + "\u1325\u122a", + "\u1208\u12ab\u1272\u1275", + "\u1218\u130b\u1262\u1275", + "\u121a\u12eb\u12dd\u12eb", + "\u130d\u1295\u1266\u1275", + "\u1230\u1290", + "\u1213\u121d\u1208", + "\u1290\u1213\u1230", + "\u1218\u1235\u12a8\u1228\u121d", + "\u1325\u1245\u121d\u1272", + "\u1215\u12f3\u122d", + "\u1273\u1215\u1233\u1235" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ti-et.js b/src/ngLocale/angular-locale_ti-et.js index 1be479a0f54f..5aee651170a3 100644 --- a/src/ngLocale/angular-locale_ti-et.js +++ b/src/ngLocale/angular-locale_ti-et.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u1296\u126c\u121d", "\u12f2\u1234\u121d" ], + "STANDALONEMONTH": [ + "\u1303\u1295\u12e9\u12c8\u122a", + "\u134c\u1265\u1229\u12c8\u122a", + "\u121b\u122d\u127d", + "\u12a4\u1355\u1228\u120d", + "\u121c\u12ed", + "\u1301\u1295", + "\u1301\u120b\u12ed", + "\u12a6\u1308\u1235\u1275", + "\u1234\u1355\u1274\u121d\u1260\u122d", + "\u12a6\u12ad\u1270\u12cd\u1260\u122d", + "\u1296\u126c\u121d\u1260\u122d", + "\u12f2\u1234\u121d\u1260\u122d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ti.js b/src/ngLocale/angular-locale_ti.js index 872204c4afb0..1a3bd80e6173 100644 --- a/src/ngLocale/angular-locale_ti.js +++ b/src/ngLocale/angular-locale_ti.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u1296\u126c\u121d", "\u12f2\u1234\u121d" ], + "STANDALONEMONTH": [ + "\u1303\u1295\u12e9\u12c8\u122a", + "\u134c\u1265\u1229\u12c8\u122a", + "\u121b\u122d\u127d", + "\u12a4\u1355\u1228\u120d", + "\u121c\u12ed", + "\u1301\u1295", + "\u1301\u120b\u12ed", + "\u12a6\u1308\u1235\u1275", + "\u1234\u1355\u1274\u121d\u1260\u122d", + "\u12a6\u12ad\u1270\u12cd\u1260\u122d", + "\u1296\u126c\u121d\u1260\u122d", + "\u12f2\u1234\u121d\u1260\u122d" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_tl.js b/src/ngLocale/angular-locale_tl.js index 59b7a10d8176..a2e784e294db 100644 --- a/src/ngLocale/angular-locale_tl.js +++ b/src/ngLocale/angular-locale_tl.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nob", "Dis" ], + "STANDALONEMONTH": [ + "Enero", + "Pebrero", + "Marso", + "Abril", + "Mayo", + "Hunyo", + "Hulyo", + "Agosto", + "Setyembre", + "Oktubre", + "Nobyembre", + "Disyembre" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_to-to.js b/src/ngLocale/angular-locale_to-to.js index 568ba879b70d..c5a01a0ddf2b 100644 --- a/src/ngLocale/angular-locale_to-to.js +++ b/src/ngLocale/angular-locale_to-to.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "N\u014dv", "T\u012bs" ], + "STANDALONEMONTH": [ + "S\u0101nuali", + "F\u0113pueli", + "Ma\u02bbasi", + "\u02bbEpeleli", + "M\u0113", + "Sune", + "Siulai", + "\u02bbAokosi", + "Sepitema", + "\u02bbOkatopa", + "N\u014dvema", + "T\u012bsema" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_to.js b/src/ngLocale/angular-locale_to.js index 81ee57580b53..539545afb5a1 100644 --- a/src/ngLocale/angular-locale_to.js +++ b/src/ngLocale/angular-locale_to.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "N\u014dv", "T\u012bs" ], + "STANDALONEMONTH": [ + "S\u0101nuali", + "F\u0113pueli", + "Ma\u02bbasi", + "\u02bbEpeleli", + "M\u0113", + "Sune", + "Siulai", + "\u02bbAokosi", + "Sepitema", + "\u02bbOkatopa", + "N\u014dvema", + "T\u012bsema" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_tr-cy.js b/src/ngLocale/angular-locale_tr-cy.js index ea4847590c90..067df34b900c 100644 --- a/src/ngLocale/angular-locale_tr-cy.js +++ b/src/ngLocale/angular-locale_tr-cy.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Kas", "Ara" ], + "STANDALONEMONTH": [ + "Ocak", + "\u015eubat", + "Mart", + "Nisan", + "May\u0131s", + "Haziran", + "Temmuz", + "A\u011fustos", + "Eyl\u00fcl", + "Ekim", + "Kas\u0131m", + "Aral\u0131k" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_tr-tr.js b/src/ngLocale/angular-locale_tr-tr.js index e9575d34e3d5..68413082a2d9 100644 --- a/src/ngLocale/angular-locale_tr-tr.js +++ b/src/ngLocale/angular-locale_tr-tr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Kas", "Ara" ], + "STANDALONEMONTH": [ + "Ocak", + "\u015eubat", + "Mart", + "Nisan", + "May\u0131s", + "Haziran", + "Temmuz", + "A\u011fustos", + "Eyl\u00fcl", + "Ekim", + "Kas\u0131m", + "Aral\u0131k" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_tr.js b/src/ngLocale/angular-locale_tr.js index e3521251855e..355cb4345909 100644 --- a/src/ngLocale/angular-locale_tr.js +++ b/src/ngLocale/angular-locale_tr.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Kas", "Ara" ], + "STANDALONEMONTH": [ + "Ocak", + "\u015eubat", + "Mart", + "Nisan", + "May\u0131s", + "Haziran", + "Temmuz", + "A\u011fustos", + "Eyl\u00fcl", + "Ekim", + "Kas\u0131m", + "Aral\u0131k" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_twq-ne.js b/src/ngLocale/angular-locale_twq-ne.js index 6213c47e83e6..529362877cec 100644 --- a/src/ngLocale/angular-locale_twq-ne.js +++ b/src/ngLocale/angular-locale_twq-ne.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_twq.js b/src/ngLocale/angular-locale_twq.js index b477674ab6d9..a4707aea628e 100644 --- a/src/ngLocale/angular-locale_twq.js +++ b/src/ngLocale/angular-locale_twq.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Noo", "Dee" ], + "STANDALONEMONTH": [ + "\u017danwiye", + "Feewiriye", + "Marsi", + "Awiril", + "Me", + "\u017duwe\u014b", + "\u017duyye", + "Ut", + "Sektanbur", + "Oktoobur", + "Noowanbur", + "Deesanbur" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_tzm-latn-ma.js b/src/ngLocale/angular-locale_tzm-latn-ma.js index bbfe0a7ebe45..3320f7640042 100644 --- a/src/ngLocale/angular-locale_tzm-latn-ma.js +++ b/src/ngLocale/angular-locale_tzm-latn-ma.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nwa", "Duj" ], + "STANDALONEMONTH": [ + "Yennayer", + "Yebrayer", + "Mars", + "Ibrir", + "Mayyu", + "Yunyu", + "Yulyuz", + "\u0194uct", + "Cutanbir", + "K\u1e6duber", + "Nwanbir", + "Dujanbir" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_tzm-latn.js b/src/ngLocale/angular-locale_tzm-latn.js index b17a71dc0fd7..a91a99e7b514 100644 --- a/src/ngLocale/angular-locale_tzm-latn.js +++ b/src/ngLocale/angular-locale_tzm-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nwa", "Duj" ], + "STANDALONEMONTH": [ + "Yennayer", + "Yebrayer", + "Mars", + "Ibrir", + "Mayyu", + "Yunyu", + "Yulyuz", + "\u0194uct", + "Cutanbir", + "K\u1e6duber", + "Nwanbir", + "Dujanbir" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_tzm.js b/src/ngLocale/angular-locale_tzm.js index a2f34ff5fa15..291a09053589 100644 --- a/src/ngLocale/angular-locale_tzm.js +++ b/src/ngLocale/angular-locale_tzm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nwa", "Duj" ], + "STANDALONEMONTH": [ + "Yennayer", + "Yebrayer", + "Mars", + "Ibrir", + "Mayyu", + "Yunyu", + "Yulyuz", + "\u0194uct", + "Cutanbir", + "K\u1e6duber", + "Nwanbir", + "Dujanbir" + ], "WEEKENDRANGE": [ 4, 5 diff --git a/src/ngLocale/angular-locale_ug-arab-cn.js b/src/ngLocale/angular-locale_ug-arab-cn.js index 67092f1e3997..7df5b5ba1bd9 100644 --- a/src/ngLocale/angular-locale_ug-arab-cn.js +++ b/src/ngLocale/angular-locale_ug-arab-cn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u064a\u0627\u0628\u0649\u0631", "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0627\u0646\u06cb\u0627\u0631", + "\u0641\u06d0\u06cb\u0631\u0627\u0644", + "\u0645\u0627\u0631\u062a", + "\u0626\u0627\u067e\u0631\u06d0\u0644", + "\u0645\u0627\u064a", + "\u0626\u0649\u064a\u06c7\u0646", + "\u0626\u0649\u064a\u06c7\u0644", + "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a", + "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631", + "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631", + "\u0628\u0648\u064a\u0627\u0628\u0649\u0631", + "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ug-arab.js b/src/ngLocale/angular-locale_ug-arab.js index bd9ae4abd404..732984b71605 100644 --- a/src/ngLocale/angular-locale_ug-arab.js +++ b/src/ngLocale/angular-locale_ug-arab.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u064a\u0627\u0628\u0649\u0631", "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0627\u0646\u06cb\u0627\u0631", + "\u0641\u06d0\u06cb\u0631\u0627\u0644", + "\u0645\u0627\u0631\u062a", + "\u0626\u0627\u067e\u0631\u06d0\u0644", + "\u0645\u0627\u064a", + "\u0626\u0649\u064a\u06c7\u0646", + "\u0626\u0649\u064a\u06c7\u0644", + "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a", + "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631", + "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631", + "\u0628\u0648\u064a\u0627\u0628\u0649\u0631", + "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ug.js b/src/ngLocale/angular-locale_ug.js index 2ed49abcf770..eb0127fd8a45 100644 --- a/src/ngLocale/angular-locale_ug.js +++ b/src/ngLocale/angular-locale_ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u064a\u0627\u0628\u0649\u0631", "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" ], + "STANDALONEMONTH": [ + "\u064a\u0627\u0646\u06cb\u0627\u0631", + "\u0641\u06d0\u06cb\u0631\u0627\u0644", + "\u0645\u0627\u0631\u062a", + "\u0626\u0627\u067e\u0631\u06d0\u0644", + "\u0645\u0627\u064a", + "\u0626\u0649\u064a\u06c7\u0646", + "\u0626\u0649\u064a\u06c7\u0644", + "\u0626\u0627\u06cb\u063a\u06c7\u0633\u062a", + "\u0633\u06d0\u0646\u062a\u06d5\u0628\u0649\u0631", + "\u0626\u06c6\u0643\u062a\u06d5\u0628\u0649\u0631", + "\u0628\u0648\u064a\u0627\u0628\u0649\u0631", + "\u062f\u06d0\u0643\u0627\u0628\u0649\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uk-ua.js b/src/ngLocale/angular-locale_uk-ua.js index 1fca063b0443..8d5dd42d260e 100644 --- a/src/ngLocale/angular-locale_uk-ua.js +++ b/src/ngLocale/angular-locale_uk-ua.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043b\u0438\u0441\u0442.", "\u0433\u0440\u0443\u0434." ], + "STANDALONEMONTH": [ + "\u0421\u0456\u0447\u0435\u043d\u044c", + "\u041b\u044e\u0442\u0438\u0439", + "\u0411\u0435\u0440\u0435\u0437\u0435\u043d\u044c", + "\u041a\u0432\u0456\u0442\u0435\u043d\u044c", + "\u0422\u0440\u0430\u0432\u0435\u043d\u044c", + "\u0427\u0435\u0440\u0432\u0435\u043d\u044c", + "\u041b\u0438\u043f\u0435\u043d\u044c", + "\u0421\u0435\u0440\u043f\u0435\u043d\u044c", + "\u0412\u0435\u0440\u0435\u0441\u0435\u043d\u044c", + "\u0416\u043e\u0432\u0442\u0435\u043d\u044c", + "\u041b\u0438\u0441\u0442\u043e\u043f\u0430\u0434", + "\u0413\u0440\u0443\u0434\u0435\u043d\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uk.js b/src/ngLocale/angular-locale_uk.js index 9519ad862e53..369f3bd5a6a5 100644 --- a/src/ngLocale/angular-locale_uk.js +++ b/src/ngLocale/angular-locale_uk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u043b\u0438\u0441\u0442.", "\u0433\u0440\u0443\u0434." ], + "STANDALONEMONTH": [ + "\u0421\u0456\u0447\u0435\u043d\u044c", + "\u041b\u044e\u0442\u0438\u0439", + "\u0411\u0435\u0440\u0435\u0437\u0435\u043d\u044c", + "\u041a\u0432\u0456\u0442\u0435\u043d\u044c", + "\u0422\u0440\u0430\u0432\u0435\u043d\u044c", + "\u0427\u0435\u0440\u0432\u0435\u043d\u044c", + "\u041b\u0438\u043f\u0435\u043d\u044c", + "\u0421\u0435\u0440\u043f\u0435\u043d\u044c", + "\u0412\u0435\u0440\u0435\u0441\u0435\u043d\u044c", + "\u0416\u043e\u0432\u0442\u0435\u043d\u044c", + "\u041b\u0438\u0441\u0442\u043e\u043f\u0430\u0434", + "\u0413\u0440\u0443\u0434\u0435\u043d\u044c" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ur-in.js b/src/ngLocale/angular-locale_ur-in.js index c81b2df109ac..fb18729fadae 100644 --- a/src/ngLocale/angular-locale_ur-in.js +++ b/src/ngLocale/angular-locale_ur-in.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u0626\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u0626\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 6, 6 diff --git a/src/ngLocale/angular-locale_ur-pk.js b/src/ngLocale/angular-locale_ur-pk.js index f64e8f6096fa..57d4a5b22874 100644 --- a/src/ngLocale/angular-locale_ur-pk.js +++ b/src/ngLocale/angular-locale_ur-pk.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u0626\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u0626\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_ur.js b/src/ngLocale/angular-locale_ur.js index 79bf686cac5b..ac6d9be86758 100644 --- a/src/ngLocale/angular-locale_ur.js +++ b/src/ngLocale/angular-locale_ur.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645\u0628\u0631", "\u062f\u0633\u0645\u0628\u0631" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u0626\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u0626\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uz-arab-af.js b/src/ngLocale/angular-locale_uz-arab-af.js index 118132ae5e8c..386ae812478e 100644 --- a/src/ngLocale/angular-locale_uz-arab-af.js +++ b/src/ngLocale/angular-locale_uz-arab-af.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645", "\u062f\u0633\u0645" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0628\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u067e\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 3, 4 diff --git a/src/ngLocale/angular-locale_uz-arab.js b/src/ngLocale/angular-locale_uz-arab.js index 3f1a20da4fba..1b8147e17772 100644 --- a/src/ngLocale/angular-locale_uz-arab.js +++ b/src/ngLocale/angular-locale_uz-arab.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u0646\u0648\u0645", "\u062f\u0633\u0645" ], + "STANDALONEMONTH": [ + "\u062c\u0646\u0648\u0631\u06cc", + "\u0641\u0628\u0631\u0648\u0631\u06cc", + "\u0645\u0627\u0631\u0686", + "\u0627\u067e\u0631\u06cc\u0644", + "\u0645\u06cc", + "\u062c\u0648\u0646", + "\u062c\u0648\u0644\u0627\u06cc", + "\u0627\u06af\u0633\u062a", + "\u0633\u067e\u062a\u0645\u0628\u0631", + "\u0627\u06a9\u062a\u0648\u0628\u0631", + "\u0646\u0648\u0645\u0628\u0631", + "\u062f\u0633\u0645\u0628\u0631" + ], "WEEKENDRANGE": [ 3, 4 diff --git a/src/ngLocale/angular-locale_uz-cyrl-uz.js b/src/ngLocale/angular-locale_uz-cyrl-uz.js index 03e74ba69a5c..d5b74c870b08 100644 --- a/src/ngLocale/angular-locale_uz-cyrl-uz.js +++ b/src/ngLocale/angular-locale_uz-cyrl-uz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u041d\u043e\u044f", "\u0414\u0435\u043a" ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440", + "\u0424\u0435\u0432\u0440\u0430\u043b", + "\u041c\u0430\u0440\u0442", + "\u0410\u043f\u0440\u0435\u043b", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d", + "\u0418\u044e\u043b", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440", + "\u041e\u043a\u0442\u044f\u0431\u0440", + "\u041d\u043e\u044f\u0431\u0440", + "\u0414\u0435\u043a\u0430\u0431\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uz-cyrl.js b/src/ngLocale/angular-locale_uz-cyrl.js index d284657c077d..c8a4eec34826 100644 --- a/src/ngLocale/angular-locale_uz-cyrl.js +++ b/src/ngLocale/angular-locale_uz-cyrl.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "\u041d\u043e\u044f", "\u0414\u0435\u043a" ], + "STANDALONEMONTH": [ + "\u042f\u043d\u0432\u0430\u0440", + "\u0424\u0435\u0432\u0440\u0430\u043b", + "\u041c\u0430\u0440\u0442", + "\u0410\u043f\u0440\u0435\u043b", + "\u041c\u0430\u0439", + "\u0418\u044e\u043d", + "\u0418\u044e\u043b", + "\u0410\u0432\u0433\u0443\u0441\u0442", + "\u0421\u0435\u043d\u0442\u044f\u0431\u0440", + "\u041e\u043a\u0442\u044f\u0431\u0440", + "\u041d\u043e\u044f\u0431\u0440", + "\u0414\u0435\u043a\u0430\u0431\u0440" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uz-latn-uz.js b/src/ngLocale/angular-locale_uz-latn-uz.js index d7b41bd0fb88..6312092ca2f3 100644 --- a/src/ngLocale/angular-locale_uz-latn-uz.js +++ b/src/ngLocale/angular-locale_uz-latn-uz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Noya", "Dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "Iyun", + "Iyul", + "Avgust", + "Sentabr", + "Oktabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uz-latn.js b/src/ngLocale/angular-locale_uz-latn.js index a02622714f81..6119b9668e6d 100644 --- a/src/ngLocale/angular-locale_uz-latn.js +++ b/src/ngLocale/angular-locale_uz-latn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Noya", "Dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "Iyun", + "Iyul", + "Avgust", + "Sentabr", + "Oktabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_uz.js b/src/ngLocale/angular-locale_uz.js index 1bf9a64524c7..a305b297eef5 100644 --- a/src/ngLocale/angular-locale_uz.js +++ b/src/ngLocale/angular-locale_uz.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Noya", "Dek" ], + "STANDALONEMONTH": [ + "Yanvar", + "Fevral", + "Mart", + "Aprel", + "May", + "Iyun", + "Iyul", + "Avgust", + "Sentabr", + "Oktabr", + "Noyabr", + "Dekabr" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vai-latn-lr.js b/src/ngLocale/angular-locale_vai-latn-lr.js index a3d63c35b0f3..07cc753605cc 100644 --- a/src/ngLocale/angular-locale_vai-latn-lr.js +++ b/src/ngLocale/angular-locale_vai-latn-lr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "kenpkato \u0253olol\u0254", "luukao l\u0254ma" ], + "STANDALONEMONTH": [ + "luukao kem\u00e3", + "\u0253anda\u0253u", + "v\u0254\u0254", + "fulu", + "goo", + "6", + "7", + "k\u0254nde", + "saah", + "galo", + "kenpkato \u0253olol\u0254", + "luukao l\u0254ma" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vai-latn.js b/src/ngLocale/angular-locale_vai-latn.js index 3afe6629b868..dd86c3f80e64 100644 --- a/src/ngLocale/angular-locale_vai-latn.js +++ b/src/ngLocale/angular-locale_vai-latn.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "kenpkato \u0253olol\u0254", "luukao l\u0254ma" ], + "STANDALONEMONTH": [ + "luukao kem\u00e3", + "\u0253anda\u0253u", + "v\u0254\u0254", + "fulu", + "goo", + "6", + "7", + "k\u0254nde", + "saah", + "galo", + "kenpkato \u0253olol\u0254", + "luukao l\u0254ma" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vai-vaii-lr.js b/src/ngLocale/angular-locale_vai-vaii-lr.js index 6666694983a9..b8aacff3daa7 100644 --- a/src/ngLocale/angular-locale_vai-vaii-lr.js +++ b/src/ngLocale/angular-locale_vai-vaii-lr.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", "\ua5a8\ua56a\ua571 \ua5cf\ua56e" ], + "STANDALONEMONTH": [ + "\ua5a8\ua56a\ua583 \ua51e\ua56e", + "\ua552\ua561\ua59d\ua595", + "\ua57e\ua5ba", + "\ua5a2\ua595", + "\ua591\ua571", + "6", + "7", + "\ua5db\ua515", + "\ua562\ua54c", + "\ua56d\ua583", + "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", + "\ua5a8\ua56a\ua571 \ua5cf\ua56e" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vai-vaii.js b/src/ngLocale/angular-locale_vai-vaii.js index fc172f820231..58cdcd450032 100644 --- a/src/ngLocale/angular-locale_vai-vaii.js +++ b/src/ngLocale/angular-locale_vai-vaii.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", "\ua5a8\ua56a\ua571 \ua5cf\ua56e" ], + "STANDALONEMONTH": [ + "\ua5a8\ua56a\ua583 \ua51e\ua56e", + "\ua552\ua561\ua59d\ua595", + "\ua57e\ua5ba", + "\ua5a2\ua595", + "\ua591\ua571", + "6", + "7", + "\ua5db\ua515", + "\ua562\ua54c", + "\ua56d\ua583", + "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", + "\ua5a8\ua56a\ua571 \ua5cf\ua56e" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vai.js b/src/ngLocale/angular-locale_vai.js index bdf3393a2b90..ff6d565e55b9 100644 --- a/src/ngLocale/angular-locale_vai.js +++ b/src/ngLocale/angular-locale_vai.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", "\ua5a8\ua56a\ua571 \ua5cf\ua56e" ], + "STANDALONEMONTH": [ + "\ua5a8\ua56a\ua583 \ua51e\ua56e", + "\ua552\ua561\ua59d\ua595", + "\ua57e\ua5ba", + "\ua5a2\ua595", + "\ua591\ua571", + "6", + "7", + "\ua5db\ua515", + "\ua562\ua54c", + "\ua56d\ua583", + "\ua51e\ua60b\ua554\ua57f \ua578\ua583\ua5cf", + "\ua5a8\ua56a\ua571 \ua5cf\ua56e" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vi-vn.js b/src/ngLocale/angular-locale_vi-vn.js index 112e96ae9818..7c4ae01095d0 100644 --- a/src/ngLocale/angular-locale_vi-vn.js +++ b/src/ngLocale/angular-locale_vi-vn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "thg 11", "thg 12" ], + "STANDALONEMONTH": [ + "Th\u00e1ng 1", + "Th\u00e1ng 2", + "Th\u00e1ng 3", + "Th\u00e1ng 4", + "Th\u00e1ng 5", + "Th\u00e1ng 6", + "Th\u00e1ng 7", + "Th\u00e1ng 8", + "Th\u00e1ng 9", + "Th\u00e1ng 10", + "Th\u00e1ng 11", + "Th\u00e1ng 12" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vi.js b/src/ngLocale/angular-locale_vi.js index be70bd8eb28e..3c6f415cc6e0 100644 --- a/src/ngLocale/angular-locale_vi.js +++ b/src/ngLocale/angular-locale_vi.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "thg 11", "thg 12" ], + "STANDALONEMONTH": [ + "Th\u00e1ng 1", + "Th\u00e1ng 2", + "Th\u00e1ng 3", + "Th\u00e1ng 4", + "Th\u00e1ng 5", + "Th\u00e1ng 6", + "Th\u00e1ng 7", + "Th\u00e1ng 8", + "Th\u00e1ng 9", + "Th\u00e1ng 10", + "Th\u00e1ng 11", + "Th\u00e1ng 12" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vun-tz.js b/src/ngLocale/angular-locale_vun-tz.js index 52b0670ee759..6de61112386c 100644 --- a/src/ngLocale/angular-locale_vun-tz.js +++ b/src/ngLocale/angular-locale_vun-tz.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_vun.js b/src/ngLocale/angular-locale_vun.js index 4efacdf09b6d..bfb1746f6c38 100644 --- a/src/ngLocale/angular-locale_vun.js +++ b/src/ngLocale/angular-locale_vun.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Januari", + "Februari", + "Machi", + "Aprilyi", + "Mei", + "Junyi", + "Julyai", + "Agusti", + "Septemba", + "Oktoba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_wae-ch.js b/src/ngLocale/angular-locale_wae-ch.js index fba5d6ffba80..4b1a8feb3226 100644 --- a/src/ngLocale/angular-locale_wae-ch.js +++ b/src/ngLocale/angular-locale_wae-ch.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Win", "Chr" ], + "STANDALONEMONTH": [ + "Jenner", + "Hornig", + "M\u00e4rze", + "Abrille", + "Meije", + "Br\u00e1\u010det", + "Heiwet", + "\u00d6ig\u0161te", + "Herb\u0161tm\u00e1net", + "W\u00edm\u00e1net", + "Winterm\u00e1net", + "Chri\u0161tm\u00e1net" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_wae.js b/src/ngLocale/angular-locale_wae.js index 0e16d9163f48..835be049801a 100644 --- a/src/ngLocale/angular-locale_wae.js +++ b/src/ngLocale/angular-locale_wae.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Win", "Chr" ], + "STANDALONEMONTH": [ + "Jenner", + "Hornig", + "M\u00e4rze", + "Abrille", + "Meije", + "Br\u00e1\u010det", + "Heiwet", + "\u00d6ig\u0161te", + "Herb\u0161tm\u00e1net", + "W\u00edm\u00e1net", + "Winterm\u00e1net", + "Chri\u0161tm\u00e1net" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_xog-ug.js b/src/ngLocale/angular-locale_xog-ug.js index 0288518ee545..d6277f1eb217 100644 --- a/src/ngLocale/angular-locale_xog-ug.js +++ b/src/ngLocale/angular-locale_xog-ug.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janwaliyo", + "Febwaliyo", + "Marisi", + "Apuli", + "Maayi", + "Juuni", + "Julaayi", + "Agusito", + "Sebuttemba", + "Okitobba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_xog.js b/src/ngLocale/angular-locale_xog.js index 1a42ccf007c7..51890d77ddff 100644 --- a/src/ngLocale/angular-locale_xog.js +++ b/src/ngLocale/angular-locale_xog.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "Nov", "Des" ], + "STANDALONEMONTH": [ + "Janwaliyo", + "Febwaliyo", + "Marisi", + "Apuli", + "Maayi", + "Juuni", + "Julaayi", + "Agusito", + "Sebuttemba", + "Okitobba", + "Novemba", + "Desemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yav-cm.js b/src/ngLocale/angular-locale_yav-cm.js index 142164fcdd2b..a526be0c05f0 100644 --- a/src/ngLocale/angular-locale_yav-cm.js +++ b/src/ngLocale/angular-locale_yav-cm.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "o.11", "o.12" ], + "STANDALONEMONTH": [ + "pik\u00edt\u00edk\u00edtie, o\u00f3l\u00ed \u00fa kut\u00faan", + "si\u025by\u025b\u0301, o\u00f3li \u00fa k\u00e1nd\u00ed\u025b", + "\u0254ns\u00famb\u0254l, o\u00f3li \u00fa k\u00e1t\u00e1t\u00fa\u025b", + "mesi\u014b, o\u00f3li \u00fa k\u00e9nie", + "ensil, o\u00f3li \u00fa k\u00e1t\u00e1nu\u025b", + "\u0254s\u0254n", + "efute", + "pisuy\u00fa", + "im\u025b\u014b i pu\u0254s", + "im\u025b\u014b i put\u00fak,o\u00f3li \u00fa k\u00e1t\u00ed\u025b", + "makandik\u025b", + "pil\u0254nd\u0254\u0301" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yav.js b/src/ngLocale/angular-locale_yav.js index 01781a0d2361..dbd4d65c7c9c 100644 --- a/src/ngLocale/angular-locale_yav.js +++ b/src/ngLocale/angular-locale_yav.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "o.11", "o.12" ], + "STANDALONEMONTH": [ + "pik\u00edt\u00edk\u00edtie, o\u00f3l\u00ed \u00fa kut\u00faan", + "si\u025by\u025b\u0301, o\u00f3li \u00fa k\u00e1nd\u00ed\u025b", + "\u0254ns\u00famb\u0254l, o\u00f3li \u00fa k\u00e1t\u00e1t\u00fa\u025b", + "mesi\u014b, o\u00f3li \u00fa k\u00e9nie", + "ensil, o\u00f3li \u00fa k\u00e1t\u00e1nu\u025b", + "\u0254s\u0254n", + "efute", + "pisuy\u00fa", + "im\u025b\u014b i pu\u0254s", + "im\u025b\u014b i put\u00fak,o\u00f3li \u00fa k\u00e1t\u00ed\u025b", + "makandik\u025b", + "pil\u0254nd\u0254\u0301" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yi-001.js b/src/ngLocale/angular-locale_yi-001.js index 0ba2042d1355..98d0b70f1aa4 100644 --- a/src/ngLocale/angular-locale_yi-001.js +++ b/src/ngLocale/angular-locale_yi-001.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8", "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8" ], + "STANDALONEMONTH": [ + "\u05d9\u05d0\u05b7\u05e0\u05d5\u05d0\u05b7\u05e8", + "\u05e4\u05bf\u05e2\u05d1\u05e8\u05d5\u05d0\u05b7\u05e8", + "\u05de\u05e2\u05e8\u05e5", + "\u05d0\u05b7\u05e4\u05bc\u05e8\u05d9\u05dc", + "\u05de\u05d9\u05d9", + "\u05d9\u05d5\u05e0\u05d9", + "\u05d9\u05d5\u05dc\u05d9", + "\u05d0\u05d5\u05d9\u05d2\u05d5\u05e1\u05d8", + "\u05e1\u05e2\u05e4\u05bc\u05d8\u05e2\u05de\u05d1\u05e2\u05e8", + "\u05d0\u05e7\u05d8\u05d0\u05d1\u05e2\u05e8", + "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8", + "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yi.js b/src/ngLocale/angular-locale_yi.js index 57fb4a9d11f4..4bb8e6894279 100644 --- a/src/ngLocale/angular-locale_yi.js +++ b/src/ngLocale/angular-locale_yi.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8", "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8" ], + "STANDALONEMONTH": [ + "\u05d9\u05d0\u05b7\u05e0\u05d5\u05d0\u05b7\u05e8", + "\u05e4\u05bf\u05e2\u05d1\u05e8\u05d5\u05d0\u05b7\u05e8", + "\u05de\u05e2\u05e8\u05e5", + "\u05d0\u05b7\u05e4\u05bc\u05e8\u05d9\u05dc", + "\u05de\u05d9\u05d9", + "\u05d9\u05d5\u05e0\u05d9", + "\u05d9\u05d5\u05dc\u05d9", + "\u05d0\u05d5\u05d9\u05d2\u05d5\u05e1\u05d8", + "\u05e1\u05e2\u05e4\u05bc\u05d8\u05e2\u05de\u05d1\u05e2\u05e8", + "\u05d0\u05e7\u05d8\u05d0\u05d1\u05e2\u05e8", + "\u05e0\u05d0\u05d5\u05d5\u05e2\u05de\u05d1\u05e2\u05e8", + "\u05d3\u05e2\u05e6\u05e2\u05de\u05d1\u05e2\u05e8" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yo-bj.js b/src/ngLocale/angular-locale_yo-bj.js index afc112c32a43..c9b8d5ed8c6a 100644 --- a/src/ngLocale/angular-locale_yo-bj.js +++ b/src/ngLocale/angular-locale_yo-bj.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "B\u00e9l\u00fa", "\u0186\u0300p\u025b\u0300" ], + "STANDALONEMONTH": [ + "Osh\u00f9 Sh\u025b\u0301r\u025b\u0301", + "Osh\u00f9 \u00c8r\u00e8l\u00e8", + "Osh\u00f9 \u0190r\u025b\u0300n\u00e0", + "Osh\u00f9 \u00ccgb\u00e9", + "Osh\u00f9 \u0190\u0300bibi", + "Osh\u00f9 \u00d2k\u00fadu", + "Osh\u00f9 Ag\u025bm\u0254", + "Osh\u00f9 \u00d2g\u00fan", + "Osh\u00f9 Owewe", + "Osh\u00f9 \u0186\u0300w\u00e0r\u00e0", + "Osh\u00f9 B\u00e9l\u00fa", + "Osh\u00f9 \u0186\u0300p\u025b\u0300" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yo-ng.js b/src/ngLocale/angular-locale_yo-ng.js index 37b44503be6b..994a51c4a364 100644 --- a/src/ngLocale/angular-locale_yo-ng.js +++ b/src/ngLocale/angular-locale_yo-ng.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "B\u00e9l\u00fa", "\u1ecc\u0300p\u1eb9\u0300" ], + "STANDALONEMONTH": [ + "O\u1e63\u00f9 \u1e62\u1eb9\u0301r\u1eb9\u0301", + "O\u1e63\u00f9 \u00c8r\u00e8l\u00e8", + "O\u1e63\u00f9 \u1eb8r\u1eb9\u0300n\u00e0", + "O\u1e63\u00f9 \u00ccgb\u00e9", + "O\u1e63\u00f9 \u1eb8\u0300bibi", + "O\u1e63\u00f9 \u00d2k\u00fadu", + "O\u1e63\u00f9 Ag\u1eb9m\u1ecd", + "O\u1e63\u00f9 \u00d2g\u00fan", + "O\u1e63\u00f9 Owewe", + "O\u1e63\u00f9 \u1ecc\u0300w\u00e0r\u00e0", + "O\u1e63\u00f9 B\u00e9l\u00fa", + "O\u1e63\u00f9 \u1ecc\u0300p\u1eb9\u0300" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_yo.js b/src/ngLocale/angular-locale_yo.js index 49d87d4fb93a..3e95642280e0 100644 --- a/src/ngLocale/angular-locale_yo.js +++ b/src/ngLocale/angular-locale_yo.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "B\u00e9l\u00fa", "\u1ecc\u0300p\u1eb9\u0300" ], + "STANDALONEMONTH": [ + "O\u1e63\u00f9 \u1e62\u1eb9\u0301r\u1eb9\u0301", + "O\u1e63\u00f9 \u00c8r\u00e8l\u00e8", + "O\u1e63\u00f9 \u1eb8r\u1eb9\u0300n\u00e0", + "O\u1e63\u00f9 \u00ccgb\u00e9", + "O\u1e63\u00f9 \u1eb8\u0300bibi", + "O\u1e63\u00f9 \u00d2k\u00fadu", + "O\u1e63\u00f9 Ag\u1eb9m\u1ecd", + "O\u1e63\u00f9 \u00d2g\u00fan", + "O\u1e63\u00f9 Owewe", + "O\u1e63\u00f9 \u1ecc\u0300w\u00e0r\u00e0", + "O\u1e63\u00f9 B\u00e9l\u00fa", + "O\u1e63\u00f9 \u1ecc\u0300p\u1eb9\u0300" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zgh-ma.js b/src/ngLocale/angular-locale_zgh-ma.js index ec0c86b1de2c..1e6996c57835 100644 --- a/src/ngLocale/angular-locale_zgh-ma.js +++ b/src/ngLocale/angular-locale_zgh-ma.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u2d4f\u2d53\u2d61", "\u2d37\u2d53\u2d4a" ], + "STANDALONEMONTH": [ + "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54", + "\u2d31\u2d55\u2d30\u2d62\u2d55", + "\u2d4e\u2d30\u2d55\u2d5a", + "\u2d49\u2d31\u2d54\u2d49\u2d54", + "\u2d4e\u2d30\u2d62\u2d62\u2d53", + "\u2d62\u2d53\u2d4f\u2d62\u2d53", + "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63", + "\u2d56\u2d53\u2d5b\u2d5c", + "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d3d\u2d5c\u2d53\u2d31\u2d54", + "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zgh.js b/src/ngLocale/angular-locale_zgh.js index c4c7a64e4069..76b7428ad95b 100644 --- a/src/ngLocale/angular-locale_zgh.js +++ b/src/ngLocale/angular-locale_zgh.js @@ -80,6 +80,20 @@ $provide.value("$locale", { "\u2d4f\u2d53\u2d61", "\u2d37\u2d53\u2d4a" ], + "STANDALONEMONTH": [ + "\u2d49\u2d4f\u2d4f\u2d30\u2d62\u2d54", + "\u2d31\u2d55\u2d30\u2d62\u2d55", + "\u2d4e\u2d30\u2d55\u2d5a", + "\u2d49\u2d31\u2d54\u2d49\u2d54", + "\u2d4e\u2d30\u2d62\u2d62\u2d53", + "\u2d62\u2d53\u2d4f\u2d62\u2d53", + "\u2d62\u2d53\u2d4d\u2d62\u2d53\u2d63", + "\u2d56\u2d53\u2d5b\u2d5c", + "\u2d5b\u2d53\u2d5c\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d3d\u2d5c\u2d53\u2d31\u2d54", + "\u2d4f\u2d53\u2d61\u2d30\u2d4f\u2d31\u2d49\u2d54", + "\u2d37\u2d53\u2d4a\u2d30\u2d4f\u2d31\u2d49\u2d54" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-cn.js b/src/ngLocale/angular-locale_zh-cn.js index d15cdd61e6e0..f41d85efa0b0 100644 --- a/src/ngLocale/angular-locale_zh-cn.js +++ b/src/ngLocale/angular-locale_zh-cn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hans-cn.js b/src/ngLocale/angular-locale_zh-hans-cn.js index 120aa83039ed..a2cc4df5e211 100644 --- a/src/ngLocale/angular-locale_zh-hans-cn.js +++ b/src/ngLocale/angular-locale_zh-hans-cn.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hans-hk.js b/src/ngLocale/angular-locale_zh-hans-hk.js index d47c48b129a6..5902530c997f 100644 --- a/src/ngLocale/angular-locale_zh-hans-hk.js +++ b/src/ngLocale/angular-locale_zh-hans-hk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hans-mo.js b/src/ngLocale/angular-locale_zh-hans-mo.js index 750fd37447f5..d533ed8b9fb6 100644 --- a/src/ngLocale/angular-locale_zh-hans-mo.js +++ b/src/ngLocale/angular-locale_zh-hans-mo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hans-sg.js b/src/ngLocale/angular-locale_zh-hans-sg.js index 329df2df8523..fd3075377c45 100644 --- a/src/ngLocale/angular-locale_zh-hans-sg.js +++ b/src/ngLocale/angular-locale_zh-hans-sg.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hans.js b/src/ngLocale/angular-locale_zh-hans.js index 920d39d06dfb..d65378bf8dad 100644 --- a/src/ngLocale/angular-locale_zh-hans.js +++ b/src/ngLocale/angular-locale_zh-hans.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hant-hk.js b/src/ngLocale/angular-locale_zh-hant-hk.js index 23d60d7c66e4..f00fb7d09a21 100644 --- a/src/ngLocale/angular-locale_zh-hant-hk.js +++ b/src/ngLocale/angular-locale_zh-hant-hk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hant-mo.js b/src/ngLocale/angular-locale_zh-hant-mo.js index a6e4a328bd3a..414051a1ae91 100644 --- a/src/ngLocale/angular-locale_zh-hant-mo.js +++ b/src/ngLocale/angular-locale_zh-hant-mo.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hant-tw.js b/src/ngLocale/angular-locale_zh-hant-tw.js index 7caaa086b7c8..ea15b5adf091 100644 --- a/src/ngLocale/angular-locale_zh-hant-tw.js +++ b/src/ngLocale/angular-locale_zh-hant-tw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hant.js b/src/ngLocale/angular-locale_zh-hant.js index 99b7e43d3efc..18c00de651ff 100644 --- a/src/ngLocale/angular-locale_zh-hant.js +++ b/src/ngLocale/angular-locale_zh-hant.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-hk.js b/src/ngLocale/angular-locale_zh-hk.js index 6c8fefb3a945..ce07aa369a08 100644 --- a/src/ngLocale/angular-locale_zh-hk.js +++ b/src/ngLocale/angular-locale_zh-hk.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh-tw.js b/src/ngLocale/angular-locale_zh-tw.js index b834a61731b0..74ede89b4170 100644 --- a/src/ngLocale/angular-locale_zh-tw.js +++ b/src/ngLocale/angular-locale_zh-tw.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "1\u6708", + "2\u6708", + "3\u6708", + "4\u6708", + "5\u6708", + "6\u6708", + "7\u6708", + "8\u6708", + "9\u6708", + "10\u6708", + "11\u6708", + "12\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zh.js b/src/ngLocale/angular-locale_zh.js index 8c764a76f4cb..3b6fe7f8b1a6 100644 --- a/src/ngLocale/angular-locale_zh.js +++ b/src/ngLocale/angular-locale_zh.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "11\u6708", "12\u6708" ], + "STANDALONEMONTH": [ + "\u4e00\u6708", + "\u4e8c\u6708", + "\u4e09\u6708", + "\u56db\u6708", + "\u4e94\u6708", + "\u516d\u6708", + "\u4e03\u6708", + "\u516b\u6708", + "\u4e5d\u6708", + "\u5341\u6708", + "\u5341\u4e00\u6708", + "\u5341\u4e8c\u6708" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zu-za.js b/src/ngLocale/angular-locale_zu-za.js index 4f48a9fddd24..c6cf7cc26ffc 100644 --- a/src/ngLocale/angular-locale_zu-za.js +++ b/src/ngLocale/angular-locale_zu-za.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januwari", + "Februwari", + "Mashi", + "Apreli", + "Meyi", + "Juni", + "Julayi", + "Agasti", + "Septhemba", + "Okthoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 diff --git a/src/ngLocale/angular-locale_zu.js b/src/ngLocale/angular-locale_zu.js index bd4d00ecfb91..1fb4a17d24c9 100644 --- a/src/ngLocale/angular-locale_zu.js +++ b/src/ngLocale/angular-locale_zu.js @@ -62,6 +62,20 @@ $provide.value("$locale", { "Nov", "Dis" ], + "STANDALONEMONTH": [ + "Januwari", + "Februwari", + "Mashi", + "Apreli", + "Meyi", + "Juni", + "Julayi", + "Agasti", + "Septhemba", + "Okthoba", + "Novemba", + "Disemba" + ], "WEEKENDRANGE": [ 5, 6 From f163c90555774426ccb14752d089fc707cb4029c Mon Sep 17 00:00:00 2001 From: mohamed amr Date: Wed, 18 Nov 2015 12:34:53 +0200 Subject: [PATCH 113/354] fix(ngOptions): don't $dirty multiple select after compilation Closes #13211 Closes #13326 --- src/ng/directive/ngOptions.js | 3 ++- test/ng/directive/ngOptionsSpec.js | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/src/ng/directive/ngOptions.js b/src/ng/directive/ngOptions.js index 79927afc63e6..09939af9fbf5 100644 --- a/src/ng/directive/ngOptions.js +++ b/src/ng/directive/ngOptions.js @@ -737,7 +737,8 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { // Check to see if the value has changed due to the update to the options if (!ngModelCtrl.$isEmpty(previousValue)) { var nextValue = selectCtrl.readValue(); - if (ngOptions.trackBy ? !equals(previousValue, nextValue) : previousValue !== nextValue) { + var isNotPrimitive = ngOptions.trackBy || multiple; + if (isNotPrimitive ? !equals(previousValue, nextValue) : previousValue !== nextValue) { ngModelCtrl.$setViewValue(nextValue); ngModelCtrl.$render(); } diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js index 92f75e0c5603..21c86b55d64c 100644 --- a/test/ng/directive/ngOptionsSpec.js +++ b/test/ng/directive/ngOptionsSpec.js @@ -2645,5 +2645,20 @@ describe('ngOptions', function() { expect(scope.value).toBe('third'); expect(element).toEqualSelectValue('third'); })); + + it('should not set $dirty with select-multiple after compilation', function() { + scope.values = ['a', 'b']; + scope.selected = ['b']; + + createSelect({ + 'ng-model':'selected', + 'multiple':true, + 'ng-options':'value for value in values', + 'name': 'select' + }); + + expect(element.find('option')[1].selected).toBe(true); + expect(scope.form.select.$pristine).toBe(true); + }); }); }); From 01387ba3c3c99425ab1d318a6d724139f177ec01 Mon Sep 17 00:00:00 2001 From: Rahat Ahmed Date: Tue, 17 Nov 2015 12:33:14 -0600 Subject: [PATCH 114/354] docs(numberFilter): change decimalPlaces to fractionSize Replace `decimalPlaces` with `fractionSize`, as `decimalPlaces` isn't defined anywhere and is most likely meant to be `fractionSize`. Closes #13323 --- src/ng/filter/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index bc84deb76612..c37a11f8a488 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -89,7 +89,7 @@ function currencyFilter($locale) { * @param {(number|string)=} fractionSize Number of decimal places to round the number to. * If this is not provided then the fraction size is computed from the current locale's number * formatting pattern. In the case of the default locale, it will be 3. - * @returns {string} Number rounded to decimalPlaces and places a “,” after each third digit. + * @returns {string} Number rounded to fractionSize and places a “,” after each third digit. * * @example From 1d9ad76f1f926d0af74079bd7fa61c5185d1a3e5 Mon Sep 17 00:00:00 2001 From: Matt Erickson Date: Fri, 20 Nov 2015 11:30:01 -0600 Subject: [PATCH 115/354] docs($swipe): remove reference to ngCarousel ngCarousel no longer exists (or has ever existed). Closes #13322 Closes #13353 --- src/ngTouch/swipe.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/ngTouch/swipe.js b/src/ngTouch/swipe.js index b15628892882..50744559a472 100644 --- a/src/ngTouch/swipe.js +++ b/src/ngTouch/swipe.js @@ -12,8 +12,7 @@ * * Requires the {@link ngTouch `ngTouch`} module to be installed. * - * `$swipe` is used by the `ngSwipeLeft` and `ngSwipeRight` directives in `ngTouch`, and by - * `ngCarousel` in a separate component. + * `$swipe` is used by the `ngSwipeLeft` and `ngSwipeRight` directives in `ngTouch`. * * # Usage * The `$swipe` service is an object with a single method: `bind`. `bind` takes an element From a80697938ef0abe1d2ecc913e62dd5e53c884970 Mon Sep 17 00:00:00 2001 From: "J.P. Poveda" Date: Fri, 13 Nov 2015 16:31:26 -0800 Subject: [PATCH 116/354] docs($timeout): reword sentence for clarity Closes #13302 --- src/ng/timeout.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/timeout.js b/src/ng/timeout.js index 305739527c4c..6253d788e121 100644 --- a/src/ng/timeout.js +++ b/src/ng/timeout.js @@ -33,8 +33,8 @@ function $TimeoutProvider() { * @param {boolean=} [invokeApply=true] If set to `false` skips model dirty checking, otherwise * will invoke `fn` within the {@link ng.$rootScope.Scope#$apply $apply} block. * @param {...*=} Pass additional parameters to the executed function. - * @returns {Promise} Promise that will be resolved when the timeout is reached. The value this - * promise will be resolved with is the return value of the `fn` function. + * @returns {Promise} Promise that will be resolved when the timeout is reached. The promise + * will be resolved with the return value of the `fn` function. * */ function timeout(fn, delay, invokeApply) { From da11c1bcee660d4d7b3b93cc53bd32ab5785ca14 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 24 Nov 2015 10:49:22 +0000 Subject: [PATCH 117/354] chore(bower/publish): read dist-tag from correct package.json --- scripts/bower/publish.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/bower/publish.sh b/scripts/bower/publish.sh index 0024b86066b1..766cc82ce721 100755 --- a/scripts/bower/publish.sh +++ b/scripts/bower/publish.sh @@ -14,8 +14,9 @@ function init { TMP_DIR=$(resolveDir ../../tmp) BUILD_DIR=$(resolveDir ../../build) NEW_VERSION=$(cat $BUILD_DIR/version.txt) + PROJECT_DIR=$(resolveDir ../..) # get the npm dist-tag from a custom property (distTag) in package.json - DIST_TAG=$(readJsonProp "package.json" "distTag") + DIST_TAG=$(readJsonProp "$PROJECT_DIR/package.json" "distTag") } From 7bb2414bf6461aa45a983fd322ae875f81814cc4 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Tue, 24 Nov 2015 22:48:52 +0100 Subject: [PATCH 118/354] fix($parse): handle interceptors with `undefined` expressions When calling `$parse` with `undefined` as the expression and with an interceptor, then when the function is evaluated, then call the interceptor Closes: #13367 Closes: #13373 --- src/ng/parse.js | 2 +- test/ng/parseSpec.js | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index 45696a83f1a1..e8c5550913b7 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1775,7 +1775,7 @@ function $ParseProvider() { return addInterceptor(exp, interceptorFn); default: - return noop; + return addInterceptor(noop, interceptorFn); } }; diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index 3f0027e604ff..82c6223e86ae 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -3165,6 +3165,17 @@ describe('parser', function() { expect(called).toBe(true); })); + it('should invoke interceptors when the expression is `undefined`', inject(function($parse) { + var called = false; + function interceptor(v) { + called = true; + return v; + } + scope.$watch($parse(undefined, interceptor)); + scope.$digest(); + expect(called).toBe(true); + })); + it('should treat filters with constant input as constants', inject(function($parse) { var filterCalls = 0; $filterProvider.register('foo', valueFn(function(input) { From 45c5688d42154be8582b2ecab0cc4e14cccfc27b Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 25 Nov 2015 10:48:41 +0000 Subject: [PATCH 119/354] test($compile): add test for undefined non-optional reference binding Demonstrates that #13373 fixes #13367 --- test/ng/compileSpec.js | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index efd0f25f7cf8..44b3bfd08bc5 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3953,7 +3953,7 @@ describe('$compile', function() { expect(componentScope.ref).toBe('hello world'); componentScope.ref = 'ignore me'; - expect($rootScope.$apply). + expect(function() { $rootScope.$apply(); }). toThrowMinErr("$compile", "nonassign", "Expression ''hello ' + name' used with directive 'myComponent' is non-assignable!"); expect(componentScope.ref).toBe('hello world'); // reset since the exception was rethrown which prevented phase clearing @@ -3964,6 +3964,21 @@ describe('$compile', function() { expect(componentScope.ref).toBe('hello misko'); })); + it('should complain if assigning to undefined', inject(function() { + compile('
    '); + $rootScope.$apply(); + expect(componentScope.ref).toBeUndefined(); + + componentScope.ref = 'ignore me'; + expect(function() { $rootScope.$apply(); }). + toThrowMinErr("$compile", "nonassign", "Expression 'undefined' used with directive 'myComponent' is non-assignable!"); + expect(componentScope.ref).toBeUndefined(); + + $rootScope.$$phase = null; // reset since the exception was rethrown which prevented phase clearing + $rootScope.$apply(); + expect(componentScope.ref).toBeUndefined(); + })); + // regression it('should stabilize model', inject(function() { compile('
    '); From 8cdafe46e3d8f2e45f8aec032750e34b59418c5e Mon Sep 17 00:00:00 2001 From: Joan Claret Date: Tue, 24 Nov 2015 15:06:06 +0100 Subject: [PATCH 120/354] docs(tutorial/2 - Angular Templates): add closing parenthesis Closes #13368 --- docs/content/tutorial/step_02.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index 19e8e0474549..2fad895f9c78 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -61,7 +61,7 @@ by the value of the expressions. We have added a new directive, called `ng-controller`, which attaches a `PhoneListCtrl` __controller__ to the <body> tag. At this point: -* The expressions in curly braces (`{{phone.name}}` and `{{phone.snippet}}` denote +* The expressions in curly braces (`{{phone.name}}` and `{{phone.snippet}}`) denote bindings, which are referring to our application model, which is set up in our `PhoneListCtrl` controller. From 592bf516e50b9729e446d9aa01f4d9ebdd72d187 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 23 Nov 2015 17:41:11 +0100 Subject: [PATCH 121/354] fix($animateCss): consider options.delay value for closing timeout Previously, options.delay was only considered when a class added an extra transition style (which leads to style recalculation). Fixes #13355 Closes #13363 --- src/ngAnimate/animateCss.js | 7 +++- test/ngAnimate/animateCssSpec.js | 68 ++++++++++++++++++++++++++++++++ 2 files changed, 74 insertions(+), 1 deletion(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 2bcaa39a5c1a..c0aa28ab5a34 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -622,7 +622,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { } if (options.delay != null) { - var delayStyle = parseFloat(options.delay); + var delayStyle; + if (typeof options.delay !== "boolean") { + delayStyle = parseFloat(options.delay); + // number in options.delay means we have to recalculate the delay for the closing timeout + maxDelay = Math.max(delayStyle, 0); + } if (flags.applyTransitionDelay) { temporaryStyles.push(getCssDelayStyle(delayStyle)); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index a708d0f6e888..3e03dcfeef89 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1234,6 +1234,74 @@ describe("ngAnimate $animateCss", function() { $timeout.flush(); }).not.toThrow(); })); + + it("should consider a positive options.delay value for the closing timeout", + inject(function($animateCss, $rootElement, $timeout, $document) { + + var element = jqLite('
    '); + $rootElement.append(element); + jqLite($document[0].body).append($rootElement); + + var options = { + delay: 3, + duration: 3, + to: { + height: '100px' + } + }; + + var animator = $animateCss(element, options); + + animator.start(); + triggerAnimationStartFrame(); + + // At this point, the animation should still be running (closing timeout is 7500ms ... duration * 1.5 + delay => 7.5) + $timeout.flush(7000); + + expect(element.css(prefix + 'transition-delay')).toBe('3s'); + expect(element.css(prefix + 'transition-duration')).toBe('3s'); + + // Let's flush the remaining amout of time for the timeout timer to kick in + $timeout.flush(500); + + dump(element.attr('style')); + expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); + expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s'); + })); + + it("should ignore a boolean options.delay value for the closing timeout", + inject(function($animateCss, $rootElement, $timeout, $document) { + + var element = jqLite('
    '); + $rootElement.append(element); + jqLite($document[0].body).append($rootElement); + + var options = { + delay: true, + duration: 3, + to: { + height: '100px' + } + }; + + var animator = $animateCss(element, options); + + animator.start(); + triggerAnimationStartFrame(); + + // At this point, the animation should still be running (closing timeout is 4500ms ... duration * 1.5 => 4.5) + $timeout.flush(4000); + + expect(element.css(prefix + 'transition-delay')).toBeOneOf('initial', '0s'); + expect(element.css(prefix + 'transition-duration')).toBe('3s'); + + // Let's flush the remaining amout of time for the timeout timer to kick in + $timeout.flush(500); + + expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); + expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s'); + })); + }); describe("getComputedStyle", function() { From e509ab5be6f0a2dc6c4b3d150920954704832267 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sun, 29 Nov 2015 18:19:44 +0100 Subject: [PATCH 122/354] style($animateCssSpec): remove dump from test --- test/ngAnimate/animateCssSpec.js | 1 - 1 file changed, 1 deletion(-) diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 3e03dcfeef89..9ec9427efafd 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1264,7 +1264,6 @@ describe("ngAnimate $animateCss", function() { // Let's flush the remaining amout of time for the timeout timer to kick in $timeout.flush(500); - dump(element.attr('style')); expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s'); })); From 6454f51741fc85c20911cb50aae1a8dbc78ef09c Mon Sep 17 00:00:00 2001 From: Adam Zerner Date: Mon, 30 Nov 2015 01:58:16 -0500 Subject: [PATCH 123/354] docs(guide/Scopes): fix grammar Closes #13413 --- docs/content/guide/scope.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/scope.ngdoc b/docs/content/guide/scope.ngdoc index 7954df618647..30263b73df4c 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -419,4 +419,4 @@ user enters text into the text field. which in turn updates the DOM. 6. Angular exits the execution context, which in turn exits the `keydown` event and with it the JavaScript execution context. - 7. The browser re-renders the view with update text. + 7. The browser re-renders the view with the updated text. From b3da88077fc74cfac3236252ed5e079baae4d3ac Mon Sep 17 00:00:00 2001 From: daviskoh Date: Thu, 24 Sep 2015 21:18:05 -0400 Subject: [PATCH 124/354] docs($parse): fix typo in error message description Closes #13409 --- src/ng/parse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index e8c5550913b7..b9c280fc39a3 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1069,7 +1069,7 @@ ASTCompiler.prototype = { right = this.nextId(); left = {}; if (!isAssignable(ast.left)) { - throw $parseMinErr('lval', 'Trying to assing a value to a non l-value'); + throw $parseMinErr('lval', 'Trying to assign a value to a non l-value'); } this.recurse(ast.left, undefined, left, function() { self.if_(self.notNull(left.context), function() { From 374a302b906828842ce3419f558e51539e06ea6b Mon Sep 17 00:00:00 2001 From: xieranmaya Date: Tue, 1 Dec 2015 11:29:20 +0800 Subject: [PATCH 125/354] docs($controller): fix typo Closes #13418 --- src/ngMock/angular-mocks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 5e1522e42d3d..ea1879c43874 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1830,7 +1830,7 @@ angular.mock.$RootElementProvider = function() { * * // Controller definition ... * - * myMod.controller('MyDirectiveController', ['log', function($log) { + * myMod.controller('MyDirectiveController', ['$log', function($log) { * $log.info(this.name); * })]; * From 9c49eb131a6100d58c965d01fb08bcd319032229 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 1 Dec 2015 21:25:30 +0000 Subject: [PATCH 126/354] fix(formatNumber): cope with large and small number corner cases By manually parsing and rounding we can deal with the more tricky numbers Closes #13394 Closes #8674 Closes #12709 Closes #8705 Closes #12707 Closes #10246 Closes #10252 --- src/ng/filter/filters.js | 243 ++++++++++++++++++++++++---------- test/ng/filter/filtersSpec.js | 52 +++++++- 2 files changed, 218 insertions(+), 77 deletions(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index c37a11f8a488..3844e51b2d91 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -1,5 +1,9 @@ 'use strict'; +var MAX_DIGITS = 22; +var DECIMAL_SEP = '.'; +var ZERO_CHAR = '0'; + /** * @ngdoc filter * @name currency @@ -124,8 +128,6 @@ function currencyFilter($locale) { */ - - numberFilter.$inject = ['$locale']; function numberFilter($locale) { var formats = $locale.NUMBER_FORMATS; @@ -139,93 +141,194 @@ function numberFilter($locale) { }; } -var DECIMAL_SEP = '.'; -function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { - if (isObject(number)) return ''; +/** + * Parse a number (as a string) into three components that can be used + * for formatting the number. + * + * (Significant bits of this parse algorithm came from https://github.com/MikeMcl/big.js/) + * + * @param {string} numStr The number to parse + * @return {object} An object describing this number, containing the following keys: + * - d : an array of digits containing leading zeros as necessary + * - i : the number of the digits in `d` that are to the left of the decimal point + * - e : the exponent for numbers that would need more than `MAX_DIGITS` digits in `d` + * + */ +function parse(numStr) { + var exponent = 0, digits, numberOfIntegerDigits; + var i, j, zeros; + + // Decimal point? + if ((numberOfIntegerDigits = numStr.indexOf(DECIMAL_SEP)) > -1) { + numStr = numStr.replace(DECIMAL_SEP, ''); + } - var isNegative = number < 0; - number = Math.abs(number); + // Exponential form? + if ((i = numStr.search(/e/i)) > 0) { + // Work out the exponent. + if (numberOfIntegerDigits < 0) numberOfIntegerDigits = i; + numberOfIntegerDigits += +numStr.slice(i + 1); + numStr = numStr.substring(0, i); + } else if (numberOfIntegerDigits < 0) { + // There was no decimal point or exponent so it is an integer. + numberOfIntegerDigits = numStr.length; + } - var isInfinity = number === Infinity; - if (!isInfinity && !isFinite(number)) return ''; + // Count the number of leading zeros. + for (i = 0; numStr.charAt(i) == ZERO_CHAR; i++); - var numStr = number + '', - formatedText = '', - hasExponent = false, - parts = []; + if (i == (zeros = numStr.length)) { + // The digits are all zero. + digits = [0]; + numberOfIntegerDigits = 1; + } else { + // Count the number of trailing zeros + zeros--; + while (numStr.charAt(zeros) == ZERO_CHAR) zeros--; + + // Trailing zeros are insignificant so ignore them + numberOfIntegerDigits -= i; + digits = []; + // Convert string to array of digits without leading/trailing zeros. + for (j = 0; i <= zeros; i++, j++) { + digits[j] = +numStr.charAt(i); + } + } - if (isInfinity) formatedText = '\u221e'; + // If the number overflows the maximum allowed digits then use an exponent. + if (numberOfIntegerDigits > MAX_DIGITS) { + digits = digits.splice(0, MAX_DIGITS - 1); + exponent = numberOfIntegerDigits - 1; + numberOfIntegerDigits = 1; + } + + return { d: digits, e: exponent, i: numberOfIntegerDigits }; +} - if (!isInfinity && numStr.indexOf('e') !== -1) { - var match = numStr.match(/([\d\.]+)e(-?)(\d+)/); - if (match && match[2] == '-' && match[3] > fractionSize + 1) { - number = 0; +/** + * Round the parsed number to the specified number of decimal places + * This function changed the parsedNumber in-place + */ +function roundNumber(parsedNumber, fractionSize, minFrac, maxFrac) { + var digits = parsedNumber.d; + var fractionLen = digits.length - parsedNumber.i; + + // determine fractionSize if it is not specified; `+fractionSize` converts it to a number + fractionSize = (isUndefined(fractionSize)) ? Math.min(Math.max(minFrac, fractionLen), maxFrac) : +fractionSize; + + // The index of the digit to where rounding is to occur + var roundAt = fractionSize + parsedNumber.i; + var digit = digits[roundAt]; + + if (roundAt > 0) { + digits.splice(roundAt); } else { - formatedText = numStr; - hasExponent = true; + // We rounded to zero so reset the parsedNumber + parsedNumber.i = 1; + digits.length = roundAt = fractionSize + 1; + for (var i=0; i < roundAt; i++) digits[i] = 0; } - } - if (!isInfinity && !hasExponent) { - var fractionLen = (numStr.split(DECIMAL_SEP)[1] || '').length; + if (digit >= 5) digits[roundAt - 1]++; - // determine fractionSize if it is not specified - if (isUndefined(fractionSize)) { - fractionSize = Math.min(Math.max(pattern.minFrac, fractionLen), pattern.maxFrac); + // Pad out with zeros to get the required fraction length + for (; fractionLen < fractionSize; fractionLen++) digits.push(0); + + + // Do any carrying, e.g. a digit was rounded up to 10 + var carry = digits.reduceRight(function(carry, d, i, digits) { + d = d + carry; + digits[i] = d % 10; + return Math.floor(d / 10); + }, 0); + if (carry) { + digits.unshift(carry); + parsedNumber.i++; } +} - // safely round numbers in JS without hitting imprecisions of floating-point arithmetics - // inspired by: - // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Math/round - number = +(Math.round(+(number.toString() + 'e' + fractionSize)).toString() + 'e' + -fractionSize); - - var fraction = ('' + number).split(DECIMAL_SEP); - var whole = fraction[0]; - fraction = fraction[1] || ''; - - var i, pos = 0, - lgroup = pattern.lgSize, - group = pattern.gSize; - - if (whole.length >= (lgroup + group)) { - pos = whole.length - lgroup; - for (i = 0; i < pos; i++) { - if ((pos - i) % group === 0 && i !== 0) { - formatedText += groupSep; - } - formatedText += whole.charAt(i); - } +/** + * Format a number into a string + * @param {number} number The number to format + * @param {{ + * minFrac, // the minimum number of digits required in the fraction part of the number + * maxFrac, // the maximum number of digits required in the fraction part of the number + * gSize, // number of digits in each group of separated digits + * lgSize, // number of digits in the last group of digits before the decimal separator + * negPre, // the string to go in front of a negative number (e.g. `-` or `(`)) + * posPre, // the string to go in front of a positive number + * negSuf, // the string to go after a negative number (e.g. `)`) + * posSuf // the string to go after a positive number + * }} pattern + * @param {string} groupSep The string to separate groups of number (e.g. `,`) + * @param {string} decimalSep The string to act as the decimal separator (e.g. `.`) + * @param {[type]} fractionSize The size of the fractional part of the number + * @return {string} The number formatted as a string + */ +function formatNumber(number, pattern, groupSep, decimalSep, fractionSize) { + + if (!(isString(number) || isNumber(number)) || isNaN(number)) return ''; + + var isInfinity = !isFinite(number); + var isZero = false; + var numStr = Math.abs(number) + '', + formattedText = '', + parsedNumber; + + if (isInfinity) { + formattedText = '\u221e'; + } else { + parsedNumber = parse(numStr); + + roundNumber(parsedNumber, fractionSize, pattern.minFrac, pattern.maxFrac); + + var digits = parsedNumber.d; + var integerLen = parsedNumber.i; + var exponent = parsedNumber.e; + var decimals = []; + isZero = digits.reduce(function(isZero, d) { return isZero && !d; }, true); + + // pad zeros for small numbers + while (integerLen < 0) { + digits.unshift(0); + integerLen++; } - for (i = pos; i < whole.length; i++) { - if ((whole.length - i) % lgroup === 0 && i !== 0) { - formatedText += groupSep; - } - formatedText += whole.charAt(i); + // extract decimals digits + if (integerLen > 0) { + decimals = digits.splice(integerLen); + } else { + decimals = digits; + digits = [0]; + } + + // format the integer digits with grouping separators + var groups = []; + if (digits.length > pattern.lgSize) { + groups.unshift(digits.splice(-pattern.lgSize).join('')); } + while (digits.length > pattern.gSize) { + groups.unshift(digits.splice(-pattern.gSize).join('')); + } + if (digits.length) { + groups.unshift(digits.join('')); + } + formattedText = groups.join(groupSep); - // format fraction part. - while (fraction.length < fractionSize) { - fraction += '0'; + // append the decimal digits + if (decimals.length) { + formattedText += decimalSep + decimals.join(''); } - if (fractionSize && fractionSize !== "0") formatedText += decimalSep + fraction.substr(0, fractionSize); - } else { - if (fractionSize > 0 && number < 1) { - formatedText = number.toFixed(fractionSize); - number = parseFloat(formatedText); - formatedText = formatedText.replace(DECIMAL_SEP, decimalSep); + if (exponent) { + formattedText += 'e+' + exponent; } } - - if (number === 0) { - isNegative = false; + if (number < 0 && !isZero) { + return pattern.negPre + formattedText + pattern.negSuf; + } else { + return pattern.posPre + formattedText + pattern.posSuf; } - - parts.push(isNegative ? pattern.negPre : pattern.posPre, - formatedText, - isNegative ? pattern.negSuf : pattern.posSuf); - return parts.join(''); } function padNumber(num, digits, trim) { @@ -235,7 +338,7 @@ function padNumber(num, digits, trim) { num = -num; } num = '' + num; - while (num.length < digits) num = '0' + num; + while (num.length < digits) num = ZERO_CHAR + num; if (trim) { num = num.substr(num.length - digits); } diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js index 4bb58f45e3a3..979fd2bf02b8 100644 --- a/test/ng/filter/filtersSpec.js +++ b/test/ng/filter/filtersSpec.js @@ -92,6 +92,39 @@ describe('filters', function() { expect(formatNumber(-0.0001, pattern, ',', '.', 3)).toBe('0.000'); expect(formatNumber(-0.0000001, pattern, ',', '.', 6)).toBe('0.000000'); }); + + it('should work with numbers that are close to the limit for exponent notation', function() { + // previously, numbers that n * (10 ^ fractionSize) > localLimitMax + // were ending up with a second exponent in them, then coercing to + // NaN when formatNumber rounded them with the safe rounding + // function. + + var localLimitMax = 999999999999999900000, + localLimitMin = 10000000000000000000, + exampleNumber = 444444444400000000000; + + expect(formatNumber(localLimitMax, pattern, ',', '.', 2)) + .toBe('999,999,999,999,999,900,000.00'); + expect(formatNumber(localLimitMin, pattern, ',', '.', 2)) + .toBe('10,000,000,000,000,000,000.00'); + expect(formatNumber(exampleNumber, pattern, ',', '.', 2)) + .toBe('444,444,444,400,000,000,000.00'); + + }); + + it('should format large number',function() { + var num; + num = formatNumber(12345868059685210000, pattern, ',', '.', 2); + expect(num).toBe('12,345,868,059,685,210,000.00'); + num = formatNumber(79832749837498327498274983793234322432, pattern, ',', '.', 2); + expect(num).toBe('7.98e+37'); + num = formatNumber(8798327498374983274928, pattern, ',', '.', 2); + expect(num).toBe('8,798,327,498,374,983,000,000.00'); + num = formatNumber(879832749374983274928, pattern, ',', '.', 2); + expect(num).toBe('879,832,749,374,983,200,000.00'); + num = formatNumber(879832749374983274928, pattern, ',', '.', 32); + expect(num).toBe('879,832,749,374,983,200,000.00000000000000000000000000000000'); + }); }); describe('currency', function() { @@ -186,13 +219,10 @@ describe('filters', function() { }); it('should filter exponentially large numbers', function() { - expect(number(1e50)).toEqual('1e+50'); - expect(number(-2e100)).toEqual('-2e+100'); - }); - - it('should ignore fraction sizes for large numbers', function() { - expect(number(1e50, 2)).toEqual('1e+50'); - expect(number(-2e100, 5)).toEqual('-2e+100'); + expect(number(1.23e50)).toEqual('1.23e+50'); + expect(number(-2.3456e100)).toEqual('-2.346e+100'); + expect(number(1e50, 2)).toEqual('1.00e+50'); + expect(number(-2e100, 5)).toEqual('-2.00000e+100'); }); it('should filter exponentially small numbers', function() { @@ -206,6 +236,14 @@ describe('filters', function() { expect(number(-1e-7, 6)).toEqual('0.000000'); expect(number(-1e-8, 9)).toEqual('-0.000000010'); }); + + it('should filter exponentially small numbers when no fraction specified', function() { + expect(number(1e-10)).toEqual('0.000'); + expect(number(0.0000000001)).toEqual('0.000'); + + expect(number(-1e-10)).toEqual('0.000'); + expect(number(-0.0000000001)).toEqual('0.000'); + }); }); describe('json', function() { From 7a81e6fe2db084172e34d509f0baad2b33a8722c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Mon, 26 Oct 2015 10:39:04 -0700 Subject: [PATCH 127/354] fix(ngAnimate): do not alter the provided options data Prior to this fix the provided options object would be altered as the animation kicks off due to the underlying mechanics of ngAnimate. This patch ensures that a copy of the provided options is used instead. This patch also works for when `$animateCss` is used by itself. Fixes #13040 Closes #13175 --- src/ng/animateCss.js | 8 +++++- src/ngAnimate/.jshintrc | 1 + src/ngAnimate/animateCss.js | 7 ++++- src/ngAnimate/animateQueue.js | 7 ++++- src/ngAnimate/shared.js | 1 + test/ng/animateCssSpec.js | 15 +++++++++++ test/ng/animateSpec.js | 21 +++++++++++++++ test/ngAnimate/animateCssSpec.js | 31 +++++++++++++++++++++ test/ngAnimate/animateSpec.js | 34 ++++++++++++++++++++--- test/ngAnimate/integrationSpec.js | 45 +++++++++++++++++++++++++++++++ 10 files changed, 163 insertions(+), 7 deletions(-) diff --git a/src/ng/animateCss.js b/src/ng/animateCss.js index 8380d2ce5ec9..b3e3c3786550 100644 --- a/src/ng/animateCss.js +++ b/src/ng/animateCss.js @@ -13,7 +13,13 @@ */ var $CoreAnimateCssProvider = function() { this.$get = ['$$rAF', '$q', '$$AnimateRunner', function($$rAF, $q, $$AnimateRunner) { - return function(element, options) { + + return function(element, initialOptions) { + // we always make a copy of the options since + // there should never be any side effects on + // the input data when running `$animateCss`. + var options = copy(initialOptions); + // there is no point in applying the styles since // there is no animation that goes on at all in // this version of $animateCss. diff --git a/src/ngAnimate/.jshintrc b/src/ngAnimate/.jshintrc index ee79a690d2a8..187ecd1f3c9d 100644 --- a/src/ngAnimate/.jshintrc +++ b/src/ngAnimate/.jshintrc @@ -7,6 +7,7 @@ "angular": false, "noop": false, + "copy": false, "forEach": false, "extend": false, "jqLite": false, diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index c0aa28ab5a34..664583198624 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -446,7 +446,12 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { return timings; } - return function init(element, options) { + return function init(element, initialOptions) { + // we always make a copy of the options since + // there should never be any side effects on + // the input data when running `$animateCss`. + var options = copy(initialOptions); + var restoreStyles = {}; var node = getDomNode(element); if (!node diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 04f837c8aaa9..0d22adc35c40 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -238,7 +238,12 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { } }; - function queueAnimation(element, event, options) { + function queueAnimation(element, event, initialOptions) { + // we always make a copy of the options since + // there should never be any side effects on + // the input data when running `$animateCss`. + var options = copy(initialOptions); + var node, parent; element = stripCommentsFromElement(element); if (element) { diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index ad58a1506cab..634cd90bada4 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -2,6 +2,7 @@ /* jshint ignore:start */ var noop = angular.noop; +var copy = angular.copy; var extend = angular.extend; var jqLite = angular.element; var forEach = angular.forEach; diff --git a/test/ng/animateCssSpec.js b/test/ng/animateCssSpec.js index cce232e960af..f0a027805cfa 100644 --- a/test/ng/animateCssSpec.js +++ b/test/ng/animateCssSpec.js @@ -16,6 +16,21 @@ describe("$animateCss", function() { describe("without animation", function() { + it("should not alter the provided options input in any way", inject(function($animateCss) { + var initialOptions = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two' + }; + + var copiedOptions = copy(initialOptions); + + expect(copiedOptions).toEqual(initialOptions); + $animateCss(element, copiedOptions).start(); + expect(copiedOptions).toEqual(initialOptions); + })); + it("should apply the provided [from] CSS to the element", inject(function($animateCss) { $animateCss(element, { from: { height: '50px' }}).start(); expect(element.css('height')).toBe('50px'); diff --git a/test/ng/animateSpec.js b/test/ng/animateSpec.js index 76fae5ebcaa6..8c913114493a 100644 --- a/test/ng/animateSpec.js +++ b/test/ng/animateSpec.js @@ -378,6 +378,27 @@ describe("$animate", function() { }); }); + it("should not alter the provided options input in any way throughout the animation", inject(function($animate, $rootElement, $rootScope) { + var element = jqLite('
    '); + var parent = $rootElement; + + var initialOptions = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two' + }; + + var copiedOptions = copy(initialOptions); + expect(copiedOptions).toEqual(initialOptions); + + var runner = $animate.enter(element, parent, null, copiedOptions); + expect(copiedOptions).toEqual(initialOptions); + + $rootScope.$digest(); + expect(copiedOptions).toEqual(initialOptions); + })); + describe('CSS class DOM manipulation', function() { var element; var addClass; diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 9ec9427efafd..52182493f61a 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1865,6 +1865,37 @@ describe("ngAnimate $animateCss", function() { }; })); + it("should not alter the provided options input in any way throughout the animation", inject(function($animateCss) { + var initialOptions = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two', + duration: 10, + delay: 10, + structural: true, + keyframeStyle: '1s rotate', + transitionStyle: '1s linear', + stagger: 0.5, + staggerIndex: 3 + }; + + var copiedOptions = copy(initialOptions); + expect(copiedOptions).toEqual(initialOptions); + + var animator = $animateCss(element, copiedOptions); + expect(copiedOptions).toEqual(initialOptions); + + var runner = animator.start(); + expect(copiedOptions).toEqual(initialOptions); + + triggerAnimationStartFrame(); + expect(copiedOptions).toEqual(initialOptions); + + runner.end(); + expect(copiedOptions).toEqual(initialOptions); + })); + describe("[$$skipPreparationClasses]", function() { it('should not apply and remove the preparation classes to the element when true', inject(function($animateCss) { diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 9df3b400bdc3..429b0679a527 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -130,6 +130,24 @@ describe("animations", function() { }; })); + it("should not alter the provided options input in any way throughout the animation", inject(function($animate, $rootScope) { + var initialOptions = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two' + }; + + var copiedOptions = copy(initialOptions); + expect(copiedOptions).toEqual(initialOptions); + + var runner = $animate.enter(element, parent, null, copiedOptions); + expect(copiedOptions).toEqual(initialOptions); + + $rootScope.$digest(); + expect(copiedOptions).toEqual(initialOptions); + })); + it('should animate only the specified CSS className matched within $animateProvider.classNameFilter', function() { module(function($animateProvider) { $animateProvider.classNameFilter(/only-allow-this-animation/); @@ -149,20 +167,24 @@ describe("animations", function() { }); }); - they('should nullify both options.$prop when passed into an animation if it is not a string or an array', ['addClass', 'removeClass'], function(prop) { + they('should not apply the provided options.$prop value unless it\'s a string or string-based array', ['addClass', 'removeClass'], function(prop) { inject(function($animate, $rootScope) { + var startingCssClasses = element.attr('class') || ''; + var options1 = {}; options1[prop] = function() {}; $animate.enter(element, parent, null, options1); - expect(options1[prop]).toBeFalsy(); + expect(element.attr('class')).toEqual(startingCssClasses); + $rootScope.$digest(); var options2 = {}; options2[prop] = true; $animate.leave(element, options2); - expect(options2[prop]).toBeFalsy(); + expect(element.attr('class')).toEqual(startingCssClasses); + $rootScope.$digest(); capturedAnimation = null; @@ -170,11 +192,15 @@ describe("animations", function() { var options3 = {}; if (prop === 'removeClass') { element.addClass('fatias'); + startingCssClasses = element.attr('class'); } options3[prop] = ['fatias']; $animate.enter(element, parent, null, options3); - expect(options3[prop]).toBe('fatias'); + + $rootScope.$digest(); + + expect(element.attr('class')).not.toEqual(startingCssClasses); }); }); diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index 8f6cde838b55..feb28e581456 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -562,5 +562,50 @@ describe('ngAnimate integration tests', function() { } }); }); + + it("should not alter the provided options values in anyway throughout the animation", function() { + var animationSpy = jasmine.createSpy(); + module(function($animateProvider) { + $animateProvider.register('.this-animation', function() { + return { + enter: function(element, done) { + animationSpy(); + done(); + } + }; + }); + }); + + inject(function($animate, $rootScope, $compile) { + element = jqLite('
    '); + var child = jqLite('
    '); + + var initialOptions = { + from: { height: '50px' }, + to: { width: '100px' }, + addClass: 'one', + removeClass: 'two' + }; + + var copiedOptions = copy(initialOptions); + expect(copiedOptions).toEqual(initialOptions); + + html(element); + $compile(element)($rootScope); + + $animate.enter(child, element, null, copiedOptions); + $rootScope.$digest(); + expect(copiedOptions).toEqual(initialOptions); + + $animate.flush(); + expect(copiedOptions).toEqual(initialOptions); + + expect(child).toHaveClass('one'); + expect(child).not.toHaveClass('two'); + + expect(child.attr('style')).toContain('100px'); + expect(child.attr('style')).toContain('50px'); + }); + }); }); }); From be01cebfae9ca2383105e535820442b39a96b240 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 1 Dec 2015 18:04:16 +0100 Subject: [PATCH 128/354] fix(ngAnimate): ignore children without animation data when closing them During parent structural animations, ongoing animations on child elements are closed. These child elements are identified by their data-ng-animate attribute. If an element is the clone of an animating element, it might have this attribute, but no animation runner associated with it, so we need to ignore it. Fixes #11992 Closes #13424 --- src/ngAnimate/animateQueue.js | 16 +++---- test/ngAnimate/animateSpec.js | 85 ++++++++++++++++++++++------------- 2 files changed, 62 insertions(+), 39 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 0d22adc35c40..0fdadd508609 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -512,15 +512,15 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { forEach(children, function(child) { var state = parseInt(child.getAttribute(NG_ANIMATE_ATTR_NAME)); var animationDetails = activeAnimationsLookup.get(child); - switch (state) { - case RUNNING_STATE: - animationDetails.runner.end(); - /* falls through */ - case PRE_DIGEST_STATE: - if (animationDetails) { + if (animationDetails) { + switch (state) { + case RUNNING_STATE: + animationDetails.runner.end(); + /* falls through */ + case PRE_DIGEST_STATE: activeAnimationsLookup.remove(child); - } - break; + break; + } } }); } diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 429b0679a527..cdc91a59312d 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -834,47 +834,70 @@ describe("animations", function() { expect(capturedAnimation[0]).toBe(element); })); - it('should skip all pre-digest queued child animations when a parent structural animation is triggered', - inject(function($rootScope, $rootElement, $animate) { + describe('when a parent structural animation is triggered:', function() { - parent.append(element); + it('should skip all pre-digest queued child animations', + inject(function($rootScope, $rootElement, $animate) { - $animate.addClass(element, 'rumlow'); - $animate.move(parent, null, parent2); + parent.append(element); - expect(capturedAnimation).toBeFalsy(); - expect(capturedAnimationHistory.length).toBe(0); - $rootScope.$digest(); + $animate.addClass(element, 'rumlow'); + $animate.move(parent, null, parent2); - expect(capturedAnimation[0]).toBe(parent); - expect(capturedAnimationHistory.length).toBe(1); - })); + expect(capturedAnimation).toBeFalsy(); + expect(capturedAnimationHistory.length).toBe(0); + $rootScope.$digest(); - it('should end all ongoing post-digest child animations when a parent structural animation is triggered', - inject(function($rootScope, $rootElement, $animate) { + expect(capturedAnimation[0]).toBe(parent); + expect(capturedAnimationHistory.length).toBe(1); + })); - parent.append(element); + it('should end all ongoing post-digest child animations', + inject(function($rootScope, $rootElement, $animate) { - $animate.addClass(element, 'rumlow'); - var isCancelled = false; - overriddenAnimationRunner = extend(defaultFakeAnimationRunner, { - end: function() { - isCancelled = true; - } - }); + parent.append(element); - $rootScope.$digest(); - expect(capturedAnimation[0]).toBe(element); - expect(isCancelled).toBe(false); + $animate.addClass(element, 'rumlow'); + var isCancelled = false; + overriddenAnimationRunner = extend(defaultFakeAnimationRunner, { + end: function() { + isCancelled = true; + } + }); - // restore the default - overriddenAnimationRunner = defaultFakeAnimationRunner; - $animate.move(parent, null, parent2); - $rootScope.$digest(); - expect(capturedAnimation[0]).toBe(parent); + $rootScope.$digest(); + expect(capturedAnimation[0]).toBe(element); + expect(isCancelled).toBe(false); - expect(isCancelled).toBe(true); - })); + // restore the default + overriddenAnimationRunner = defaultFakeAnimationRunner; + $animate.move(parent, null, parent2); + $rootScope.$digest(); + expect(capturedAnimation[0]).toBe(parent); + + expect(isCancelled).toBe(true); + })); + + it('should ignore children that have animation data-attributes but no animation data', + inject(function($rootScope, $rootElement, $animate) { + + parent.append(element); + + $animate.addClass(element, 'rumlow'); + + $rootScope.$digest(); + expect(capturedAnimation[0]).toBe(element); + + // If an element is cloned during an animation, the clone has the data-attributes indicating + // an animation + var clone = element.clone(); + parent.append(clone); + + $animate.move(parent, null, parent2); + $rootScope.$digest(); + expect(capturedAnimation[0]).toBe(parent); + })); + }); it('should not end any child animations if a parent class-based animation is issued', inject(function($rootScope, $rootElement, $animate) { From c5bf9daef6dfdb3e4a2942c21155a9f67d92e237 Mon Sep 17 00:00:00 2001 From: Utsav Shah Date: Thu, 3 Dec 2015 10:30:48 -0600 Subject: [PATCH 129/354] fix($http): throw if url passed is not a string Throw to prevent hard to debug errors in functions that are called later. Fixes #12925 Closes #13444 --- src/ng/http.js | 4 ++++ test/ng/httpSpec.js | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/src/ng/http.js b/src/ng/http.js index 09383a409bbd..c3ba1120fde4 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -918,6 +918,10 @@ function $HttpProvider() { throw minErr('$http')('badreq', 'Http request configuration must be an object. Received: {0}', requestConfig); } + if (!isString(requestConfig.url)) { + throw minErr('$http')('badreq', 'Http request configuration url must be a string. Received: {0}', requestConfig.url); + } + var config = extend({ method: 'get', transformRequest: defaults.transformRequest, diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js index 7942dd9d567e..56424dff8e56 100644 --- a/test/ng/httpSpec.js +++ b/test/ng/httpSpec.js @@ -302,6 +302,13 @@ describe('$http', function() { }).toThrowMinErr('$http','badreq', 'Http request configuration must be an object. Received: /url'); }); + it('should throw error if the request configuration url is not a string', function() { + expect(function() { + $http({url: false}); + }).toThrowMinErr('$http','badreq', 'Http request configuration url must be a string. Received: false'); + }); + + it('should send GET requests if no method specified', function() { $httpBackend.expect('GET', '/url').respond(''); $http({url: '/url'}); From 37b6ed32254a3aba49cc81953b366d56ff7950c2 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 3 Dec 2015 23:46:06 +0100 Subject: [PATCH 130/354] docs(ngModelController): improve $rollbackViewValue description & example The example has been expanded to make it easier to provoke the behavior that the description is talking about (rollbackViewValue and programmatic model updates) Related #13340 --- src/ng/directive/ngModel.js | 75 +++++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 24 deletions(-) diff --git a/src/ng/directive/ngModel.js b/src/ng/directive/ngModel.js index 0d18f07c8d07..fe99e136169b 100644 --- a/src/ng/directive/ngModel.js +++ b/src/ng/directive/ngModel.js @@ -435,11 +435,14 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$ * which may be caused by a pending debounced event or because the input is waiting for a some * future event. * - * If you have an input that uses `ng-model-options` to set up debounced events or events such - * as blur you can have a situation where there is a period when the `$viewValue` - * is out of synch with the ngModel's `$modelValue`. + * If you have an input that uses `ng-model-options` to set up debounced updates or updates that + * depend on special events such as blur, you can have a situation where there is a period when + * the `$viewValue` is out of sync with the ngModel's `$modelValue`. * - * In this case, you can run into difficulties if you try to update the ngModel's `$modelValue` + * In this case, you can use `$rollbackViewValue()` to manually cancel the debounced / future update + * and reset the input to the last committed view value. + * + * It is also possible that you run into difficulties if you try to update the ngModel's `$modelValue` * programmatically before these debounced/future events have resolved/occurred, because Angular's * dirty checking mechanism is not able to tell whether the model has actually changed or not. * @@ -452,39 +455,63 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$ * angular.module('cancel-update-example', []) * * .controller('CancelUpdateController', ['$scope', function($scope) { - * $scope.resetWithCancel = function(e) { - * if (e.keyCode == 27) { - * $scope.myForm.myInput1.$rollbackViewValue(); - * $scope.myValue = ''; - * } - * }; - * $scope.resetWithoutCancel = function(e) { + * $scope.model = {}; + * + * $scope.setEmpty = function(e, value, rollback) { * if (e.keyCode == 27) { - * $scope.myValue = ''; + * e.preventDefault(); + * if (rollback) { + * $scope.myForm[value].$rollbackViewValue(); + * } + * $scope.model[value] = ''; * } * }; * }]); * * *
    - *

    Try typing something in each input. See that the model only updates when you - * blur off the input. - *

    - *

    Now see what happens if you start typing then press the Escape key

    + *

    Both of these inputs are only updated if they are blurred. Hitting escape should + * empty them. Follow these steps and observe the difference:

    + *
      + *
    1. Type something in the input. You will see that the model is not yet updated
    2. + *
    3. Press the Escape key. + *
        + *
      1. In the first example, nothing happens, because the model is already '', and no + * update is detected. If you blur the input, the model will be set to the current view. + *
      2. + *
      3. In the second example, the pending update is cancelled, and the input is set back + * to the last committed view value (''). Blurring the input does nothing. + *
      4. + *
      + *
    4. + *
    * *
    - *

    With $rollbackViewValue()

    - *
    - * myValue: "{{ myValue }}" + *
    + *

    Without $rollbackViewValue():

    + * + * value1: "{{ model.value1 }}" + *
    * - *

    Without $rollbackViewValue()

    - *
    - * myValue: "{{ myValue }}" + *
    + *

    With $rollbackViewValue():

    + * + * value2: "{{ model.value2 }}" + *
    *
    *
    *
    + + div { + display: table-cell; + } + div:nth-child(1) { + padding-right: 30px; + } + + * */ this.$rollbackViewValue = function() { From 55ac9853730f3afb6f0f9064dd273521174ca56b Mon Sep 17 00:00:00 2001 From: Marcus Nielsen Date: Fri, 4 Dec 2015 15:02:08 +0100 Subject: [PATCH 131/354] docs($resource): fix mixed singular/plural "any of the parameter value" contains plural (any of the) as well as singular (value). Fixed to be singular to match the rest of the text block. Closes #13448 --- src/ngResource/resource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 565b104ba074..a0f7274e9a50 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -97,7 +97,7 @@ function shallowClearAndCopy(src, dst) { * can escape it with `/\.`. * * @param {Object=} paramDefaults Default values for `url` parameters. These can be overridden in - * `actions` methods. If any of the parameter value is a function, it will be executed every time + * `actions` methods. If a parameter value is a function, it will be executed every time * when a param value needs to be obtained for a request (unless the param was overridden). * * Each key value in the parameter object is first bound to url template if present and then any From 43c4029c8a65138d6ec228fb3b8779e74afb45b7 Mon Sep 17 00:00:00 2001 From: Mil4n Date: Sat, 5 Dec 2015 12:31:45 +0100 Subject: [PATCH 132/354] docs(tutorial/step_08): fix tense The original statement is in the past tense (as if it were referring to a previous step of the tutorial). The mentioned changes, however, are being done in this setp. Closes #13452 --- docs/content/tutorial/step_08.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_08.ngdoc b/docs/content/tutorial/step_08.ngdoc index e13b8db0ed6e..6e5ef9abd8f7 100644 --- a/docs/content/tutorial/step_08.ngdoc +++ b/docs/content/tutorial/step_08.ngdoc @@ -12,8 +12,8 @@ phone in the phone list. * When you click on a phone on the list, the phone details page with phone-specific information is displayed. -To implement the phone details view we used {@link ng.$http $http} to fetch our data, and we -fleshed out the `phone-detail.html` view template. +To implement the phone details view we are going to use {@link ng.$http $http} to fetch our data, +and then flesh out the `phone-detail.html` view template.
    From d2b08a0465b93394d54db08895c38b8c9d6e928f Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 7 Dec 2015 13:19:33 +0100 Subject: [PATCH 133/354] docs(changelog, guide/migration): add BC notes for observing unset attributes Closes #11163 --- CHANGELOG.md | 31 ++++++++++++++++++++++++++++-- docs/content/guide/migration.ngdoc | 30 +++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 82c5deb05ad2..6b40a381d05a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -313,8 +313,6 @@ the built-in pattern validator: ``` - - # 1.4.5 permanent-internship (2015-08-28) @@ -2588,7 +2586,36 @@ We also added a documentation page focused on security, which contains some of t [#9578](https://github.com/angular/angular.js/issues/9578), [#9751](https://github.com/angular/angular.js/issues/9751)) +## Breaking Changes +- **$observe:** Due to [531a8de7](https://github.com/angular/angular.js/commit/531a8de72c439d8ddd064874bf364c00cedabb11), +observers no longer register on undefined attributes. For example, if you were using `$observe` on +an absent optional attribute to set a default value, the following would not work anymore: + +```html + +``` + +```js +// link function for directive myDir +link: function(scope, element, attr) { + attr.$observe('myAttr', function(newVal) { + scope.myValue = newVal ? newVal : 'myDefaultValue'; + }) +} +``` + +Instead, check if the attribute is set before registering the observer: + +```js +link: function(scope, element, attr) { + if (attr.myAttr) { + // register the observer + } else { + // set the default + } +} +``` # 1.3.0 superluminal-nudge (2014-10-13) diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index 7225a960fb26..7686b9d088ef 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -584,6 +584,36 @@ After: }; }); + - due to [531a8de7](https://github.com/angular/angular.js/commit/531a8de72c439d8ddd064874bf364c00cedabb11), +`$observe` no longer registers on undefined attributes. For example, if you were using `$observe` on +an absent optional attribute to set a default value, the following would not work anymore: + +```html + +``` + +```js +// Link function for directive myDir +link: function(scope, element, attr) { + attr.$observe('myAttr', function(newVal) { + scope.myValue = newVal ? newVal : 'myDefaultValue'; + }) +} +``` + +Instead, check if the attribute is set before registering the observer: + +```js +link: function(scope, element, attr) { + if (attr.myAttr) { + // register the observer + } else { + // set the default + } +} +``` + + From f53a7f62bbcf5df201849a15836276e4d6dc7cb1 Mon Sep 17 00:00:00 2001 From: Hovhannes Babayan Date: Wed, 2 Dec 2015 15:01:14 +0300 Subject: [PATCH 134/354] docs(guide/Expressions): note that new operator is unavailable You cannot create new objects inside Angular expressions. For example: {{ new Date() }} expression fails. --- docs/content/guide/expression.ngdoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc index b5d0d4c7a9f5..b0e9816740ee 100644 --- a/docs/content/guide/expression.ngdoc +++ b/docs/content/guide/expression.ngdoc @@ -35,7 +35,9 @@ Angular expressions are like JavaScript expressions with the following differenc * **No RegExp Creation With Literal Notation:** You cannot create regular expressions in an Angular expression. - * **No Comma And Void Operators:** You cannot use `,` or `void` in an Angular expression. + * **No Object Creation With New Operator:** You cannot use `new` operator in an Angular expression. + + * **No Comma And Void Operators:** You cannot use `,` or `void` operators in an Angular expression. * **Filters:** You can use {@link guide/filter filters} within expressions to format data before displaying it. From 158f1aec8606004e94d5c529d916aab250bbc328 Mon Sep 17 00:00:00 2001 From: zainengineer Date: Sat, 28 Nov 2015 19:43:58 +1030 Subject: [PATCH 135/354] docs(orderBy): make examples consistent Updated example which manually injects the filter. It matches sibling example in functionality. Also put html, js and css into separate files. Also change anchors to buttons. Closes #13402 --- src/ng/filter/orderBy.js | 154 ++++++++++++++++++++++----------------- 1 file changed, 87 insertions(+), 67 deletions(-) diff --git a/src/ng/filter/orderBy.js b/src/ng/filter/orderBy.js index 2e9e946d0c75..008c0ab70756 100644 --- a/src/ng/filter/orderBy.js +++ b/src/ng/filter/orderBy.js @@ -41,17 +41,6 @@ * `reverse` is not set, which means it defaults to `false`. -
    @@ -67,6 +56,17 @@
    + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', function($scope) { + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + }]); +
    * * The predicate and reverse parameters can be controlled dynamically through scope properties, @@ -74,49 +74,24 @@ * @example - -
    Sorting predicate = {{predicate}}; reverse = {{reverse}}

    - [ unsorted ] + - - - + + + @@ -126,6 +101,31 @@
    - Name - - - Phone Number - - - Age - - + + + + + + + + +
    {{friend.name}}
    + + angular.module('orderByExample', []) + .controller('ExampleController', ['$scope', function($scope) { + $scope.friends = + [{name:'John', phone:'555-1212', age:10}, + {name:'Mary', phone:'555-9876', age:19}, + {name:'Mike', phone:'555-4321', age:21}, + {name:'Adam', phone:'555-5678', age:35}, + {name:'Julie', phone:'555-8765', age:29}]; + $scope.predicate = 'age'; + $scope.reverse = true; + $scope.order = function(predicate) { + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.predicate = predicate; + }; + }]); + + + .sortorder:after { + content: '\25b2'; + } + .sortorder.reverse:after { + content: '\25bc'; + } +
    * * It's also possible to call the orderBy filter manually, by injecting `$filter`, retrieving the @@ -137,21 +137,30 @@ * @example -
    - - - - - - - - - - - -
    Name - (^)Phone NumberAge
    {{friend.name}}{{friend.phone}}{{friend.age}}
    -
    +
    +
    Sorting predicate = {{predicate}}; reverse = {{reverse}}
    + + + + + + + + + + + +
    + + + + + + + + +
    {{friend.name}}{{friend.phone}}{{friend.age}}
    +
    @@ -165,12 +174,23 @@ { name: 'Adam', phone: '555-5678', age: 35 }, { name: 'Julie', phone: '555-8765', age: 29 } ]; - $scope.order = function(predicate, reverse) { - $scope.friends = orderBy($scope.friends, predicate, reverse); + $scope.order = function(predicate) { + $scope.predicate = predicate; + $scope.reverse = ($scope.predicate === predicate) ? !$scope.reverse : false; + $scope.friends = orderBy($scope.friends, predicate, $scope.reverse); }; - $scope.order('-age',false); + $scope.order('age', true); }]); + + + .sortorder:after { + content: '\25b2'; + } + .sortorder.reverse:after { + content: '\25bc'; + } +
    */ orderByFilter.$inject = ['$parse']; From e45f9b66fa08bfda2cbb04fcbbb49fa1fb47701f Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 7 Dec 2015 14:24:51 +0100 Subject: [PATCH 136/354] docs(guide/Unit Testing): fix typo Closes #13227 --- docs/content/guide/unit-testing.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/unit-testing.ngdoc b/docs/content/guide/unit-testing.ngdoc index e17ca02d4bee..bcc7cf04dbd7 100644 --- a/docs/content/guide/unit-testing.ngdoc +++ b/docs/content/guide/unit-testing.ngdoc @@ -359,7 +359,7 @@ element, to which it can then insert the transcluded content into its template. Before compilation: ```html -
    +
    Some transcluded content
    ``` From e26256fb70a6b3883ff1713a78ef72244ed5aaf6 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Mon, 7 Dec 2015 18:19:24 +0200 Subject: [PATCH 137/354] docs(guide/$location): fix table header formatting Closes #13456 Closes #13459 --- docs/app/assets/css/docs.css | 6 ++++++ docs/content/guide/$location.ngdoc | 8 ++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/docs/app/assets/css/docs.css b/docs/app/assets/css/docs.css index 0bd14d669af8..e72f1c88fe83 100644 --- a/docs/app/assets/css/docs.css +++ b/docs/app/assets/css/docs.css @@ -589,6 +589,12 @@ ul.events > li { vertical-align: top; } +.table > tbody > tr.head > td, +.table > tbody > tr.head > th { + border-bottom: 2px solid #ddd; + padding-top: 50px; +} + @media only screen and (min-width: 769px) and (max-width: 991px) { .main-body-grid { margin-top: 160px; diff --git a/docs/content/guide/$location.ngdoc b/docs/content/guide/$location.ngdoc index c54cc1a216d5..03833c06ae26 100644 --- a/docs/content/guide/$location.ngdoc +++ b/docs/content/guide/$location.ngdoc @@ -771,8 +771,8 @@ then uses the information it obtains to compose hashbang URLs (such as - Navigation outside the app - Use lower level API + Navigation outside the app + Use lower level API @@ -786,8 +786,8 @@ then uses the information it obtains to compose hashbang URLs (such as - Read access - Change to + Read access + Change to From 2995b54afdb9a3a2a81b0076a6ac0a9001041163 Mon Sep 17 00:00:00 2001 From: Andy Patterson Date: Mon, 7 Dec 2015 17:02:15 +0000 Subject: [PATCH 138/354] fix(input): add missing chars to URL validation regex Update the list of permitted chars in URLs. Closes #13379 Closes #13460 --- src/ng/directive/input.js | 2 +- test/ng/directive/inputSpec.js | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index e10cda38c217..bcf34b26747e 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -12,7 +12,7 @@ // Regex code is obtained from SO: https://stackoverflow.com/questions/3143070/javascript-regex-iso-datetime#answer-3143231 var ISO_DATE_REGEXP = /\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/; // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987) -var URL_REGEXP = /^[A-Za-z][A-Za-z\d.+-]*:\/*(?:\w+(?::\w+)?@)?[^\s/]+(?::\d+)?(?:\/[\w#!:.?+=&%@\-/]*)?$/; +var URL_REGEXP = /^[A-Za-z][A-Za-z\d.+-]*:\/*(?:\w+(?::\w+)?@)?[^\s/]+(?::\d+)?(?:\/[\w#!:.?+=&%@\-/[\]$'()*,;~]*)?$/; var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4})-(\d{2})-(\d{2})$/; diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 207c71ce56e2..77ee82ec1a00 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -2544,11 +2544,13 @@ describe('input', function() { expect(URL_REGEXP.test('mailto:user@example.com?subject=Foo')).toBe(true); expect(URL_REGEXP.test('r2-d2.c3-p0://localhost/foo')).toBe(true); expect(URL_REGEXP.test('abc:/foo')).toBe(true); + expect(URL_REGEXP.test('http://example.com/path;path')).toBe(true); + expect(URL_REGEXP.test('http://example.com/[]$\'()*,~)')).toBe(true); expect(URL_REGEXP.test('http:')).toBe(false); expect(URL_REGEXP.test('a@B.c')).toBe(false); expect(URL_REGEXP.test('a_B.c')).toBe(false); expect(URL_REGEXP.test('0scheme://example.com')).toBe(false); - expect(URL_REGEXP.test('http://example.com:9999/~~``')).toBe(false); + expect(URL_REGEXP.test('http://example.com:9999/``')).toBe(false); }); }); }); From 8709539d4c90c785af944bd0ce6c9c082f42f22f Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 8 Dec 2015 12:57:27 +0100 Subject: [PATCH 139/354] docs(guide/migration): add info for 1.3 checkbox breaking change Introduced in commit https://github.com/angular/angular.js/commit/c90cefe16142d973a123e945fc9058e8a874c357 Closes #13464 --- docs/content/guide/migration.ngdoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/content/guide/migration.ngdoc b/docs/content/guide/migration.ngdoc index 7686b9d088ef..507ea7ae3b54 100644 --- a/docs/content/guide/migration.ngdoc +++ b/docs/content/guide/migration.ngdoc @@ -686,8 +686,15 @@ $scope.resetWithCancel = function (e) { [#5864](https://github.com/angular/angular.js/issues/5864)) +- {@link input[checkbox] `input[checkbox]`} now supports constant expressions in `ngTrueValue` and + `ngFalseValue`, making it now possible to e.g. use boolean and integer values. Previously, these attributes would + always be treated as strings, whereas they are now parsed as expressions, and will throw if an expression + is non-constant. To convert non-constant strings into constant expressions, simply wrap them in an + extra pair of quotes, like so: + `` + See [c90cefe1614](https://github.com/angular/angular.js/commit/c90cefe16142d973a123e945fc9058e8a874c357) ## Scopes and Digests (`$scope`) From ff228fb524a45f0e736be23e19b7e99072d8dba8 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Mon, 7 Dec 2015 23:19:11 +0200 Subject: [PATCH 140/354] revert: fix($resource): allow XHR request to be cancelled via timeout promise This reverts commit 7170f9d9ca765c578f8d3eb4699860a9330a0a11. Fixes part of #13393. --- src/ngResource/resource.js | 13 ++----------- test/ngResource/resourceSpec.js | 32 +------------------------------- 2 files changed, 3 insertions(+), 42 deletions(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index a0f7274e9a50..e67cd01dce47 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -568,17 +568,8 @@ angular.module('ngResource', ['ng']). undefined; forEach(action, function(value, key) { - switch (key) { - default: - httpConfig[key] = copy(value); - break; - case 'params': - case 'isArray': - case 'interceptor': - break; - case 'timeout': - httpConfig[key] = value; - break; + if (key != 'params' && key != 'isArray' && key != 'interceptor') { + httpConfig[key] = copy(value); } }); diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js index 2ac1454bd48b..79450e4f24ea 100644 --- a/test/ngResource/resourceSpec.js +++ b/test/ngResource/resourceSpec.js @@ -1308,7 +1308,7 @@ describe("resource", function() { }); describe('resource', function() { - var $httpBackend, $resource, $q; + var $httpBackend, $resource; beforeEach(module(function($exceptionHandlerProvider) { $exceptionHandlerProvider.mode('log'); @@ -1319,7 +1319,6 @@ describe('resource', function() { beforeEach(inject(function($injector) { $httpBackend = $injector.get('$httpBackend'); $resource = $injector.get('$resource'); - $q = $injector.get('$q'); })); @@ -1357,34 +1356,5 @@ describe('resource', function() { ); }); - it('should cancel the request if timeout promise is resolved', function() { - var canceler = $q.defer(); - - $httpBackend.when('GET', '/CreditCard').respond({data: '123'}); - - var CreditCard = $resource('/CreditCard', {}, { - query: { - method: 'GET', - timeout: canceler.promise - } - }); - - CreditCard.query(); - - canceler.resolve(); - expect($httpBackend.flush).toThrow(new Error("No pending request to flush !")); - - canceler = $q.defer(); - CreditCard = $resource('/CreditCard', {}, { - query: { - method: 'GET', - timeout: canceler.promise - } - }); - - CreditCard.query(); - expect($httpBackend.flush).not.toThrow(); - }); - }); From de193422a36c21c490a4adbf4c4c32818b0efa18 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 8 Dec 2015 15:09:24 +0200 Subject: [PATCH 141/354] refactor($resource): change if-block to switch-block for readability --- src/ngResource/resource.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index e67cd01dce47..aed5033edc5f 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -568,8 +568,14 @@ angular.module('ngResource', ['ng']). undefined; forEach(action, function(value, key) { - if (key != 'params' && key != 'isArray' && key != 'interceptor') { - httpConfig[key] = copy(value); + switch (key) { + default: + httpConfig[key] = copy(value); + break; + case 'params': + case 'isArray': + case 'interceptor': + break; } }); From 0292e6a1a827c059ee6e3e9dce95892437f1a186 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 8 Dec 2015 15:17:01 +0200 Subject: [PATCH 142/354] docs($resource): add note about _promises as timeout_ not being supported Fixes part of #13393. --- src/ngResource/resource.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index aed5033edc5f..19bc84dd9233 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -150,8 +150,11 @@ function shallowClearAndCopy(src, dst) { * GET request, otherwise if a cache instance built with * {@link ng.$cacheFactory $cacheFactory}, this cache will be used for * caching. - * - **`timeout`** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} that - * should abort the request when resolved. + * - **`timeout`** – `{number}` – timeout in milliseconds.
    + * **Note:** In contrast to {@link ng.$http#usage $http.config}, {@link ng.$q promises} are + * **not** supported in $resource, because the same value would be used for multiple requests. + * If you need support for cancellable $resource actions, you should upgrade to version 1.5 or + * higher. * - **`withCredentials`** - `{boolean}` - whether to set the `withCredentials` flag on the * XHR object. See * [requests with credentials](https://developer.mozilla.org/en/http_access_control#section_5) From 474865242c89ba3e8143f0cd52f8c292979ea730 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 8 Dec 2015 15:23:17 +0200 Subject: [PATCH 143/354] fix($resource): don't allow using promises as `timeout` and log a warning Promises never worked correctly as values for `timeout` in `$resource`, because the same value has to be re-used for multiple requests (and it is not possible to `angular.copy()` a promise). Now (in addition to ignoring a non-numeric `timeout`), a warning is logged to the console using `$log.debug()`. Partly fixes #13393. BREAKING CHANGE: Possible breaking change for users who updated their code to provide a `timeout` promise for a `$resource` request in version 1.4.8. Up to v1.4.7 (included), using a promise as a timeout in `$resource`, would silently fail (i.e. have no effect). In v1.4.8, using a promise as timeout would have the (buggy) behaviour described in https://github.com/angular/angular.js/pull/12657#issuecomment-152108887 (i.e. it will work as expected for the first time you resolve the promise and will cancel all subsequent requests after that - one has to re-create the resource class. This is feature was not documented.) With this change, using a promise as timeout in 1.4.9 onwsards is not allowed. It will log a warning and ignore the timeout value. If you need support for cancellable `$resource` actions, you should upgrade to version 1.5 or higher. --- src/ngResource/resource.js | 12 +++++++++- test/ngResource/resourceSpec.js | 42 +++++++++++++++++++++++++++++++++ 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 19bc84dd9233..514e4c81b72b 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -368,7 +368,7 @@ angular.module('ngResource', ['ng']). } }; - this.$get = ['$http', '$q', function($http, $q) { + this.$get = ['$http', '$log', '$q', function($http, $log, $q) { var noop = angular.noop, forEach = angular.forEach, @@ -579,6 +579,16 @@ angular.module('ngResource', ['ng']). case 'isArray': case 'interceptor': break; + case 'timeout': + if (value && !angular.isNumber(value)) { + $log.debug('ngResource:\n' + + ' Only numeric values are allowed as `timeout`.\n' + + ' Promises are not supported in $resource, because the same value would ' + + 'be used for multiple requests.\n' + + ' If you need support for cancellable $resource actions, you should ' + + 'upgrade to version 1.5 or higher.'); + } + break; } }); diff --git a/test/ngResource/resourceSpec.js b/test/ngResource/resourceSpec.js index 79450e4f24ea..560f71ac1f3d 100644 --- a/test/ngResource/resourceSpec.js +++ b/test/ngResource/resourceSpec.js @@ -1355,6 +1355,48 @@ describe('resource', function() { /^\[\$resource:badcfg\] Error in resource configuration for action `get`\. Expected response to contain an object but got an array \(Request: GET \/Customer\/123\)/ ); }); +}); + +describe('resource with promises as `timeout`', function() { + var httpSpy; + var $httpBackend; + var $resource; + + beforeEach(module('ngResource', function($provide) { + $provide.decorator('$http', function($delegate) { + httpSpy = jasmine.createSpy('$http').andCallFake($delegate); + return httpSpy; + }); + })); + + beforeEach(inject(function(_$httpBackend_, _$resource_) { + $httpBackend = _$httpBackend_; + $resource = _$resource_; + })); + it('should ignore non-numeric timeouts in actions and log a $debug message', + inject(function($log, $q) { + spyOn($log, 'debug'); + $httpBackend.whenGET('/CreditCard').respond({}); + + var CreditCard = $resource('/CreditCard', {}, { + get: { + method: 'GET', + timeout: $q.defer().promise + } + }); + + CreditCard.get(); + $httpBackend.flush(); + expect(httpSpy).toHaveBeenCalledOnce(); + expect(httpSpy.calls[0].args[0].timeout).toBeUndefined(); + expect($log.debug).toHaveBeenCalledOnceWith('ngResource:\n' + + ' Only numeric values are allowed as `timeout`.\n' + + ' Promises are not supported in $resource, because the same value would ' + + 'be used for multiple requests.\n' + + ' If you need support for cancellable $resource actions, you should ' + + 'upgrade to version 1.5 or higher.'); + }) + ); }); From 33cc75e6fc8f776bc068f7d9bde4ac47ff060373 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 8 Dec 2015 13:57:18 -0800 Subject: [PATCH 144/354] chore(angularFiles): the animateRunner.js file doesn't exist for ngAnimate anymore --- angularFiles.js | 1 - 1 file changed, 1 deletion(-) diff --git a/angularFiles.js b/angularFiles.js index e3f41badc9bc..c94f44be7adb 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -100,7 +100,6 @@ var angularFiles = { 'src/ngAnimate/animateJs.js', 'src/ngAnimate/animateJsDriver.js', 'src/ngAnimate/animateQueue.js', - 'src/ngAnimate/animateRunner.js', 'src/ngAnimate/animation.js', 'src/ngAnimate/module.js' ], From c98e08fd871fa5df39c66e9700345c2ae0f21bc0 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 7 Dec 2015 20:11:06 +0100 Subject: [PATCH 145/354] fix($animateCss): remove animation end event listeners on close Previously the transition/animation end events were not removed when the animation was closed. This normally didn't matter, because the close function knows the animations are closed and won't do work twice. However, the listeners themselves do computation that could fail when the event was missing some data, for example when the event was triggered instead of natural. Closes #10387 --- src/ngAnimate/animateCss.js | 57 ++++++++------- test/ngAnimate/.jshintrc | 6 +- test/ngAnimate/animateCssSpec.js | 119 ++++++++++++++++++++++++++++--- 3 files changed, 145 insertions(+), 37 deletions(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 664583198624..b6f2aba26479 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -474,6 +474,8 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { var maxDelayTime; var maxDuration; var maxDurationTime; + var startTime; + var events = []; if (options.duration === 0 || (!$sniffer.animations && !$sniffer.transitions)) { return closeAndReturnNoopAnimator(); @@ -747,6 +749,11 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { options.onDone(); } + // Remove the transitionend / animationend listener(s) + if (events) { + element.off(events.join(' '), onAnimationProgress); + } + // if the preparation function fails then the promise is not setup if (runner) { runner.complete(!rejected); @@ -782,6 +789,30 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { }; } + function onAnimationProgress(event) { + event.stopPropagation(); + var ev = event.originalEvent || event; + var timeStamp = ev.$manualTimeStamp || ev.timeStamp || Date.now(); + + /* Firefox (or possibly just Gecko) likes to not round values up + * when a ms measurement is used for the animation */ + var elapsedTime = parseFloat(ev.elapsedTime.toFixed(ELAPSED_TIME_MAX_DECIMAL_PLACES)); + + /* $manualTimeStamp is a mocked timeStamp value which is set + * within browserTrigger(). This is only here so that tests can + * mock animations properly. Real events fallback to event.timeStamp, + * or, if they don't, then a timeStamp is automatically created for them. + * We're checking to see if the timeStamp surpasses the expected delay, + * but we're using elapsedTime instead of the timeStamp on the 2nd + * pre-condition since animationPauseds sometimes close off early */ + if (Math.max(timeStamp - startTime, 0) >= maxDelayTime && elapsedTime >= maxDuration) { + // we set this flag to ensure that if the transition is paused then, when resumed, + // the animation will automatically close itself since transitions cannot be paused. + animationCompleted = true; + close(); + } + } + function start() { if (animationClosed) return; if (!node.parentNode) { @@ -789,8 +820,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { return; } - var startTime, events = []; - // even though we only pause keyframe animations here the pause flag // will still happen when transitions are used. Only the transition will // not be paused since that is not possible. If the animation ends when @@ -953,30 +982,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { element.removeData(ANIMATE_TIMER_KEY); } } - - function onAnimationProgress(event) { - event.stopPropagation(); - var ev = event.originalEvent || event; - var timeStamp = ev.$manualTimeStamp || ev.timeStamp || Date.now(); - - /* Firefox (or possibly just Gecko) likes to not round values up - * when a ms measurement is used for the animation */ - var elapsedTime = parseFloat(ev.elapsedTime.toFixed(ELAPSED_TIME_MAX_DECIMAL_PLACES)); - - /* $manualTimeStamp is a mocked timeStamp value which is set - * within browserTrigger(). This is only here so that tests can - * mock animations properly. Real events fallback to event.timeStamp, - * or, if they don't, then a timeStamp is automatically created for them. - * We're checking to see if the timeStamp surpasses the expected delay, - * but we're using elapsedTime instead of the timeStamp on the 2nd - * pre-condition since animations sometimes close off early */ - if (Math.max(timeStamp - startTime, 0) >= maxDelayTime && elapsedTime >= maxDuration) { - // we set this flag to ensure that if the transition is paused then, when resumed, - // the animation will automatically close itself since transitions cannot be paused. - animationCompleted = true; - close(); - } - } } }; }]; diff --git a/test/ngAnimate/.jshintrc b/test/ngAnimate/.jshintrc index b307fb405952..fcaf04058079 100644 --- a/test/ngAnimate/.jshintrc +++ b/test/ngAnimate/.jshintrc @@ -8,6 +8,10 @@ "applyAnimationStyles": false, "applyAnimationFromStyles": false, "applyAnimationToStyles": false, - "applyAnimationClassesFactory": false + "applyAnimationClassesFactory": false, + "TRANSITIONEND_EVENT": false, + "TRANSITION_PROP": false, + "ANIMATION_PROP": false, + "ANIMATIONEND_EVENT": false } } diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 52182493f61a..4a828ecc372e 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -12,6 +12,16 @@ describe("ngAnimate $animateCss", function() { : expect(className).not.toMatch(regex); } + function keyframeProgress(element, duration, delay) { + browserTrigger(element, 'animationend', + { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); + } + + function transitionProgress(element, duration, delay) { + browserTrigger(element, 'transitionend', + { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); + } + var fakeStyle = { color: 'blue' }; @@ -355,16 +365,6 @@ describe("ngAnimate $animateCss", function() { assert.toHaveClass('ng-enter-active'); } - function keyframeProgress(element, duration, delay) { - browserTrigger(element, 'animationend', - { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); - } - - function transitionProgress(element, duration, delay) { - browserTrigger(element, 'transitionend', - { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); - } - beforeEach(inject(function($rootElement, $document) { element = jqLite('
    '); $rootElement.append(element); @@ -1404,6 +1404,105 @@ describe("ngAnimate $animateCss", function() { expect(count.stagger).toBe(2); })); }); + + describe('transitionend/animationend event listeners', function() { + var element, elementOnSpy, elementOffSpy, progress; + + function setStyles(event) { + switch (event) { + case TRANSITIONEND_EVENT: + ss.addRule('.ng-enter', 'transition: 10s linear all;'); + progress = transitionProgress; + break; + case ANIMATIONEND_EVENT: + ss.addRule('.ng-enter', '-webkit-animation: animation 10s;' + + 'animation: animation 10s;'); + progress = keyframeProgress; + break; + } + } + + beforeEach(inject(function($rootElement, $document) { + element = jqLite('
    '); + $rootElement.append(element); + jqLite($document[0].body).append($rootElement); + + elementOnSpy = spyOn(element, 'on').andCallThrough(); + elementOffSpy = spyOn(element, 'off').andCallThrough(); + })); + + they('should remove the $prop event listeners on cancel', + [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { + inject(function($animateCss) { + + setStyles(event); + + var animator = $animateCss(element, { + event: 'enter', + structural: true + }); + + var runner = animator.start(); + triggerAnimationStartFrame(); + + expect(elementOnSpy).toHaveBeenCalledOnce(); + expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); + + runner.cancel(); + + expect(elementOffSpy).toHaveBeenCalledOnce(); + expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); + }); + }); + + they("should remove the $prop event listener when the animation is closed", + [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { + inject(function($animateCss) { + + setStyles(event); + + var animator = $animateCss(element, { + event: 'enter', + structural: true + }); + + var runner = animator.start(); + triggerAnimationStartFrame(); + + expect(elementOnSpy).toHaveBeenCalledOnce(); + expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); + + progress(element, 10); + + expect(elementOffSpy).toHaveBeenCalledOnce(); + expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); + }); + }); + + they("should remove the $prop event listener when the closing timeout occurs", + [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { + inject(function($animateCss, $timeout) { + + setStyles(event); + + var animator = $animateCss(element, { + event: 'enter', + structural: true + }); + + animator.start(); + triggerAnimationStartFrame(); + + expect(elementOnSpy).toHaveBeenCalledOnce(); + expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); + + $timeout.flush(15000); + + expect(elementOffSpy).toHaveBeenCalledOnce(); + expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); + }); + }); + }); }); it('should avoid applying the same cache to an element a follow-up animation is run on the same element', From 85e392f3543ef5285c7e90e843af0ab522cb0531 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 10 Dec 2015 12:16:29 +0100 Subject: [PATCH 146/354] fix(ngOptions): don't skip optgroup elements with value === '' Internet Explorer 11 returns '' for optgroup elements without a value attribute. We only want to skip option elements with value '' Fixes #13487 Closes #13489 --- src/ng/directive/ngOptions.js | 2 +- test/ng/directive/ngOptionsSpec.js | 129 +++++++++++++++++++++++++++-- 2 files changed, 123 insertions(+), 8 deletions(-) diff --git a/src/ng/directive/ngOptions.js b/src/ng/directive/ngOptions.js index 09939af9fbf5..bb29b7cec1c7 100644 --- a/src/ng/directive/ngOptions.js +++ b/src/ng/directive/ngOptions.js @@ -647,7 +647,7 @@ var ngOptionsDirective = ['$compile', '$parse', function($compile, $parse) { (current === emptyOption_ || current === unknownOption_ || current.nodeType === NODE_TYPE_COMMENT || - current.value === '')) { + (nodeName_(current) === 'option' && current.value === ''))) { current = current.nextSibling; } } diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js index 21c86b55d64c..b234312e906d 100644 --- a/test/ng/directive/ngOptionsSpec.js +++ b/test/ng/directive/ngOptionsSpec.js @@ -1,6 +1,6 @@ 'use strict'; -describe('ngOptions', function() { +ddescribe('ngOptions', function() { var scope, formElement, element, $compile, linkLog; @@ -1553,16 +1553,19 @@ describe('ngOptions', function() { expect(element).toEqualSelectValue(scope.selected); - var first = jqLite(element.find('optgroup')[0]); - var b = jqLite(first.find('option')[0]); - var d = jqLite(first.find('option')[1]); + var optgroups = element.find('optgroup'); + expect(optgroups.length).toBe(2); + + var first = optgroups.eq(0); + var b = first.find('option').eq(0); + var d = first.find('option').eq(1); expect(first.attr('label')).toEqual('first'); expect(b.text()).toEqual('B'); expect(d.text()).toEqual('D'); - var second = jqLite(element.find('optgroup')[1]); - var c = jqLite(second.find('option')[0]); - var e = jqLite(second.find('option')[1]); + var second = optgroups.eq(1); + var c = second.find('option').eq(0); + var e = second.find('option').eq(1); expect(second.attr('label')).toEqual('second'); expect(c.text()).toEqual('C'); expect(e.text()).toEqual('E'); @@ -1575,6 +1578,118 @@ describe('ngOptions', function() { }); + it('should group when the options are available on compile time', function() { + scope.values = [{name: 'C', group: 'first'}, + {name: 'D', group: 'second'}, + {name: 'F', group: 'first'}, + {name: 'G', group: 'second'}]; + scope.selected = scope.values[3]; + + createSelect({ + 'ng-model': 'selected', + 'ng-options': 'item as item.name group by item.group for item in values' + }); + + expect(element).toEqualSelectValue(scope.selected); + + var optgroups = element.find('optgroup'); + expect(optgroups.length).toBe(2); + + var first = optgroups.eq(0); + var c = first.find('option').eq(0); + var f = first.find('option').eq(1); + expect(first.attr('label')).toEqual('first'); + expect(c.text()).toEqual('C'); + expect(f.text()).toEqual('F'); + + var second = optgroups.eq(1); + var d = second.find('option').eq(0); + var g = second.find('option').eq(1); + expect(second.attr('label')).toEqual('second'); + expect(d.text()).toEqual('D'); + expect(g.text()).toEqual('G'); + + scope.$apply(function() { + scope.selected = scope.values[0]; + }); + + expect(element).toEqualSelectValue(scope.selected); + }); + + + it('should group when the options are updated', function() { + var optgroups, one, two, three, alpha, beta, gamma, delta, epsilon; + + createSelect({ + 'ng-model': 'selected', + 'ng-options': 'i.name group by i.cls for i in list' + }); + + scope.list = [ + {cls: 'one', name: 'Alpha'}, + {cls: 'one', name: 'Beta'}, + {cls: 'two', name: 'Gamma'} + ]; + scope.$digest(); + + optgroups = element.find('optgroup'); + expect(optgroups.length).toBe(2); + + one = optgroups.eq(0); + expect(one.children('option').length).toBe(2); + + alpha = one.find('option').eq(0); + beta = one.find('option').eq(1); + expect(one.attr('label')).toEqual('one'); + expect(alpha.text()).toEqual('Alpha'); + expect(beta.text()).toEqual('Beta'); + + two = optgroups.eq(1); + expect(two.children('option').length).toBe(1); + + gamma = two.find('option').eq(0); + expect(two.attr('label')).toEqual('two'); + expect(gamma.text()).toEqual('Gamma'); + + // Remove item from first group, add item to second group, add new group + scope.list.shift(); + scope.list.push( + {cls: 'two', name: 'Delta'}, + {cls: 'three', name: 'Epsilon'} + ); + scope.$digest(); + + optgroups = element.find('optgroup'); + expect(optgroups.length).toBe(3); + + // Group with removed item + one = optgroups.eq(0); + expect(one.children('option').length).toBe(1); + + beta = one.find('option').eq(0); + expect(one.attr('label')).toEqual('one'); + expect(beta.text()).toEqual('Beta'); + + // Group with new item + two = optgroups.eq(1); + expect(two.children('option').length).toBe(2); + + gamma = two.find('option').eq(0); + expect(two.attr('label')).toEqual('two'); + expect(gamma.text()).toEqual('Gamma'); + delta = two.find('option').eq(1); + expect(two.attr('label')).toEqual('two'); + expect(delta.text()).toEqual('Delta'); + + // New group + three = optgroups.eq(2); + expect(three.children('option').length).toBe(1); + + epsilon = three.find('option').eq(0); + expect(three.attr('label')).toEqual('three'); + expect(epsilon.text()).toEqual('Epsilon'); + }); + it('should place non-grouped items in the list where they appear', function() { createSelect({ 'ng-model': 'selected', From 0c1b54f04cf5bd7c1fe42ac49b4fbfdf35c60979 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 8 Dec 2015 14:11:22 +0100 Subject: [PATCH 147/354] fix($animate): correctly access minErr ngMinErr is available during unit tests, but not in the build. There's currently no way to catch these access errors in automated testing. --- src/ngAnimate/shared.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index 634cd90bada4..739077732b01 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -72,6 +72,7 @@ var isPromiseLike = function(p) { return p && p.then ? true : false; }; +var ngMinErr = angular.$$minErr('ng'); function assertArg(arg, name, reason) { if (!arg) { throw ngMinErr('areq', "Argument '{0}' is {1}", (name || '?'), (reason || "required")); From 7caf91300f394f81efc7c065eb910c3d7e0bc5f1 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 10 Dec 2015 13:25:41 +0100 Subject: [PATCH 148/354] test($animate): ensure that pin() arguments are elements --- test/ngAnimate/animateSpec.js | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index cdc91a59312d..713170820d2c 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1431,7 +1431,24 @@ describe("animations", function() { }); })); - it('should allow an element to pinned elsewhere and still be available in animations', + it('should throw if the arguments are not elements', + inject(function($animate, $compile, $document, $rootScope, $rootElement) { + + var element = jqLite('
    '); + + expect(function() { + $animate.pin(element); + }).toThrowMinErr('ng', 'areq', 'Argument \'parentElement\' is not an element'); + + expect(function() { + $animate.pin(null, $rootElement); + }).toThrowMinErr('ng', 'areq', 'Argument \'element\' is not an element'); + + dealoc(element); + })); + + + it('should allow an element to be pinned elsewhere and still be available in animations', inject(function($animate, $compile, $document, $rootElement, $rootScope) { var innerParent = jqLite('
    '); From c4489eb3cb80bf5aa37d40a961598bf59da40b8f Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 10 Dec 2015 18:03:21 -0800 Subject: [PATCH 149/354] revert: fix($animateCss): remove animation end event listeners on close This reverts commit c98e08fd871fa5df39c66e9700345c2ae0f21bc0. This commit was identified as incompatible with ng-material at Google and is causing broken builds there. Proper fix to be investigated once the immediate regression is addressed. --- src/ngAnimate/animateCss.js | 57 +++++++-------- test/ngAnimate/.jshintrc | 6 +- test/ngAnimate/animateCssSpec.js | 119 +++---------------------------- 3 files changed, 37 insertions(+), 145 deletions(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index b6f2aba26479..664583198624 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -474,8 +474,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { var maxDelayTime; var maxDuration; var maxDurationTime; - var startTime; - var events = []; if (options.duration === 0 || (!$sniffer.animations && !$sniffer.transitions)) { return closeAndReturnNoopAnimator(); @@ -749,11 +747,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { options.onDone(); } - // Remove the transitionend / animationend listener(s) - if (events) { - element.off(events.join(' '), onAnimationProgress); - } - // if the preparation function fails then the promise is not setup if (runner) { runner.complete(!rejected); @@ -789,30 +782,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { }; } - function onAnimationProgress(event) { - event.stopPropagation(); - var ev = event.originalEvent || event; - var timeStamp = ev.$manualTimeStamp || ev.timeStamp || Date.now(); - - /* Firefox (or possibly just Gecko) likes to not round values up - * when a ms measurement is used for the animation */ - var elapsedTime = parseFloat(ev.elapsedTime.toFixed(ELAPSED_TIME_MAX_DECIMAL_PLACES)); - - /* $manualTimeStamp is a mocked timeStamp value which is set - * within browserTrigger(). This is only here so that tests can - * mock animations properly. Real events fallback to event.timeStamp, - * or, if they don't, then a timeStamp is automatically created for them. - * We're checking to see if the timeStamp surpasses the expected delay, - * but we're using elapsedTime instead of the timeStamp on the 2nd - * pre-condition since animationPauseds sometimes close off early */ - if (Math.max(timeStamp - startTime, 0) >= maxDelayTime && elapsedTime >= maxDuration) { - // we set this flag to ensure that if the transition is paused then, when resumed, - // the animation will automatically close itself since transitions cannot be paused. - animationCompleted = true; - close(); - } - } - function start() { if (animationClosed) return; if (!node.parentNode) { @@ -820,6 +789,8 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { return; } + var startTime, events = []; + // even though we only pause keyframe animations here the pause flag // will still happen when transitions are used. Only the transition will // not be paused since that is not possible. If the animation ends when @@ -982,6 +953,30 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { element.removeData(ANIMATE_TIMER_KEY); } } + + function onAnimationProgress(event) { + event.stopPropagation(); + var ev = event.originalEvent || event; + var timeStamp = ev.$manualTimeStamp || ev.timeStamp || Date.now(); + + /* Firefox (or possibly just Gecko) likes to not round values up + * when a ms measurement is used for the animation */ + var elapsedTime = parseFloat(ev.elapsedTime.toFixed(ELAPSED_TIME_MAX_DECIMAL_PLACES)); + + /* $manualTimeStamp is a mocked timeStamp value which is set + * within browserTrigger(). This is only here so that tests can + * mock animations properly. Real events fallback to event.timeStamp, + * or, if they don't, then a timeStamp is automatically created for them. + * We're checking to see if the timeStamp surpasses the expected delay, + * but we're using elapsedTime instead of the timeStamp on the 2nd + * pre-condition since animations sometimes close off early */ + if (Math.max(timeStamp - startTime, 0) >= maxDelayTime && elapsedTime >= maxDuration) { + // we set this flag to ensure that if the transition is paused then, when resumed, + // the animation will automatically close itself since transitions cannot be paused. + animationCompleted = true; + close(); + } + } } }; }]; diff --git a/test/ngAnimate/.jshintrc b/test/ngAnimate/.jshintrc index fcaf04058079..b307fb405952 100644 --- a/test/ngAnimate/.jshintrc +++ b/test/ngAnimate/.jshintrc @@ -8,10 +8,6 @@ "applyAnimationStyles": false, "applyAnimationFromStyles": false, "applyAnimationToStyles": false, - "applyAnimationClassesFactory": false, - "TRANSITIONEND_EVENT": false, - "TRANSITION_PROP": false, - "ANIMATION_PROP": false, - "ANIMATIONEND_EVENT": false + "applyAnimationClassesFactory": false } } diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 4a828ecc372e..52182493f61a 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -12,16 +12,6 @@ describe("ngAnimate $animateCss", function() { : expect(className).not.toMatch(regex); } - function keyframeProgress(element, duration, delay) { - browserTrigger(element, 'animationend', - { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); - } - - function transitionProgress(element, duration, delay) { - browserTrigger(element, 'transitionend', - { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); - } - var fakeStyle = { color: 'blue' }; @@ -365,6 +355,16 @@ describe("ngAnimate $animateCss", function() { assert.toHaveClass('ng-enter-active'); } + function keyframeProgress(element, duration, delay) { + browserTrigger(element, 'animationend', + { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); + } + + function transitionProgress(element, duration, delay) { + browserTrigger(element, 'transitionend', + { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); + } + beforeEach(inject(function($rootElement, $document) { element = jqLite('
    '); $rootElement.append(element); @@ -1404,105 +1404,6 @@ describe("ngAnimate $animateCss", function() { expect(count.stagger).toBe(2); })); }); - - describe('transitionend/animationend event listeners', function() { - var element, elementOnSpy, elementOffSpy, progress; - - function setStyles(event) { - switch (event) { - case TRANSITIONEND_EVENT: - ss.addRule('.ng-enter', 'transition: 10s linear all;'); - progress = transitionProgress; - break; - case ANIMATIONEND_EVENT: - ss.addRule('.ng-enter', '-webkit-animation: animation 10s;' + - 'animation: animation 10s;'); - progress = keyframeProgress; - break; - } - } - - beforeEach(inject(function($rootElement, $document) { - element = jqLite('
    '); - $rootElement.append(element); - jqLite($document[0].body).append($rootElement); - - elementOnSpy = spyOn(element, 'on').andCallThrough(); - elementOffSpy = spyOn(element, 'off').andCallThrough(); - })); - - they('should remove the $prop event listeners on cancel', - [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { - inject(function($animateCss) { - - setStyles(event); - - var animator = $animateCss(element, { - event: 'enter', - structural: true - }); - - var runner = animator.start(); - triggerAnimationStartFrame(); - - expect(elementOnSpy).toHaveBeenCalledOnce(); - expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); - - runner.cancel(); - - expect(elementOffSpy).toHaveBeenCalledOnce(); - expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); - }); - }); - - they("should remove the $prop event listener when the animation is closed", - [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { - inject(function($animateCss) { - - setStyles(event); - - var animator = $animateCss(element, { - event: 'enter', - structural: true - }); - - var runner = animator.start(); - triggerAnimationStartFrame(); - - expect(elementOnSpy).toHaveBeenCalledOnce(); - expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); - - progress(element, 10); - - expect(elementOffSpy).toHaveBeenCalledOnce(); - expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); - }); - }); - - they("should remove the $prop event listener when the closing timeout occurs", - [TRANSITIONEND_EVENT, ANIMATIONEND_EVENT], function(event) { - inject(function($animateCss, $timeout) { - - setStyles(event); - - var animator = $animateCss(element, { - event: 'enter', - structural: true - }); - - animator.start(); - triggerAnimationStartFrame(); - - expect(elementOnSpy).toHaveBeenCalledOnce(); - expect(elementOnSpy.mostRecentCall.args[0]).toBe(event); - - $timeout.flush(15000); - - expect(elementOffSpy).toHaveBeenCalledOnce(); - expect(elementOffSpy.mostRecentCall.args[0]).toBe(event); - }); - }); - }); }); it('should avoid applying the same cache to an element a follow-up animation is run on the same element', From 9d28a792196e042943b7ed3e49c0508b9ff452fd Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Thu, 10 Dec 2015 18:36:36 -0800 Subject: [PATCH 150/354] test(ngOptionsSpec): remove ddescribe which caused CI to skip most of unit tests --- test/ng/directive/ngOptionsSpec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ng/directive/ngOptionsSpec.js b/test/ng/directive/ngOptionsSpec.js index b234312e906d..0569cd306b81 100644 --- a/test/ng/directive/ngOptionsSpec.js +++ b/test/ng/directive/ngOptionsSpec.js @@ -1,6 +1,6 @@ 'use strict'; -ddescribe('ngOptions', function() { +describe('ngOptions', function() { var scope, formElement, element, $compile, linkLog; From 4cb8ac61c7574ab4039852c358dd5946268b69fb Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Wed, 2 Dec 2015 16:39:14 +0100 Subject: [PATCH 151/354] fix($animate): allow animations when pinned element is parent element Previously, the animate queue would only detect pinned elements when they were the same element as the to-be-animated element. Related #12617 Closes #13466 --- src/ngAnimate/animateQueue.js | 1 + test/ngAnimate/animateSpec.js | 50 ++++++++++++++++++++++++----------- 2 files changed, 35 insertions(+), 16 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 0fdadd508609..e024c831cf3c 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -586,6 +586,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { parentHost = parentElement.data(NG_ANIMATE_PIN_DATA); if (parentHost) { parentElement = parentHost; + rootElementDetected = true; } } } diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 713170820d2c..dc665ead5398 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1448,28 +1448,46 @@ describe("animations", function() { })); - it('should allow an element to be pinned elsewhere and still be available in animations', - inject(function($animate, $compile, $document, $rootElement, $rootScope) { + they('should animate an element inside a pinned element that is the $prop element', + ['same', 'parent', 'grandparent'], + function(elementRelation) { + inject(function($animate, $compile, $document, $rootElement, $rootScope) { - var innerParent = jqLite('
    '); - jqLite($document[0].body).append(innerParent); - innerParent.append($rootElement); + var pinElement, animateElement; - var element = jqLite('
    '); - jqLite($document[0].body).append(element); + var innerParent = jqLite('
    '); + jqLite($document[0].body).append(innerParent); + innerParent.append($rootElement); - $animate.addClass(element, 'red'); - $rootScope.$digest(); - expect(capturedAnimation).toBeFalsy(); + switch (elementRelation) { + case 'same': + pinElement = jqLite('
    '); + break; + case 'parent': + pinElement = jqLite('
    '); + break; + case 'grandparent': + pinElement = jqLite('
    '); + break; + } - $animate.pin(element, $rootElement); + jqLite($document[0].body).append(pinElement); + animateElement = jqLite($document[0].getElementById('animate')); - $animate.addClass(element, 'blue'); - $rootScope.$digest(); - expect(capturedAnimation).toBeTruthy(); + $animate.addClass(animateElement, 'red'); + $rootScope.$digest(); + expect(capturedAnimation).toBeFalsy(); - dealoc(element); - })); + // Pin the element to the app root to enable animations + $animate.pin(pinElement, $rootElement); + + $animate.addClass(animateElement, 'blue'); + $rootScope.$digest(); + expect(capturedAnimation).toBeTruthy(); + + dealoc(pinElement); + }); + }); it('should adhere to the disabled state of the hosted parent when an element is pinned', inject(function($animate, $compile, $document, $rootElement, $rootScope) { From bab3069dffe50057dd7fa2e3b8379c82ea64c1a4 Mon Sep 17 00:00:00 2001 From: ReneFerwerda Date: Thu, 10 Dec 2015 16:18:42 +0100 Subject: [PATCH 152/354] docs(select): fix typo Closes #13491 --- src/ng/directive/select.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js index b5105589c122..0e0e199d43b9 100644 --- a/src/ng/directive/select.js +++ b/src/ng/directive/select.js @@ -154,7 +154,7 @@ var SelectController = * * The `select` directive is used together with {@link ngModel `ngModel`} to provide data-binding * between the scope and the `` menu is selected, the value of the selected option will be bound From 4d680c3fadeb3db8182075ee0e8bda81bddb3a2e Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Sat, 12 Dec 2015 01:50:30 +0200 Subject: [PATCH 153/354] docs(form): remove mention of interpolated control names not being supported The docs state that interpolation cannot be used in control names. This used to be true, but not anymore. Closes #13520 --- src/ng/directive/form.js | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/src/ng/directive/form.js b/src/ng/directive/form.js index 298c66ea183a..49a6e4158999 100644 --- a/src/ng/directive/form.js +++ b/src/ng/directive/form.js @@ -337,13 +337,9 @@ function FormController(element, attrs, $scope, $animate, $interpolate) { * * In Angular, forms can be nested. This means that the outer form is valid when all of the child * forms are valid as well. However, browsers do not allow nesting of `
    ` elements, so - * Angular provides the {@link ng.directive:ngForm `ngForm`} directive which behaves identically to - * `` but can be nested. This allows you to have nested forms, which is very useful when - * using Angular validation directives in forms that are dynamically generated using the - * {@link ng.directive:ngRepeat `ngRepeat`} directive. Since you cannot dynamically generate the `name` - * attribute of input elements using interpolation, you have to wrap each set of repeated inputs in an - * `ngForm` directive and nest these in an outer `form` element. - * + * Angular provides the {@link ng.directive:ngForm `ngForm`} directive, which behaves identically to + * `form` but can be nested. Nested forms can be useful, for example, if the validity of a sub-group + * of controls needs to be determined. * * # CSS classes * - `ng-valid` is set if the form is valid. From 84a6ef4d214ae617ea6b8577d811b555240c0a8d Mon Sep 17 00:00:00 2001 From: Justas Brazauskas Date: Sat, 12 Dec 2015 00:26:17 +0200 Subject: [PATCH 154/354] docs: fix typos throughout the codebase Closes #13519 --- docs/app/assets/css/docs.css | 2 +- docs/config/templates/runnableExample.template.html | 4 ++-- src/auto/injector.js | 2 +- test/ng/animateSpec.js | 2 +- test/ng/compileSpec.js | 4 ++-- test/ng/directive/formSpec.js | 2 +- test/ng/directive/inputSpec.js | 2 +- test/ng/directive/ngSwitchSpec.js | 2 +- test/ng/filter/filterSpec.js | 2 +- test/ng/httpSpec.js | 4 ++-- test/ng/rootScopeSpec.js | 2 +- test/ngAnimate/animateCssDriverSpec.js | 2 +- test/ngAnimate/animateCssSpec.js | 4 ++-- test/ngMessages/messagesSpec.js | 2 +- test/ngScenario/e2e/widgets.html | 2 +- test/ngTouch/directive/ngClickSpec.js | 2 +- 16 files changed, 20 insertions(+), 20 deletions(-) diff --git a/docs/app/assets/css/docs.css b/docs/app/assets/css/docs.css index e72f1c88fe83..89a15c49285a 100644 --- a/docs/app/assets/css/docs.css +++ b/docs/app/assets/css/docs.css @@ -124,7 +124,7 @@ h1,h2,h3,h4,h5,h6 { font-size:1.2em; padding:0; margin:0; - border-bottom:1px soild #aaa; + border-bottom:1px solid #aaa; margin-bottom:5px; } diff --git a/docs/config/templates/runnableExample.template.html b/docs/config/templates/runnableExample.template.html index 0380c5ed8b5c..c01f1480b7d7 100644 --- a/docs/config/templates/runnableExample.template.html +++ b/docs/config/templates/runnableExample.template.html @@ -1,4 +1,4 @@ -{# Be aware that we need these extra new lines here or marked will not realise that the
    +{# Be aware that we need these extra new lines here or marked will not realize that the
    is HTML and wrap each line in a

    - thus breaking the HTML #}

    @@ -24,5 +24,5 @@
    -{# Be aware that we need these extra new lines here or marked will not realise that the
    +{# Be aware that we need these extra new lines here or marked will not realize that the
    above is HTML and wrap each line in a

    - thus breaking the HTML #} diff --git a/src/auto/injector.js b/src/auto/injector.js index 189421da8338..309413bc0814 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -589,7 +589,7 @@ function annotate(fn, strictDi, name) { * @description * * Register a **service decorator** with the {@link auto.$injector $injector}. A service decorator - * intercepts the creation of a service, allowing it to override or modify the behaviour of the + * intercepts the creation of a service, allowing it to override or modify the behavior of the * service. The object returned by the decorator may be the original service, or a new service * object which replaces or wraps and delegates to the original service. * diff --git a/test/ng/animateSpec.js b/test/ng/animateSpec.js index 8c913114493a..29f4d9c9adcc 100644 --- a/test/ng/animateSpec.js +++ b/test/ng/animateSpec.js @@ -122,7 +122,7 @@ describe("$animate", function() { }); inject(function() { // by using hasOwnProperty we know for sure that the lookup object is an empty object - // instead of inhertiting properties from its original prototype. + // instead of inheriting properties from its original prototype. expect(provider.$$registeredAnimations.hasOwnProperty).toBeFalsy(); provider.register('.filter', noop); diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 44b3bfd08bc5..86cebbb3fc65 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3933,7 +3933,7 @@ describe('$compile', function() { compile('

    '); - //change both sides to the same item withing the same digest cycle + //change both sides to the same item within the same digest cycle componentScope.ref = 'same'; $rootScope.name = 'same'; $rootScope.$apply(); @@ -6202,7 +6202,7 @@ describe('$compile', function() { var currentCleanData = jQuery.cleanData; jQuery.cleanData = function(elems) { cleanedCount += elems.length; - // Don't return the output and expicitly pass only the first parameter + // Don't return the output and explicitly pass only the first parameter // so that we're sure we're not relying on either of them. jQuery UI patch // behaves in this way. currentCleanData(elems); diff --git a/test/ng/directive/formSpec.js b/test/ng/directive/formSpec.js index 95a0fdeb1cc7..500be66d25d3 100644 --- a/test/ng/directive/formSpec.js +++ b/test/ng/directive/formSpec.js @@ -885,7 +885,7 @@ describe('form', function() { expect(doc.hasClass('ng-valid-another')).toBe(true); expect(doc.hasClass('ng-invalid-another')).toBe(false); - // validators are skipped, e.g. becuase of a parser error + // validators are skipped, e.g. because of a parser error control.$setValidity('error', null); control.$setValidity('another', null); scope.$digest(); diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 77ee82ec1a00..98f45decab50 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -122,7 +122,7 @@ describe('input', function() { // focus (which visually removes the placeholder value): focusin focus *input* // blur (which visually creates the placeholder value): focusout *input* blur //However none of these occur if the placeholder is not visible at the time of the event. - //These tests try simulate various scenerios which do/do-not fire the extra input event + //These tests try simulate various scenarios which do/do-not fire the extra input event it('should not dirty the model on an input event in response to a placeholder change', function() { var inputElm = helper.compileInput(''); diff --git a/test/ng/directive/ngSwitchSpec.js b/test/ng/directive/ngSwitchSpec.js index 5ad610c1b2f6..9efad341b4c7 100644 --- a/test/ng/directive/ngSwitchSpec.js +++ b/test/ng/directive/ngSwitchSpec.js @@ -273,7 +273,7 @@ describe('ngSwitch', function() { '
    ')($rootScope); $rootScope.$apply(); - // element now contains only empty repeater. this element is dealocated by local afterEach. + // element now contains only empty repeater. this element is deallocated by local afterEach. // afterwards a global afterEach will check for leaks in jq data cache object })); diff --git a/test/ng/filter/filterSpec.js b/test/ng/filter/filterSpec.js index 25928d89b6c4..9210697b5697 100644 --- a/test/ng/filter/filterSpec.js +++ b/test/ng/filter/filterSpec.js @@ -315,7 +315,7 @@ describe('Filter: filter', function() { expect(filter(items, expr, true).length).toBe(1); expect(filter(items, expr, true)[0]).toBe(items[0]); - // Inherited function proprties + // Inherited function properties function Expr(text) { this.text = text; } diff --git a/test/ng/httpSpec.js b/test/ng/httpSpec.js index 56424dff8e56..bc27ff5b5fe6 100644 --- a/test/ng/httpSpec.js +++ b/test/ng/httpSpec.js @@ -352,7 +352,7 @@ describe('$http', function() { it('should not encode @ in url params', function() { - //encodeURIComponent is too agressive and doesn't follow http://www.ietf.org/rfc/rfc3986.txt + //encodeURIComponent is too aggressive and doesn't follow http://www.ietf.org/rfc/rfc3986.txt //with regards to the character set (pchar) allowed in path segments //so we need this test to make sure that we don't over-encode the params and break stuff //like buzz api which uses @self @@ -1085,7 +1085,7 @@ describe('$http', function() { }; // I'm really sorry for doing this :-D - // Unfortunatelly I don't know how to trick toString.apply(obj) comparison + // Unfortunately I don't know how to trick toString.apply(obj) comparison spyOn(window, 'isFile').andReturn(true); $httpBackend.expect('POST', '/some', file).respond(''); diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index a9a1ae120494..015db507ebb5 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -188,7 +188,7 @@ describe('Scope', function() { expect(child1.$$watchersCount).toBe(1); expect($rootScope.$$watchersCount).toBe(2); - // Execute everything a second time to be sure that calling the remove funciton + // Execute everything a second time to be sure that calling the remove function // several times, it only decrements the counter once remove2(); expect(child2.$$watchersCount).toBe(1); diff --git a/test/ngAnimate/animateCssDriverSpec.js b/test/ngAnimate/animateCssDriverSpec.js index 923f9e3f821c..97567e4c053e 100644 --- a/test/ngAnimate/animateCssDriverSpec.js +++ b/test/ngAnimate/animateCssDriverSpec.js @@ -132,7 +132,7 @@ describe("ngAnimate $$animateCssDriver", function() { var doc = $document[0]; // there is one test in here that expects the rootElement - // to superceed the body node + // to supersede the body node if (!$rootElement[0].contains(doc.body)) { // we need to do this so that style detection works jqLite(doc.body).append($rootElement); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 52182493f61a..42cc76c97239 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1261,7 +1261,7 @@ describe("ngAnimate $animateCss", function() { expect(element.css(prefix + 'transition-delay')).toBe('3s'); expect(element.css(prefix + 'transition-duration')).toBe('3s'); - // Let's flush the remaining amout of time for the timeout timer to kick in + // Let's flush the remaining amount of time for the timeout timer to kick in $timeout.flush(500); expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); @@ -1294,7 +1294,7 @@ describe("ngAnimate $animateCss", function() { expect(element.css(prefix + 'transition-delay')).toBeOneOf('initial', '0s'); expect(element.css(prefix + 'transition-duration')).toBe('3s'); - // Let's flush the remaining amout of time for the timeout timer to kick in + // Let's flush the remaining amount of time for the timeout timer to kick in $timeout.flush(500); expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); diff --git a/test/ngMessages/messagesSpec.js b/test/ngMessages/messagesSpec.js index 3d4f1100f06c..29e395d06c07 100644 --- a/test/ngMessages/messagesSpec.js +++ b/test/ngMessages/messagesSpec.js @@ -471,7 +471,7 @@ describe('ngMessages', function() { var elements = element[0].querySelectorAll('[ng-repeat]'); - // all three collections should have atleast one error showing up + // all three collections should have at least one error showing up expect(messageChildren(element).length).toBe(3); expect(messageChildren(elements[0]).length).toBe(1); expect(messageChildren(elements[1]).length).toBe(1); diff --git a/test/ngScenario/e2e/widgets.html b/test/ngScenario/e2e/widgets.html index 6fa9276ed669..5fdae881cf68 100644 --- a/test/ngScenario/e2e/widgets.html +++ b/test/ngScenario/e2e/widgets.html @@ -42,7 +42,7 @@ checkbox Tea
    - Coffe + Coffee
    checkbox={{checkbox}}
    diff --git a/test/ngTouch/directive/ngClickSpec.js b/test/ngTouch/directive/ngClickSpec.js index 179b0248ff21..c9765b4c8df9 100644 --- a/test/ngTouch/directive/ngClickSpec.js +++ b/test/ngTouch/directive/ngClickSpec.js @@ -315,7 +315,7 @@ describe('ngClick (touch)', function() { expect($rootScope.count1).toBe(1); time = 90; - // Verify that it is blured so we don't get soft-keyboard + // Verify that it is blurred so we don't get soft-keyboard element1[0].blur = jasmine.createSpy('blur'); browserTrigger(element1, 'click',{ keys: [], From 7882c1c6aeb1dcfe89fe34e32dfa75dc81e8ae96 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 11 Dec 2015 18:26:18 +0100 Subject: [PATCH 155/354] chore(travis): add a new job that runs ci-checks Previously, ddescribe, merge-conflicts, jshint, and jscs would run after unit & e2e tests ran. The order was orginally changed as part of https://github.com/angular/angular.js/pull/9792. While the logic is sound that style errors shouldn't block tests from running, ddescribe should always run. This was not guaraneteed; when Travis exits with a warning after some browsers have run, ddescribe doesn't get run and it doesn't become apparent that not all tests have run. Additionally, a separate job clearly separates style from test errors, which e.g. means you can open a PR that includes an iit to speed up the job, and see immediately if the test passes, because the ddescribe error is in another job. --- .travis.yml | 7 ++----- scripts/travis/before_build.sh | 18 ++++++++++++++++++ scripts/travis/build.sh | 7 ++++--- 3 files changed, 24 insertions(+), 8 deletions(-) create mode 100755 scripts/travis/before_build.sh diff --git a/.travis.yml b/.travis.yml index cebf27e29b5c..1c153ea1ed32 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,6 +15,7 @@ branches: env: matrix: + - JOB=ci-checks - JOB=unit BROWSER_PROVIDER=saucelabs - JOB=docs-e2e BROWSER_PROVIDER=saucelabs - JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=saucelabs @@ -51,11 +52,7 @@ install: - npm install before_script: - - mkdir -p $LOGS_DIR - - ./scripts/travis/start_browser_provider.sh - - npm install -g grunt-cli - - grunt package - - ./scripts/travis/wait_for_browser_provider.sh + - ./scripts/travis/before_build.sh script: - ./scripts/travis/build.sh diff --git a/scripts/travis/before_build.sh b/scripts/travis/before_build.sh new file mode 100755 index 000000000000..de67dbbcab78 --- /dev/null +++ b/scripts/travis/before_build.sh @@ -0,0 +1,18 @@ +#!/bin/bash + +set -e + +mkdir -p $LOGS_DIR + +if [ $JOB != "ci-checks" ]; then + echo "start_browser_provider" + ./scripts/travis/start_browser_provider.sh +fi + +npm install -g grunt-cli + +if [ $JOB != "ci-checks" ]; then + grunt package + echo "wait_for_browser_provider" + ./scripts/travis/wait_for_browser_provider.sh +fi diff --git a/scripts/travis/build.sh b/scripts/travis/build.sh index 9e4f4fcd180a..4bf5e567f260 100755 --- a/scripts/travis/build.sh +++ b/scripts/travis/build.sh @@ -5,7 +5,9 @@ set -e export BROWSER_STACK_ACCESS_KEY=`echo $BROWSER_STACK_ACCESS_KEY | rev` export SAUCE_ACCESS_KEY=`echo $SAUCE_ACCESS_KEY | rev` -if [ $JOB = "unit" ]; then +if [ $JOB = "ci-checks" ]; then + grunt ci-checks +elif [ $JOB = "unit" ]; then if [ "$BROWSER_PROVIDER" == "browserstack" ]; then BROWSERS="BS_Chrome,BS_Safari,BS_Firefox,BS_IE_9,BS_IE_10,BS_IE_11,BS_iOS" else @@ -14,7 +16,6 @@ if [ $JOB = "unit" ]; then grunt test:promises-aplus grunt test:unit --browsers $BROWSERS --reporters dots - grunt ci-checks grunt tests:docs --browsers $BROWSERS --reporters dots elif [ $JOB = "docs-e2e" ]; then grunt test:travis-protractor --specs "docs/app/e2e/**/*.scenario.js" @@ -31,5 +32,5 @@ elif [ $JOB = "e2e" ]; then export TARGET_SPECS="test/e2e/tests/**/*.js,$TARGET_SPECS" grunt test:travis-protractor --specs "$TARGET_SPECS" else - echo "Unknown job type. Please set JOB=unit or JOB=e2e-*." + echo "Unknown job type. Please set JOB=ci-checks, JOB=unit or JOB=e2e-*." fi From fa56f8eadbf12206ea4b34e4afebc2128020c1ff Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 15 Dec 2015 12:16:14 +0200 Subject: [PATCH 156/354] test(privateMocks): allow replacing `$prop` with strings with special RegExp semantics `baseThey` used to construct the testcase description by replacing `$prop` using a RegExp. If the replacement string contained `$&` (which has a special meaning with RegExps), the resulting string was not as expected.x --- test/helpers/privateMocks.js | 2 +- test/helpers/privateMocksSpec.js | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/test/helpers/privateMocks.js b/test/helpers/privateMocks.js index f733afb8393f..637f19ebf97c 100644 --- a/test/helpers/privateMocks.js +++ b/test/helpers/privateMocks.js @@ -11,7 +11,7 @@ function baseThey(msg, vals, spec, itFn) { var valsIsArray = angular.isArray(vals); angular.forEach(vals, function(val, key) { - var m = msg.replace(/\$prop/g, angular.toJson(valsIsArray ? val : key)); + var m = msg.split('$prop').join(angular.toJson(valsIsArray ? val : key)); itFn(m, function() { /* jshint -W040 : ignore possible strict violation due to use of this */ spec.call(this, val); diff --git a/test/helpers/privateMocksSpec.js b/test/helpers/privateMocksSpec.js index 019dabb576c1..495dcb60c6ef 100644 --- a/test/helpers/privateMocksSpec.js +++ b/test/helpers/privateMocksSpec.js @@ -22,6 +22,13 @@ describe('private mocks', function() { expect(window.it).toHaveBeenCalledWith('should fight "fire" with "fire"', jasmine.any(Function)); }); + it('should handle replacement strings containing `$&` correctly', function() { + spyOn(window, 'it'); + + they('should replace dollar-prop with $prop', ['$&']); + expect(window.it).toHaveBeenCalledWith('should replace dollar-prop with "$&"', jasmine.any(Function)); + }); + it('should pass each item in an array to the handler', function() { var handlerSpy = jasmine.createSpy('handler'); spyOn(window, 'it').andCallFake(function(msg, handler) { From 6610ae816f78ee8fc1080b93a55bf19e4ce48d3e Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 15 Dec 2015 12:16:14 +0200 Subject: [PATCH 157/354] fix(input): fix URL validation being too strict Background: Prior to ffb6b2f, there was a bug in `URL_REGEXP`, trying to match the hostname as `\S+` (meaning any non-space character). This resulted in never actually validating the structure of the URL (e.g. segments such as port, path, query, fragment). Then ffb6b2f and subsequently e4bb838 fixed that bug, but revealed `URL_REGEXP`'s "strictness" wrt certain parts of the URL. Since browsers are too lenient when it comes to URL validation anyway, it doesn't make sense for Angular to be much stricter, so this commit relaxes the "strictness" of `URL_REGEXP`, focusing more on the general structure, than on the specific characters allowed in each segment. Note 1: `URL_REGEXP` still seems to be stricter than browsers in some cases. Note 2: Browsers don't always agree on what is a valid URL and what isn't. Fixes #13528 Closes #13544 --- src/ng/directive/input.js | 13 +++- test/ng/directive/inputSpec.js | 125 ++++++++++++++++++++++++++++----- 2 files changed, 121 insertions(+), 17 deletions(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index bcf34b26747e..65d26ad979cf 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -12,7 +12,18 @@ // Regex code is obtained from SO: https://stackoverflow.com/questions/3143070/javascript-regex-iso-datetime#answer-3143231 var ISO_DATE_REGEXP = /\d{4}-[01]\d-[0-3]\dT[0-2]\d:[0-5]\d:[0-5]\d\.\d+([+-][0-2]\d:[0-5]\d|Z)/; // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987) -var URL_REGEXP = /^[A-Za-z][A-Za-z\d.+-]*:\/*(?:\w+(?::\w+)?@)?[^\s/]+(?::\d+)?(?:\/[\w#!:.?+=&%@\-/[\]$'()*,;~]*)?$/; +// Note: We are being more lenient, because browsers are too. +// 1. Scheme +// 2. Slashes +// 3. Username +// 4. Password +// 5. Hostname +// 6. Port +// 7. Path +// 8. Query +// 9. Fragment +// 1111111111111111 222 333333 44444 555555555555555555555555 666 77777777 8888888 999 +var URL_REGEXP = /^[a-z][a-z\d.+-]*:\/*(?:[^:@]+(?::[^@]+)?@)?(?:[^\s:/?#]+|\[[a-f\d:]+\])(?::\d+)?(?:\/[^?#]*)?(?:\?[^#]*)?(?:#.*)?$/i; var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+\/=?^_`{|}~.-]+@[a-z0-9]([a-z0-9-]*[a-z0-9])?(\.[a-z0-9]([a-z0-9-]*[a-z0-9])?)*$/i; var NUMBER_REGEXP = /^\s*(\-|\+)?(\d+|(\d*(\.\d*)))([eE][+-]?\d+)?\s*$/; var DATE_REGEXP = /^(\d{4})-(\d{2})-(\d{2})$/; diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 98f45decab50..58689c0eea5f 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -2535,22 +2535,115 @@ describe('input', function() { describe('URL_REGEXP', function() { - /* global URL_REGEXP: false */ - it('should validate url', function() { - // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987) - expect(URL_REGEXP.test('http://server:123/path')).toBe(true); - expect(URL_REGEXP.test('https://server:123/path')).toBe(true); - expect(URL_REGEXP.test('file:///home/user')).toBe(true); - expect(URL_REGEXP.test('mailto:user@example.com?subject=Foo')).toBe(true); - expect(URL_REGEXP.test('r2-d2.c3-p0://localhost/foo')).toBe(true); - expect(URL_REGEXP.test('abc:/foo')).toBe(true); - expect(URL_REGEXP.test('http://example.com/path;path')).toBe(true); - expect(URL_REGEXP.test('http://example.com/[]$\'()*,~)')).toBe(true); - expect(URL_REGEXP.test('http:')).toBe(false); - expect(URL_REGEXP.test('a@B.c')).toBe(false); - expect(URL_REGEXP.test('a_B.c')).toBe(false); - expect(URL_REGEXP.test('0scheme://example.com')).toBe(false); - expect(URL_REGEXP.test('http://example.com:9999/``')).toBe(false); + // See valid URLs in RFC3987 (http://tools.ietf.org/html/rfc3987) + // Note: We are being more lenient, because browsers are too. + var urls = [ + ['scheme://hostname', true], + ['scheme://username:password@host.name:7678/pa/t.h?q=u&e=r&y#fragment', true], + + // Validating `scheme` + ['://example.com', false], + ['0scheme://example.com', false], + ['.scheme://example.com', false], + ['+scheme://example.com', false], + ['-scheme://example.com', false], + ['_scheme://example.com', false], + ['scheme0://example.com', true], + ['scheme.://example.com', true], + ['scheme+://example.com', true], + ['scheme-://example.com', true], + ['scheme_://example.com', false], + + // Vaidating `:` and `/` after `scheme` + ['scheme//example.com', false], + ['scheme:example.com', true], + ['scheme:/example.com', true], + ['scheme:///example.com', true], + + // Validating `username` and `password` + ['scheme://@example.com', true], + ['scheme://username@example.com', true], + ['scheme://u0s.e+r-n_a~m!e@example.com', true], + ['scheme://u#s$e%r^n&a*m;e@example.com', true], + ['scheme://:password@example.com', true], + ['scheme://username:password@example.com', true], + ['scheme://username:pass:word@example.com', true], + ['scheme://username:p0a.s+s-w_o~r!d@example.com', true], + ['scheme://username:p#a$s%s^w&o*r;d@example.com', true], + + // Validating `hostname` + ['scheme:', false], // Chrome, FF: true + ['scheme://', false], // Chrome, FF: true + ['scheme:// example.com:', false], // Chrome, FF: true + ['scheme://example com:', false], // Chrome, FF: true + ['scheme://:', false], // Chrome, FF: true + ['scheme://?', false], // Chrome, FF: true + ['scheme://#', false], // Chrome, FF: true + ['scheme://username:password@:', false], // Chrome, FF: true + ['scheme://username:password@/', false], // Chrome, FF: true + ['scheme://username:password@?', false], // Chrome, FF: true + ['scheme://username:password@#', false], // Chrome, FF: true + ['scheme://host.name', true], + ['scheme://123.456.789.10', true], + ['scheme://[1234:0000:0000:5678:9abc:0000:0000:def]', true], + ['scheme://[1234:0000:0000:5678:9abc:0000:0000:def]:7678', true], + ['scheme://[1234:0:0:5678:9abc:0:0:def]', true], + ['scheme://[1234::5678:9abc::def]', true], + ['scheme://~`!@$%^&*-_=+|\\;\'",.()[]{}<>', true], + + // Validating `port` + ['scheme://example.com/no-port', true], + ['scheme://example.com:7678', true], + ['scheme://example.com:76T8', false], // Chrome, FF: true + ['scheme://example.com:port', false], // Chrome, FF: true + + // Validating `path` + ['scheme://example.com/', true], + ['scheme://example.com/path', true], + ['scheme://example.com/path/~`!@$%^&*-_=+|\\;:\'",./()[]{}<>', true], + + // Validating `query` + ['scheme://example.com?query', true], + ['scheme://example.com/?query', true], + ['scheme://example.com/path?query', true], + ['scheme://example.com/path?~`!@$%^&*-_=+|\\;:\'",.?/()[]{}<>', true], + + // Validating `fragment` + ['scheme://example.com#fragment', true], + ['scheme://example.com/#fragment', true], + ['scheme://example.com/path#fragment', true], + ['scheme://example.com/path/#fragment', true], + ['scheme://example.com/path?query#fragment', true], + ['scheme://example.com/path?query#~`!@#$%^&*-_=+|\\;:\'",.?/()[]{}<>', true], + + // Validating miscellaneous + ['scheme://☺.✪.⌘.➡/䨹', true], + ['scheme://مثال.إختبار', true], + ['scheme://例子.测试', true], + ['scheme://उदाहरण.परीक्षा', true], + + // Legacy tests + ['http://server:123/path', true], + ['https://server:123/path', true], + ['file:///home/user', true], + ['mailto:user@example.com?subject=Foo', true], + ['r2-d2.c3-p0://localhost/foo', true], + ['abc:/foo', true], + ['http://example.com/path;path', true], + ['http://example.com/[]$\'()*,~)', true], + ['http:', false], // FF: true + ['a@B.c', false], + ['a_B.c', false], + ['0scheme://example.com', false], + ['http://example.com:9999/``', true] + ]; + + they('should validate url: $prop', urls, function(item) { + var url = item[0]; + var valid = item[1]; + + /* global URL_REGEXP: false */ + expect(URL_REGEXP.test(url)).toBe(valid); }); }); }); From 2f08eae48fb06ff42298e5a097c308a83acece8c Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 16 Dec 2015 10:09:19 +0000 Subject: [PATCH 158/354] chore(travis): update to use node 4.x --- .travis.yml | 27 ++++++++++++--------------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/.travis.yml b/.travis.yml index 1c153ea1ed32..087e55ff1199 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ language: node_js sudo: false node_js: - - '0.10' + - '4.2' cache: directories: @@ -20,24 +20,21 @@ env: - JOB=docs-e2e BROWSER_PROVIDER=saucelabs - JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=saucelabs - JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=saucelabs - - JOB=unit BROWSER_PROVIDER=browserstack - - JOB=docs-e2e BROWSER_PROVIDER=browserstack - - JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=browserstack - - JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=browserstack global: + - CXX=g++-4.8 # node 4 likes the G++ v4.8 compiler - SAUCE_USERNAME=angular-ci - SAUCE_ACCESS_KEY=9b988f434ff8-fbca-8aa4-4ae3-35442987 - - BROWSER_STACK_USERNAME=VojtaJina - - BROWSER_STACK_ACCESS_KEY=QCQJ1ZpWXpBkSwEdD8ev - LOGS_DIR=/tmp/angular-build/logs - BROWSER_PROVIDER_READY_FILE=/tmp/browsersprovider-tunnel-ready -matrix: - allow_failures: - - env: "JOB=unit BROWSER_PROVIDER=browserstack" - - env: "JOB=docs-e2e BROWSER_PROVIDER=browserstack" - - env: "JOB=e2e TEST_TARGET=jqlite BROWSER_PROVIDER=browserstack" - - env: "JOB=e2e TEST_TARGET=jquery BROWSER_PROVIDER=browserstack" +# node 4 likes the G++ v4.8 compiler +# see https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements +addons: + apt: + sources: + - ubuntu-toolchain-r-test + packages: + - g++-4.8 install: # Check the size of caches @@ -47,8 +44,8 @@ install: - npm config set spin false # Log HTTP requests - npm config set loglevel http - - npm install -g npm@2.5 - # Instal npm dependecies and ensure that npm cache is not stale + #- npm install -g npm@2.5 + # Install npm dependencies and ensure that npm cache is not stale - npm install before_script: From 8120ab2f7749a80cd2c0884c1a67e23ab0302f06 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 16 Dec 2015 14:53:27 +0200 Subject: [PATCH 159/354] docs($compile): fix scope hierarchy indentation in HTML output --- src/ng/compile.js | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 41701ef89865..4af074537c53 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -551,19 +551,19 @@ * * The `$parent` scope hierarchy will look like this: * - * ``` - * - $rootScope - * - isolate - * - transclusion - * ``` + ``` + - $rootScope + - isolate + - transclusion + ``` * * but the scopes will inherit prototypically from different scopes to their `$parent`. * - * ``` - * - $rootScope - * - transclusion - * - isolate - * ``` + ``` + - $rootScope + - transclusion + - isolate + ``` * * * ### Attributes From 9c5a1cd43caabf6b5b143d7799264dc7d85c19ad Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 16 Dec 2015 11:13:10 +0000 Subject: [PATCH 160/354] chore(jenkins): move jenkins_build.sh to scripts/jenkins/build.sh --- jenkins_build.sh => scripts/jenkins/build.sh | 0 scripts/jenkins/master.sh | 2 +- 2 files changed, 1 insertion(+), 1 deletion(-) rename jenkins_build.sh => scripts/jenkins/build.sh (100%) diff --git a/jenkins_build.sh b/scripts/jenkins/build.sh similarity index 100% rename from jenkins_build.sh rename to scripts/jenkins/build.sh diff --git a/scripts/jenkins/master.sh b/scripts/jenkins/master.sh index b991110528d0..06a9af367450 100755 --- a/scripts/jenkins/master.sh +++ b/scripts/jenkins/master.sh @@ -22,7 +22,7 @@ function build { npm install --color false grunt ci-checks package --no-color else - ./jenkins_build.sh + scripts/jenkins/build.sh fi cd $SCRIPT_DIR From 214f6822c360243975b54480bc14f4a5916cef2a Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 11:45:37 +0000 Subject: [PATCH 161/354] chore(jenkins): run Jenkins builds on Node 4 (via nvm) Closes #13568 --- scripts/jenkins/build.sh | 3 +++ scripts/jenkins/master.sh | 9 +-------- scripts/jenkins/release.sh | 2 ++ scripts/jenkins/set-node-version.sh | 7 +++++++ 4 files changed, 13 insertions(+), 8 deletions(-) create mode 100755 scripts/jenkins/set-node-version.sh diff --git a/scripts/jenkins/build.sh b/scripts/jenkins/build.sh index ea94a9d1a873..4b34eb30884e 100755 --- a/scripts/jenkins/build.sh +++ b/scripts/jenkins/build.sh @@ -7,6 +7,8 @@ echo "#################################" # Enable tracing and exit on first failure set -xe +scripts/jenkins/set-node-version.sh + # This is the default set of browsers to use on the CI server unless overridden via env variable if [[ -z "$BROWSERS" ]] then @@ -19,6 +21,7 @@ rm -f angular.js.size # BUILD # +npm install -g grunt-cli npm install --color false grunt ci-checks package --no-color diff --git a/scripts/jenkins/master.sh b/scripts/jenkins/master.sh index 06a9af367450..e123a02308f3 100755 --- a/scripts/jenkins/master.sh +++ b/scripts/jenkins/master.sh @@ -17,14 +17,7 @@ function init { function build { cd ../.. - - if [[ $NO_TEST == "true" ]]; then - npm install --color false - grunt ci-checks package --no-color - else - scripts/jenkins/build.sh - fi - + scripts/jenkins/build.sh cd $SCRIPT_DIR } diff --git a/scripts/jenkins/release.sh b/scripts/jenkins/release.sh index d8d21f8a407b..b90ac1454400 100755 --- a/scripts/jenkins/release.sh +++ b/scripts/jenkins/release.sh @@ -35,8 +35,10 @@ function init { } function build { + ./set-node-version.sh cd ../.. + npm install -g grunt-cli npm install --color false grunt ci-checks package --no-color diff --git a/scripts/jenkins/set-node-version.sh b/scripts/jenkins/set-node-version.sh new file mode 100755 index 000000000000..2f7c86e65f97 --- /dev/null +++ b/scripts/jenkins/set-node-version.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +# Install nvm for this shell +source ~/.nvm/nvm.sh + +# Use node.js at 4.2.x +nvm install 4.2 From e1a182b1058fc855ee0bb746352448823bcfc6fa Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 14:15:13 +0000 Subject: [PATCH 162/354] chore(jenkins): remove unused argument definition --- scripts/jenkins/master.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/jenkins/master.sh b/scripts/jenkins/master.sh index e123a02308f3..336bddaae684 100755 --- a/scripts/jenkins/master.sh +++ b/scripts/jenkins/master.sh @@ -4,9 +4,7 @@ echo "#################################" echo "#### Update master ##############" echo "#################################" -ARG_DEFS=( - "[--no-test=(true|false)]" -) +ARG_DEFS=() function init { if [[ ! $VERBOSE ]]; then From 0a8a6fa36b387a28d3fdb5876016ec734f33d389 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 14:29:33 +0000 Subject: [PATCH 163/354] chore(npm-shrinkwrap): install glob package --- npm-shrinkwrap.clean.json | 73 ++++++---- npm-shrinkwrap.json | 299 ++++++++++++++++++++------------------ 2 files changed, 202 insertions(+), 170 deletions(-) diff --git a/npm-shrinkwrap.clean.json b/npm-shrinkwrap.clean.json index d77137f88000..22187fca8c9a 100644 --- a/npm-shrinkwrap.clean.json +++ b/npm-shrinkwrap.clean.json @@ -5865,6 +5865,49 @@ } } }, + "glob": { + "version": "6.0.1", + "dependencies": { + "inflight": { + "version": "1.0.4", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "inherits": { + "version": "2.0.1" + }, + "minimatch": { + "version": "3.0.0", + "dependencies": { + "brace-expansion": { + "version": "1.1.2", + "dependencies": { + "balanced-match": { + "version": "0.3.0" + }, + "concat-map": { + "version": "0.0.1" + } + } + } + } + }, + "once": { + "version": "1.3.3", + "dependencies": { + "wrappy": { + "version": "1.0.1" + } + } + }, + "path-is-absolute": { + "version": "1.0.0" + } + } + }, "grunt": { "version": "0.4.5", "dependencies": { @@ -8595,14 +8638,6 @@ }, "async-each": { "version": "0.1.6" - }, - "fsevents": { - "version": "0.3.5", - "dependencies": { - "nan": { - "version": "1.5.3" - } - } } } }, @@ -9770,28 +9805,6 @@ }, "ultron": { "version": "1.0.1" - }, - "bufferutil": { - "version": "1.1.0", - "dependencies": { - "bindings": { - "version": "1.2.1" - }, - "nan": { - "version": "1.8.4" - } - } - }, - "utf-8-validate": { - "version": "1.1.0", - "dependencies": { - "bindings": { - "version": "1.2.1" - }, - "nan": { - "version": "1.8.4" - } - } } } }, diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index 24d8e917c697..1940b9ab12da 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -8479,22 +8479,22 @@ }, "dgeni-packages": { "version": "0.11.0", - "from": "dgeni-packages@0.11.0", + "from": "https://registry.npmjs.org/dgeni-packages/-/dgeni-packages-0.11.0.tgz", "resolved": "https://registry.npmjs.org/dgeni-packages/-/dgeni-packages-0.11.0.tgz", "dependencies": { "catharsis": { "version": "0.8.7", - "from": "catharsis@>=0.8.1 <0.9.0", + "from": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", "resolved": "https://registry.npmjs.org/catharsis/-/catharsis-0.8.7.tgz", "dependencies": { "underscore-contrib": { "version": "0.3.0", - "from": "underscore-contrib@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", "resolved": "https://registry.npmjs.org/underscore-contrib/-/underscore-contrib-0.3.0.tgz", "dependencies": { "underscore": { "version": "1.6.0", - "from": "underscore@1.6.0", + "from": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz" } } @@ -8503,141 +8503,141 @@ }, "change-case": { "version": "2.3.0", - "from": "change-case@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", "resolved": "https://registry.npmjs.org/change-case/-/change-case-2.3.0.tgz", "dependencies": { "camel-case": { "version": "1.2.0", - "from": "camel-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.0.tgz", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-1.2.0.tgz" }, "constant-case": { "version": "1.1.1", - "from": "constant-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-1.1.1.tgz" }, "dot-case": { "version": "1.1.1", - "from": "dot-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-1.1.1.tgz" }, "is-lower-case": { "version": "1.1.1", - "from": "is-lower-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.1.tgz" }, "is-upper-case": { "version": "1.1.1", - "from": "is-upper-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.1.tgz" }, "lower-case": { "version": "1.1.2", - "from": "lower-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.2.tgz" }, "lower-case-first": { "version": "1.0.0", - "from": "lower-case-first@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz", "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.0.tgz" }, "param-case": { "version": "1.1.1", - "from": "param-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/param-case/-/param-case-1.1.1.tgz" }, "pascal-case": { "version": "1.1.1", - "from": "pascal-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-1.1.1.tgz" }, "path-case": { "version": "1.1.1", - "from": "path-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/path-case/-/path-case-1.1.1.tgz" }, "sentence-case": { "version": "1.1.2", - "from": "sentence-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-1.1.2.tgz" }, "snake-case": { "version": "1.1.1", - "from": "snake-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-1.1.1.tgz" }, "swap-case": { "version": "1.1.1", - "from": "swap-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/swap-case/-/swap-case-1.1.1.tgz" }, "title-case": { "version": "1.1.1", - "from": "title-case@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz", "resolved": "https://registry.npmjs.org/title-case/-/title-case-1.1.1.tgz" }, "upper-case": { "version": "1.1.2", - "from": "upper-case@>=1.1.1 <2.0.0", + "from": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz", "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.2.tgz" }, "upper-case-first": { "version": "1.1.1", - "from": "upper-case-first@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz", "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-1.1.1.tgz" } } }, "espree": { "version": "2.2.5", - "from": "espree@>=2.2.3 <3.0.0", + "from": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz", "resolved": "https://registry.npmjs.org/espree/-/espree-2.2.5.tgz" }, "estraverse": { "version": "4.1.1", - "from": "estraverse@>=4.1.0 <5.0.0", + "from": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.1.1.tgz" }, "glob": { "version": "3.2.11", - "from": "glob@>=3.2.8 <3.3.0", + "from": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "htmlparser2": { "version": "3.8.3", - "from": "htmlparser2@>=3.7.3 <4.0.0", + "from": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-3.8.3.tgz", "dependencies": { "domhandler": { "version": "2.3.0", - "from": "domhandler@>=2.3.0 <2.4.0", + "from": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-2.3.0.tgz" }, "domutils": { "version": "1.5.1", - "from": "domutils@>=1.5.0 <1.6.0", + "from": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "resolved": "https://registry.npmjs.org/domutils/-/domutils-1.5.1.tgz", "dependencies": { "dom-serializer": { "version": "0.1.0", - "from": "dom-serializer@>=0.0.0 <1.0.0", + "from": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-0.1.0.tgz", "dependencies": { "domelementtype": { "version": "1.1.3", - "from": "domelementtype@>=1.1.1 <1.2.0", + "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.1.3.tgz" }, "entities": { "version": "1.1.1", - "from": "entities@>=1.1.1 <1.2.0", + "from": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz", "resolved": "https://registry.npmjs.org/entities/-/entities-1.1.1.tgz" } } @@ -8646,137 +8646,137 @@ }, "domelementtype": { "version": "1.3.0", - "from": "domelementtype@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-1.3.0.tgz" }, "readable-stream": { "version": "1.1.13", - "from": "readable-stream@>=1.1.0 <1.2.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.13.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "entities": { "version": "1.0.0", - "from": "entities@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz", "resolved": "https://registry.npmjs.org/entities/-/entities-1.0.0.tgz" } } }, "minimatch": { "version": "0.3.0", - "from": "minimatch@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", "dependencies": { "lru-cache": { "version": "2.7.0", - "from": "lru-cache@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" }, "sigmund": { "version": "1.0.1", - "from": "sigmund@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "nunjucks": { "version": "1.3.4", - "from": "nunjucks@>=1.2.0 <2.0.0", + "from": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", "resolved": "https://registry.npmjs.org/nunjucks/-/nunjucks-1.3.4.tgz", "dependencies": { "optimist": { "version": "0.6.1", - "from": "optimist@*", + "from": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { "version": "0.0.3", - "from": "wordwrap@>=0.0.2 <0.1.0", + "from": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" }, "minimist": { "version": "0.0.10", - "from": "minimist@>=0.0.1 <0.1.0", + "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" } } }, "chokidar": { "version": "0.12.6", - "from": "chokidar@>=0.12.5 <0.13.0", + "from": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-0.12.6.tgz", "dependencies": { "readdirp": { "version": "1.3.0", - "from": "readdirp@>=1.3.0 <1.4.0", + "from": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-1.3.0.tgz", "dependencies": { "graceful-fs": { "version": "2.0.3", - "from": "graceful-fs@>=2.0.0 <2.1.0", + "from": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-2.0.3.tgz" }, "minimatch": { "version": "0.2.14", - "from": "minimatch@>=0.2.12 <0.3.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", "dependencies": { "lru-cache": { "version": "2.7.0", - "from": "lru-cache@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.0.tgz" }, "sigmund": { "version": "1.0.1", - "from": "sigmund@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } }, "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26-2 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.1", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.1.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -8785,17 +8785,17 @@ }, "async-each": { "version": "0.1.6", - "from": "async-each@>=0.1.5 <0.2.0", + "from": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz", "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" }, "fsevents": { "version": "0.3.8", - "from": "fsevents@>=0.3.1 <0.4.0", + "from": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.8.tgz", "dependencies": { "nan": { "version": "2.1.0", - "from": "nan@>=2.0.2 <3.0.0", + "from": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" } } @@ -8806,42 +8806,42 @@ }, "q-io": { "version": "1.10.9", - "from": "q-io@>=1.10.9 <1.11.0", + "from": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", "resolved": "https://registry.npmjs.org/q-io/-/q-io-1.10.9.tgz", "dependencies": { "q": { "version": "0.9.7", - "from": "q@>=0.9.7 <0.10.0", + "from": "https://registry.npmjs.org/q/-/q-0.9.7.tgz", "resolved": "https://registry.npmjs.org/q/-/q-0.9.7.tgz" }, "qs": { "version": "0.1.0", - "from": "qs@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-0.1.0.tgz" }, "url2": { "version": "0.0.0", - "from": "url2@>=0.0.0 <0.1.0", + "from": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz", "resolved": "https://registry.npmjs.org/url2/-/url2-0.0.0.tgz" }, "mime": { "version": "1.2.11", - "from": "mime@>=1.2.11 <1.3.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "mimeparse": { "version": "0.1.4", - "from": "mimeparse@>=0.1.4 <0.2.0", + "from": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz", "resolved": "https://registry.npmjs.org/mimeparse/-/mimeparse-0.1.4.tgz" }, "collections": { "version": "0.2.2", - "from": "collections@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", "resolved": "https://registry.npmjs.org/collections/-/collections-0.2.2.tgz", "dependencies": { "weak-map": { "version": "1.0.0", - "from": "weak-map@1.0.0", + "from": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz", "resolved": "https://registry.npmjs.org/weak-map/-/weak-map-1.0.0.tgz" } } @@ -8850,62 +8850,62 @@ }, "semver": { "version": "4.3.6", - "from": "semver@>=4.3.4 <5.0.0", + "from": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" }, "shelljs": { "version": "0.5.3", - "from": "shelljs@>=0.5.0 <0.6.0", + "from": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz", "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.5.3.tgz" }, "winston": { "version": "0.7.3", - "from": "winston@>=0.7.2 <0.8.0", + "from": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "resolved": "https://registry.npmjs.org/winston/-/winston-0.7.3.tgz", "dependencies": { "async": { "version": "0.2.10", - "from": "async@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "colors": { "version": "0.6.2", - "from": "colors@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", "resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz" }, "cycle": { "version": "1.0.3", - "from": "cycle@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz", "resolved": "https://registry.npmjs.org/cycle/-/cycle-1.0.3.tgz" }, "eyes": { "version": "0.1.8", - "from": "eyes@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz", "resolved": "https://registry.npmjs.org/eyes/-/eyes-0.1.8.tgz" }, "pkginfo": { "version": "0.3.1", - "from": "pkginfo@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz", "resolved": "https://registry.npmjs.org/pkginfo/-/pkginfo-0.3.1.tgz" }, "request": { "version": "2.16.6", - "from": "request@>=2.16.0 <2.17.0", + "from": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "resolved": "https://registry.npmjs.org/request/-/request-2.16.6.tgz", "dependencies": { "form-data": { "version": "0.0.10", - "from": "form-data@>=0.0.3 <0.1.0", + "from": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.0.10.tgz", "dependencies": { "combined-stream": { "version": "0.0.7", - "from": "combined-stream@>=0.0.4 <0.1.0", + "from": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", - "from": "delayed-stream@0.0.5", + "from": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" } } @@ -8914,81 +8914,81 @@ }, "mime": { "version": "1.2.11", - "from": "mime@>=1.2.7 <1.3.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz" }, "hawk": { "version": "0.10.2", - "from": "hawk@>=0.10.2 <0.11.0", + "from": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "resolved": "https://registry.npmjs.org/hawk/-/hawk-0.10.2.tgz", "dependencies": { "hoek": { "version": "0.7.6", - "from": "hoek@>=0.7.0 <0.8.0", + "from": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz", "resolved": "https://registry.npmjs.org/hoek/-/hoek-0.7.6.tgz" }, "boom": { "version": "0.3.8", - "from": "boom@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz", "resolved": "https://registry.npmjs.org/boom/-/boom-0.3.8.tgz" }, "cryptiles": { "version": "0.1.3", - "from": "cryptiles@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-0.1.3.tgz" }, "sntp": { "version": "0.1.4", - "from": "sntp@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz", "resolved": "https://registry.npmjs.org/sntp/-/sntp-0.1.4.tgz" } } }, "node-uuid": { "version": "1.4.3", - "from": "node-uuid@>=1.4.0 <1.5.0", + "from": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.3.tgz" }, "cookie-jar": { "version": "0.2.0", - "from": "cookie-jar@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz", "resolved": "https://registry.npmjs.org/cookie-jar/-/cookie-jar-0.2.0.tgz" }, "aws-sign": { "version": "0.2.0", - "from": "aws-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/aws-sign/-/aws-sign-0.2.0.tgz" }, "oauth-sign": { "version": "0.2.0", - "from": "oauth-sign@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.2.0.tgz" }, "forever-agent": { "version": "0.2.0", - "from": "forever-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.2.0.tgz" }, "tunnel-agent": { "version": "0.2.0", - "from": "tunnel-agent@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.2.0.tgz" }, "json-stringify-safe": { "version": "3.0.0", - "from": "json-stringify-safe@>=3.0.0 <3.1.0", + "from": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-3.0.0.tgz" }, "qs": { "version": "0.5.6", - "from": "qs@>=0.5.4 <0.6.0", + "from": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-0.5.6.tgz" } } }, "stack-trace": { "version": "0.0.9", - "from": "stack-trace@>=0.0.0 <0.1.0", + "from": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz", "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.9.tgz" } } @@ -9037,6 +9037,71 @@ } } }, + "glob": { + "version": "6.0.1", + "from": "glob@*", + "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.1.tgz", + "dependencies": { + "inflight": { + "version": "1.0.4", + "from": "inflight@>=1.0.4 <2.0.0", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "inherits": { + "version": "2.0.1", + "from": "inherits@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + }, + "minimatch": { + "version": "3.0.0", + "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", + "dependencies": { + "brace-expansion": { + "version": "1.1.2", + "from": "brace-expansion@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", + "dependencies": { + "balanced-match": { + "version": "0.3.0", + "from": "balanced-match@>=0.3.0 <0.4.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" + }, + "concat-map": { + "version": "0.0.1", + "from": "concat-map@0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" + } + } + } + } + }, + "once": { + "version": "1.3.3", + "from": "once@>=1.3.0 <2.0.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", + "dependencies": { + "wrappy": { + "version": "1.0.1", + "from": "wrappy@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" + } + } + }, + "path-is-absolute": { + "version": "1.0.0", + "from": "path-is-absolute@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" + } + } + }, "grunt": { "version": "0.4.5", "from": "https://registry.npmjs.org/grunt/-/grunt-0.4.5.tgz", @@ -13226,18 +13291,6 @@ "version": "0.1.6", "from": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz", "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" - }, - "fsevents": { - "version": "0.3.5", - "from": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.5.tgz", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-0.3.5.tgz", - "dependencies": { - "nan": { - "version": "1.5.3", - "from": "https://registry.npmjs.org/nan/-/nan-1.5.3.tgz", - "resolved": "https://registry.npmjs.org/nan/-/nan-1.5.3.tgz" - } - } } } }, @@ -15039,40 +15092,6 @@ "version": "1.0.1", "from": "https://registry.npmjs.org/ultron/-/ultron-1.0.1.tgz", "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.1.tgz" - }, - "bufferutil": { - "version": "1.1.0", - "from": "https://registry.npmjs.org/bufferutil/-/bufferutil-1.1.0.tgz", - "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-1.1.0.tgz", - "dependencies": { - "bindings": { - "version": "1.2.1", - "from": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" - }, - "nan": { - "version": "1.8.4", - "from": "https://registry.npmjs.org/nan/-/nan-1.8.4.tgz", - "resolved": "https://registry.npmjs.org/nan/-/nan-1.8.4.tgz" - } - } - }, - "utf-8-validate": { - "version": "1.1.0", - "from": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.1.0.tgz", - "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.1.0.tgz", - "dependencies": { - "bindings": { - "version": "1.2.1", - "from": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" - }, - "nan": { - "version": "1.8.4", - "from": "https://registry.npmjs.org/nan/-/nan-1.8.4.tgz", - "resolved": "https://registry.npmjs.org/nan/-/nan-1.8.4.tgz" - } - } } } }, From d89afc488faf86240ce1528d09fde0f9e9495c5b Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 14:53:15 +0000 Subject: [PATCH 164/354] chore(angularFiles): add documentation only file to list of files This prevents errors when checking `validate-angular-files` --- angularFiles.js | 1 + 1 file changed, 1 insertion(+) diff --git a/angularFiles.js b/angularFiles.js index c94f44be7adb..51b7149f38db 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -34,6 +34,7 @@ var angularFiles = { 'src/ng/q.js', 'src/ng/raf.js', 'src/ng/rootScope.js', + 'src/ng/rootElement.js', 'src/ng/sanitizeUri.js', 'src/ng/sce.js', 'src/ng/sniffer.js', From 420586bd093adb2324472c4d5e1adeb41629183e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 15 Dec 2015 11:46:50 -0800 Subject: [PATCH 165/354] chore(build): add a validation step for angularFiles Closes #13553 --- Gruntfile.js | 54 ++++++++++++++++++++++++++++++++++++++++++++++++- angularFiles.js | 2 +- package.json | 1 + 3 files changed, 55 insertions(+), 2 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index 018f08b16f1c..82d5b224b8bf 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -4,7 +4,9 @@ var files = require('./angularFiles').files; var util = require('./lib/grunt/utils.js'); var versionInfo = require('./lib/versions/version-info'); var path = require('path'); +var fs = require('fs'); var e2e = require('./test/e2e/tools'); +var glob = require("glob"); module.exports = function(grunt) { //grunt plugins @@ -339,6 +341,56 @@ module.exports = function(grunt) { grunt.task.run('shell:npm-install'); } + grunt.registerTask('validate-angular-files', function() { + var combinedFiles = Object.assign({}, files.angularModules); + combinedFiles.ng = files.angularSrc; + combinedFiles.angularLoader = files.angularLoader; + + var errorsDetected = false; + var directories = []; + var detectedFiles = { + "src/ng/rootElement.js": true + }; + + for (var section in combinedFiles) { + var sectionFiles = combinedFiles[section]; + + if (section != "angularLoader") { + directories.push("src/" + section); + } + + console.log("Validating " + sectionFiles.length + " files from the \"" + section + "\" module"); + + sectionFiles.forEach(function(file) { + detectedFiles[file] = true; + + if (!fs.existsSync(file)) { + grunt.log.error(file + " does not exist in the local file structure"); + errorsDetected = true; + } + }); + } + + directories.forEach(function(directory) { + glob.sync(directory + "/**/*").forEach(function(filePath) { + if (!fs.lstatSync(filePath).isDirectory()) { + var fileName = path.basename(filePath); + var isHiddenFile = fileName[0] == "."; + if (!isHiddenFile && !detectedFiles[filePath]) { + grunt.log.error(filePath + " exists in the local file structure but isn't used by any module"); + errorsDetected = true; + } + } + }); + }); + + if (errorsDetected) { + throw new Error("Not all files were properly detected the local file structure"); + } else { + console.log("All files were detected successfully!"); + } + }); + //alias tasks grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']); grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']); @@ -354,7 +406,7 @@ module.exports = function(grunt) { grunt.registerTask('minify', ['bower','clean', 'build', 'minall']); grunt.registerTask('webserver', ['connect:devserver']); - grunt.registerTask('package', ['bower','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']); + grunt.registerTask('package', ['bower', 'validate-angular-files','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']); grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']); grunt.registerTask('default', ['package']); }; diff --git a/angularFiles.js b/angularFiles.js index 51b7149f38db..5cdc5bf5c74f 100755 --- a/angularFiles.js +++ b/angularFiles.js @@ -86,7 +86,7 @@ var angularFiles = { ], 'angularLoader': [ - 'stringify.js', + 'src/stringify.js', 'src/minErr.js', 'src/loader.js' ], diff --git a/package.json b/package.json index 7481bee600eb..b4f5f23306ac 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "dgeni": "^0.4.0", "dgeni-packages": "^0.11.0", "event-stream": "~3.1.0", + "glob": "^6.0.1", "grunt": "~0.4.2", "grunt-bump": "~0.0.13", "grunt-contrib-clean": "~0.6.0", From a1648737bdd550ecc95f047af6d5fc5f4136a197 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 22:01:39 +0000 Subject: [PATCH 166/354] chore(GruntFile): move `validate-angular-files` task into its own file Closes #13569 --- Gruntfile.js | 50 ------------------------- lib/grunt/validate-angular-files.js | 58 +++++++++++++++++++++++++++++ 2 files changed, 58 insertions(+), 50 deletions(-) create mode 100644 lib/grunt/validate-angular-files.js diff --git a/Gruntfile.js b/Gruntfile.js index 82d5b224b8bf..e8f18bf507a2 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -4,9 +4,7 @@ var files = require('./angularFiles').files; var util = require('./lib/grunt/utils.js'); var versionInfo = require('./lib/versions/version-info'); var path = require('path'); -var fs = require('fs'); var e2e = require('./test/e2e/tools'); -var glob = require("glob"); module.exports = function(grunt) { //grunt plugins @@ -341,55 +339,7 @@ module.exports = function(grunt) { grunt.task.run('shell:npm-install'); } - grunt.registerTask('validate-angular-files', function() { - var combinedFiles = Object.assign({}, files.angularModules); - combinedFiles.ng = files.angularSrc; - combinedFiles.angularLoader = files.angularLoader; - var errorsDetected = false; - var directories = []; - var detectedFiles = { - "src/ng/rootElement.js": true - }; - - for (var section in combinedFiles) { - var sectionFiles = combinedFiles[section]; - - if (section != "angularLoader") { - directories.push("src/" + section); - } - - console.log("Validating " + sectionFiles.length + " files from the \"" + section + "\" module"); - - sectionFiles.forEach(function(file) { - detectedFiles[file] = true; - - if (!fs.existsSync(file)) { - grunt.log.error(file + " does not exist in the local file structure"); - errorsDetected = true; - } - }); - } - - directories.forEach(function(directory) { - glob.sync(directory + "/**/*").forEach(function(filePath) { - if (!fs.lstatSync(filePath).isDirectory()) { - var fileName = path.basename(filePath); - var isHiddenFile = fileName[0] == "."; - if (!isHiddenFile && !detectedFiles[filePath]) { - grunt.log.error(filePath + " exists in the local file structure but isn't used by any module"); - errorsDetected = true; - } - } - }); - }); - - if (errorsDetected) { - throw new Error("Not all files were properly detected the local file structure"); - } else { - console.log("All files were detected successfully!"); - } - }); //alias tasks grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']); diff --git a/lib/grunt/validate-angular-files.js b/lib/grunt/validate-angular-files.js new file mode 100644 index 000000000000..74352abcbfab --- /dev/null +++ b/lib/grunt/validate-angular-files.js @@ -0,0 +1,58 @@ +'use strict'; + +var path = require('path'); +var fs = require('fs'); +var glob = require("glob"); +var _ = require('lodash'); +var files = require('../../angularFiles').files; + +module.exports = function(grunt) { + + grunt.registerTask('validate-angular-files', function() { + var combinedFiles = _.clone(files.angularModules); + combinedFiles.ng = files.angularSrc; + combinedFiles.angularLoader = files.angularLoader; + + var errorsDetected = false; + var directories = []; + var detectedFiles = {}; + + for (var section in combinedFiles) { + var sectionFiles = combinedFiles[section]; + + if (section != 'angularLoader') { + directories.push('src/' + section); + } + + grunt.log.debug('Validating ' + sectionFiles.length + ' files from the "' + section + '" module.'); + + sectionFiles.forEach(function(file) { + detectedFiles[file] = true; + + if (!fs.existsSync(file)) { + grunt.log.error(file + ' does not exist in the local file structure.'); + errorsDetected = true; + } + }); + } + + directories.forEach(function(directory) { + glob.sync(directory + '/**/*').forEach(function(filePath) { + if (!fs.lstatSync(filePath).isDirectory()) { + var fileName = path.basename(filePath); + var isHiddenFile = fileName[0] == '.'; + if (!isHiddenFile && !detectedFiles[filePath]) { + grunt.log.error(filePath + ' exists in the local file structure but isn\'t used by any module.'); + errorsDetected = true; + } + } + }); + }); + + if (errorsDetected) { + throw new Error('Not all files were properly detected in the local file structure.'); + } else { + grunt.log.ok('All files were detected successfully!'); + } + }); +}; From ed7777d3e100aa674640fd775807e602e3a0b17f Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 14:56:49 +0000 Subject: [PATCH 167/354] chore(GruntFile): fix whitespace in lists --- Gruntfile.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index e8f18bf507a2..f84b4e42bf62 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -233,7 +233,7 @@ module.exports = function(grunt) { }, "promises-aplus-adapter": { dest:'tmp/promises-aplus-adapter++.js', - src:['src/ng/q.js','lib/promises-aplus/promises-aplus-test-adapter.js'] + src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js'] } }, @@ -342,7 +342,7 @@ module.exports = function(grunt) { //alias tasks - grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package','test:unit','test:promises-aplus', 'tests:docs', 'test:protractor']); + grunt.registerTask('test', 'Run unit, docs and e2e tests with Karma', ['jshint', 'jscs', 'package', 'test:unit', 'test:promises-aplus', 'tests:docs', 'test:protractor']); grunt.registerTask('test:jqlite', 'Run the unit tests with Karma' , ['tests:jqlite']); grunt.registerTask('test:jquery', 'Run the jQuery unit tests with Karma', ['tests:jquery']); grunt.registerTask('test:modules', 'Run the Karma module tests with Karma', ['build', 'tests:modules']); @@ -352,11 +352,11 @@ module.exports = function(grunt) { grunt.registerTask('test:travis-protractor', 'Run the end to end tests with Protractor for Travis CI builds', ['connect:testserver', 'protractor:travis']); grunt.registerTask('test:ci-protractor', 'Run the end to end tests with Protractor for Jenkins CI builds', ['webdriver', 'connect:testserver', 'protractor:jenkins']); grunt.registerTask('test:e2e', 'Alias for test:protractor', ['test:protractor']); - grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter','shell:promises-aplus-tests']); + grunt.registerTask('test:promises-aplus',['build:promises-aplus-adapter', 'shell:promises-aplus-tests']); - grunt.registerTask('minify', ['bower','clean', 'build', 'minall']); + grunt.registerTask('minify', ['bower', 'clean', 'build', 'minall']); grunt.registerTask('webserver', ['connect:devserver']); - grunt.registerTask('package', ['bower', 'validate-angular-files','clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']); + grunt.registerTask('package', ['bower', 'validate-angular-files', 'clean', 'buildall', 'minall', 'collect-errors', 'docs', 'copy', 'write', 'compress']); grunt.registerTask('ci-checks', ['ddescribe-iit', 'merge-conflict', 'jshint', 'jscs']); grunt.registerTask('default', ['package']); }; From 2334a5101d3704f02646637c4a95200cae398fa7 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 17 Dec 2015 21:59:31 +0000 Subject: [PATCH 168/354] chore(Gruntfile): replace double quotes with single quotes --- Gruntfile.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Gruntfile.js b/Gruntfile.js index f84b4e42bf62..86139b9d03e9 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -162,7 +162,7 @@ module.exports = function(grunt) { '!src/angular.bind.js' // we ignore this file since contains an early return statement ], options: { - config: ".jscsrc" + config: '.jscsrc' } }, @@ -231,7 +231,7 @@ module.exports = function(grunt) { dest: 'build/angular-aria.js', src: util.wrap(files['angularModules']['ngAria'], 'module') }, - "promises-aplus-adapter": { + 'promises-aplus-adapter': { dest:'tmp/promises-aplus-adapter++.js', src:['src/ng/q.js', 'lib/promises-aplus/promises-aplus-test-adapter.js'] } @@ -253,7 +253,7 @@ module.exports = function(grunt) { }, - "ddescribe-iit": { + 'ddescribe-iit': { files: [ 'src/**/*.js', 'test/**/*.js', @@ -274,7 +274,7 @@ module.exports = function(grunt) { } }, - "merge-conflict": { + 'merge-conflict': { files: [ 'src/**/*', 'test/**/*', @@ -304,11 +304,11 @@ module.exports = function(grunt) { }, shell: { - "npm-install": { + 'npm-install': { command: 'node scripts/npm/check-node-modules.js' }, - "promises-aplus-tests": { + 'promises-aplus-tests': { options: { stdout: false, stderr: true, From 689c01f599fb116900971c3b03c644f34360cfaa Mon Sep 17 00:00:00 2001 From: thorn0 Date: Fri, 18 Dec 2015 02:04:29 +0200 Subject: [PATCH 169/354] refactor($parse): remove unused variables Closes: #13579 --- src/ng/parse.js | 3 --- test/ng/parseSpec.js | 9 --------- 2 files changed, 12 deletions(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index b9c280fc39a3..3d66a90a689f 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1660,9 +1660,6 @@ Parser.prototype = { } }; -var getterFnCacheDefault = createMap(); -var getterFnCacheExpensive = createMap(); - function isPossiblyDangerousMemberName(name) { return name == 'constructor'; } diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index 82c6223e86ae..a9b432bb80aa 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -2,15 +2,6 @@ describe('parser', function() { - beforeEach(function() { - /* global getterFnCacheDefault: true */ - /* global getterFnCacheExpensive: true */ - // clear caches - getterFnCacheDefault = createMap(); - getterFnCacheExpensive = createMap(); - }); - - describe('lexer', function() { var lex; From 9590bcf0620cd507a7795c55f9a6f4a48bfedbc1 Mon Sep 17 00:00:00 2001 From: Alexander Zagumennikov Date: Tue, 15 Dec 2015 14:01:35 +0400 Subject: [PATCH 170/354] fix(ngInclude): do not compile template if original scope is destroyed With slow internet connection scope may be destroyed before template is loaded. Previously in this case ngInclude compiled template that leaded to memory leaks and errors in some cases. Closes: #13515 Closes: #13543 --- src/ng/directive/ngInclude.js | 4 ++++ test/ng/directive/ngIncludeSpec.js | 20 ++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/src/ng/directive/ngInclude.js b/src/ng/directive/ngInclude.js index 2b844b84ba3d..7e3279b83ecb 100644 --- a/src/ng/directive/ngInclude.js +++ b/src/ng/directive/ngInclude.js @@ -232,6 +232,8 @@ var ngIncludeDirective = ['$templateRequest', '$anchorScroll', '$animate', //set the 2nd param to true to ignore the template request error so that the inner //contents and scope can be cleaned up. $templateRequest(src, true).then(function(response) { + if (scope.$$destroyed) return; + if (thisChangeId !== changeCounter) return; var newScope = scope.$new(); ctrl.template = response; @@ -253,6 +255,8 @@ var ngIncludeDirective = ['$templateRequest', '$anchorScroll', '$animate', currentScope.$emit('$includeContentLoaded', src); scope.$eval(onloadExp); }, function() { + if (scope.$$destroyed) return; + if (thisChangeId === changeCounter) { cleanupLastIncludeContent(); scope.$emit('$includeContentError', src); diff --git a/test/ng/directive/ngIncludeSpec.js b/test/ng/directive/ngIncludeSpec.js index a9725f8769ee..1625e31d64de 100644 --- a/test/ng/directive/ngIncludeSpec.js +++ b/test/ng/directive/ngIncludeSpec.js @@ -398,6 +398,26 @@ describe('ngInclude', function() { }); + it('should not compile template if original scope is destroyed', function() { + module(function($provide) { + $provide.decorator('$compile', function($delegate) { + return jasmine.createSpy('$compile').andCallFake($delegate); + }); + }); + inject(function($rootScope, $httpBackend, $compile) { + $httpBackend.when('GET', 'url').respond('template text'); + $rootScope.show = true; + element = $compile('
    ')($rootScope); + $rootScope.$digest(); + $rootScope.show = false; + $rootScope.$digest(); + $compile.reset(); + $httpBackend.flush(); + expect($compile).not.toHaveBeenCalled(); + }); + }); + + describe('autoscroll', function() { var autoScrollSpy; From ffc3115705ac6240b6c3fd8c3fc3886f0a609b51 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Sun, 27 Dec 2015 08:58:42 -0500 Subject: [PATCH 171/354] docs($resource): fix wording for failure - Fix mention of promise resolution on failure: resolved -> rejected Closes #13638 Closes #13624 --- src/ngResource/resource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 514e4c81b72b..a9e56cbd7a06 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -229,7 +229,7 @@ function shallowClearAndCopy(src, dst) { * {@link ngRoute.$routeProvider resolve section of $routeProvider.when()} to defer view * rendering until the resource(s) are loaded. * - * On failure, the promise is resolved with the {@link ng.$http http response} object, without + * On failure, the promise is rejected with the {@link ng.$http http response} object, without * the `resource` property. * * If an interceptor object was provided, the promise will instead be resolved with the value From cf972fd0bd6b1c0040048c3f4ec99a670e69d902 Mon Sep 17 00:00:00 2001 From: ammills01 Date: Tue, 29 Dec 2015 14:30:48 -0600 Subject: [PATCH 172/354] docs(tutorial/6 - Templating Links): fix grammar Corrected the grammar on line 62 by adding the word 'an' which forced me to move 'only' down to line 63. Closes #13651 --- docs/content/tutorial/step_06.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/tutorial/step_06.ngdoc b/docs/content/tutorial/step_06.ngdoc index e652e8a8e36b..90cb6ad7d0c1 100644 --- a/docs/content/tutorial/step_06.ngdoc +++ b/docs/content/tutorial/step_06.ngdoc @@ -59,8 +59,8 @@ the element attribute. We also added phone images next to each record using an image tag with the {@link ng.directive:ngSrc ngSrc} directive. That directive prevents the browser from treating the Angular `{{ expression }}` markup literally, and initiating a request to -invalid URL `http://localhost:8000/app/{{phone.imageUrl}}`, which it would have done if we had only -specified an attribute binding in a regular `src` attribute (``). +an invalid URL `http://localhost:8000/app/{{phone.imageUrl}}`, which it would have done if we had +only specified an attribute binding in a regular `src` attribute (``). Using the `ngSrc` directive prevents the browser from making an http request to an invalid location. From fcb6e1e96bf186ae524948e6158ff97eecbe1092 Mon Sep 17 00:00:00 2001 From: Waitaya Krongapiradee Date: Fri, 25 Dec 2015 15:21:50 -0800 Subject: [PATCH 173/354] docs(tutorial): fix some minor punctuation errors Closes #13633 --- docs/content/tutorial/index.ngdoc | 6 +++--- docs/content/tutorial/step_05.ngdoc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/content/tutorial/index.ngdoc b/docs/content/tutorial/index.ngdoc index 22139e5c1c35..f96c0a2ad5e0 100644 --- a/docs/content/tutorial/index.ngdoc +++ b/docs/content/tutorial/index.ngdoc @@ -61,7 +61,7 @@ a few git commands. ### Install Git -You can download and install Git from http://git-scm.com/download. Once installed you should have +You can download and install Git from http://git-scm.com/download. Once installed, you should have access to the `git` command line tool. The main commands that you will need to use are: - `git clone ...` : clone a remote repository onto your local machine @@ -123,7 +123,7 @@ npm --version .
    -Once you have Node.js installed on your machine you can download the tool dependencies by running: +Once you have Node.js installed on your machine, you can download the tool dependencies by running: ``` npm install @@ -198,7 +198,7 @@ http://localhost:8000/app/index.html ```
    -To serve the web app on a different ip address or port, edit the "start" script within package.json. +To serve the web app on a different IP address or port, edit the "start" script within package.json. You can use `-a` to set the address and `-p` to set the port.
    diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc index fd7135cc6f8a..c7db2889567e 100644 --- a/docs/content/tutorial/step_05.ngdoc +++ b/docs/content/tutorial/step_05.ngdoc @@ -65,7 +65,7 @@ phonecatApp.controller('PhoneListCtrl', function ($scope, $http) { `$http` makes an HTTP GET request to our web server, asking for `phones/phones.json` (the url is relative to our `index.html` file). The server responds by providing the data in the json file. (The response might just as well have been dynamically generated by a backend server. To the -browser and our app they both look the same. For the sake of simplicity we used a json file in this +browser and our app, they both look the same. For the sake of simplicity, we used a json file in this tutorial.) The `$http` service returns a {@link ng.$q promise object} with a `success` @@ -114,7 +114,7 @@ as strings, which will not get minified. There are two ways to provide these inj * Create a `$inject` property on the controller function which holds an array of strings. Each string in the array is the name of the service to inject for the corresponding parameter. - In our example we would write: + In our example, we would write: ```js function PhoneListCtrl($scope, $http) {...} From 9ac4e5a64b2dd47e0e4157d921c7cd6ec07aaaa8 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 31 Dec 2015 17:03:57 +0100 Subject: [PATCH 174/354] docs($interpolateProvider): remove superfluous ng-app attribute The example processor is adding the module attr in the example tag as the ng-app attr on the body. Closes #13608 --- src/ng/interpolate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/interpolate.js b/src/ng/interpolate.js index d070145052f8..576dd532d580 100644 --- a/src/ng/interpolate.js +++ b/src/ng/interpolate.js @@ -21,7 +21,7 @@ $interpolateMinErr.interr = function(text, err) { * Used for configuring the interpolation markup. Defaults to `{{` and `}}`. * * @example - + -
    +
    //demo.label//
    From 616695eb059133201303d98f8dc7eb6e3f8a5643 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Wed, 23 Sep 2015 23:36:34 +0200 Subject: [PATCH 175/354] docs: add docs for ngPattern, ngMinlength, ngMaxlength Closes #9991 --- src/ng/directive/validators.js | 181 +++++++++++++++++++++++++++++++++ 1 file changed, 181 insertions(+) diff --git a/src/ng/directive/validators.js b/src/ng/directive/validators.js index 474402b107cc..1eb31de0d6d8 100644 --- a/src/ng/directive/validators.js +++ b/src/ng/directive/validators.js @@ -19,7 +19,74 @@ var requiredDirective = function() { }; }; +/** + * @ngdoc directive + * @name ngPattern + * + * @description + * + * ngPattern adds the pattern {@link ngModel.NgModelController#$validators `validator`} to {@link ngModel `ngModel`}. + * It is most often used for text-based [@link input `input`} controls, but can also be applied to custom text-based controls. + * + * The validator sets the `pattern` error key if the {@link ngModel.NgModelController#$viewValue `ngModel.$viewValue`} + * does not match a RegExp which is obtained by evaluating the Angular expression given in the + * `ngPattern` attribute value: + * * If the expression evaluates to a RegExp object, then this is used directly. + * * If the expression evaluates to a string, then it will be converted to a RegExp after wrapping it + * in `^` and `$` characters. For instance, `"abc"` will be converted to `new RegExp('^abc$')`. + * + *
    + * **Note:** Avoid using the `g` flag on the RegExp, as it will cause each successive search to + * start at the index of the last search's match, thus not taking the whole input value into + * account. + *
    + * + *
    + * **Note:** This directive is also added when the plain `pattern` attribute is used, with two + * differences: + * 1. `ngPattern` does not set the `pattern` attribute and therefore not HTML5 constraint validation + * is available. + * 2. The `ngPattern` attribute must be an expression, while the `pattern` value must be interpolated + *
    + * + * @example + * + * + * + *
    + * + * + * + *
    + * + *
    + *
    + * input valid? = {{form.input.$valid}}
    + * model = {{model}} + * + *
    + *
    + * + var model = element(by.binding('model')); + var input = element(by.id('input')); + it('should validate the input with the default pattern', function() { + input.sendKeys('aaa'); + expect(model.getText()).not.toContain('aaa'); + + input.clear().then(function() { + input.sendKeys('123'); + expect(model.getText()).toContain('123'); + }); + }); + * + *
    + */ var patternDirective = function() { return { restrict: 'A', @@ -51,7 +118,65 @@ var patternDirective = function() { }; }; +/** + * @ngdoc directive + * @name ngMaxlength + * + * @description + * + * ngMaxlength adds the maxlength {@link ngModel.NgModelController#$validators `validator`} to {@link ngModel `ngModel`}. + * It is most often used for text-based [@link input `input`} controls, but can also be applied to custom text-based controls. + * + * The validator sets the `maxlength` error key if the {@link ngModel.NgModelController#$viewValue `ngModel.$viewValue`} + * is longer than the integer obtained by evaluating the Angular expression given in the + * `ngMaxlength` attribute value. + * + *
    + * **Note:** This directive is also added when the plain `maxlength` attribute is used, with two + * differences: + * 1. `ngMaxlength` does not set the `maxlength` attribute and therefore not HTML5 constraint validation + * is available. + * 2. The `ngMaxlength` attribute must be an expression, while the `maxlength` value must be interpolated + *
    + * + * @example + * + * + * + *
    + *
    + * + * + *
    + * + *
    + *
    + * input valid? = {{form.input.$valid}}
    + * model = {{model}} + *
    + *
    + *
    + * + * var model = element(by.binding('model')); + var input = element(by.id('input')); + + it('should validate the input with the default maxlength', function() { + input.sendKeys('abcdef'); + expect(model.getText()).not.toContain('abcdef'); + input.clear().then(function() { + input.sendKeys('abcde'); + expect(model.getText()).toContain('abcde'); + }); + }); + * + *
    + */ var maxlengthDirective = function() { return { restrict: 'A', @@ -72,6 +197,62 @@ var maxlengthDirective = function() { }; }; +/** + * @ngdoc directive + * @name ngMinlength + * + * @description + * + * ngMinlength adds the minlength {@link ngModel.NgModelController#$validators `validator`} to {@link ngModel `ngModel`}. + * It is most often used for text-based [@link input `input`} controls, but can also be applied to custom text-based controls. + * + * The validator sets the `minlength` error key if the {@link ngModel.NgModelController#$viewValue `ngModel.$viewValue`} + * is shorter than the integer obtained by evaluating the Angular expression given in the + * `ngMinlength` attribute value. + * + *
    + * **Note:** This directive is also added when the plain `minlength` attribute is used, with two + * differences: + * 1. `ngMinlength` does not set the `minlength` attribute and therefore not HTML5 constraint validation + * is available. + * 2. The `ngMinlength` value must be an expression, while the `minlength` value must be interpolated + *
    + * + * @example + * + * + * + *
    + *
    + * + * + *
    + * + *
    + *
    + * input valid? = {{form.input.$valid}}
    + * model = {{model}} + *
    + *
    + *
    + * + * var model = element(by.binding('model')); + * + * it('should validate the input with the default minlength', function() { + * element(by.id('input')).sendKeys('ab'); + * expect(model.getText()).not.toContain('ab'); + * + * element(by.id('input')).sendKeys('abc'); + * expect(model.getText()).toContain('abc'); + * }); + * + *
    + */ var minlengthDirective = function() { return { restrict: 'A', From d558dc5f95eb283e839aecc6b9de85baa589cb1a Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sat, 5 Dec 2015 19:42:57 +0100 Subject: [PATCH 176/354] docs: reorganize information about interpolation - Move interpolation info from Directive guide into new interpolation guide - Add information about boolean attributes to interpolation guide - remove wroong examples from prefixed boolean attribute docs, link to interpolation guide instead - mention additional examples for attributes that benefit from ngAttr - add docs for ngRequired directive --- docs/content/guide/directive.ngdoc | 57 ---------- docs/content/guide/expression.ngdoc | 7 +- docs/content/guide/interpolation.ngdoc | 142 +++++++++++++++++++++++++ src/ng/compile.js | 3 +- src/ng/directive/attrs.js | 63 ++++------- src/ng/directive/validators.js | 58 +++++++++- 6 files changed, 225 insertions(+), 105 deletions(-) create mode 100644 docs/content/guide/interpolation.ngdoc diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index a277e5f7ee5d..6e0d9d1a32bc 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -141,63 +141,6 @@ directives when possible.
    - -### Text and attribute bindings - -During the compilation process the {@link ng.$compile compiler} matches text and attributes -using the {@link ng.$interpolate $interpolate} service to see if they contain embedded -expressions. These expressions are registered as {@link ng.$rootScope.Scope#$watch watches} -and will update as part of normal {@link ng.$rootScope.Scope#$digest digest} cycle. An -example of interpolation is shown below: - -```html -Hello {{username}}! -``` - - -### `ngAttr` attribute bindings - -Web browsers are sometimes picky about what values they consider valid for attributes. - -For example, considering this template: - -```html - - - -``` - -We would expect Angular to be able to bind to this, but when we check the console we see -something like `Error: Invalid value for attribute cx="{{cx}}"`. Because of the SVG DOM API's -restrictions, you cannot simply write `cx="{{cx}}"`. - -With `ng-attr-cx` you can work around this problem. - -If an attribute with a binding is prefixed with the `ngAttr` prefix (denormalized as `ng-attr-`) -then during the binding it will be applied to the corresponding unprefixed attribute. This allows -you to bind to attributes that would otherwise be eagerly processed by browsers -(e.g. an SVG element's `circle[cx]` attributes). When using `ngAttr`, the `allOrNothing` flag of -{@link ng.$interpolate $interpolate} is used, so if any expression in the interpolated string -results in `undefined`, the attribute is removed and not added to the element. - -For example, we could fix the example above by instead writing: - -```html - - - -``` - -If one wants to modify a camelcased attribute (SVG elements have valid camelcased attributes), such as `viewBox` on the `svg` element, one can use underscores to denote that the attribute to bind to is naturally camelcased. - -For example, to bind to `viewBox`, we can write: - -```html - - -``` - - ## Creating Directives First let's talk about the {@link ng.$compileProvider#directive API for registering directives}. Much like diff --git a/docs/content/guide/expression.ngdoc b/docs/content/guide/expression.ngdoc index b0e9816740ee..8e62fcf036fd 100644 --- a/docs/content/guide/expression.ngdoc +++ b/docs/content/guide/expression.ngdoc @@ -5,8 +5,9 @@ # Angular Expressions -Angular expressions are JavaScript-like code snippets that are usually placed in bindings such as -`{{ expression }}`. +Angular expressions are JavaScript-like code snippets that are mainly placed in +interpolation bindings such as `{{ textBinding }}`, +but also used directly in directive attributes such as `ng-click="functionExpression()"`. For example, these are valid expressions in Angular: @@ -282,7 +283,7 @@ result is a non-undefined value (see value stabilization algorithm below).
    -### Why this feature +### Reasons for using one-time binding The main purpose of one-time binding expression is to provide a way to create a binding that gets deregistered and frees up resources once the binding is stabilized. diff --git a/docs/content/guide/interpolation.ngdoc b/docs/content/guide/interpolation.ngdoc new file mode 100644 index 000000000000..2b53da63124d --- /dev/null +++ b/docs/content/guide/interpolation.ngdoc @@ -0,0 +1,142 @@ +@ngdoc overview +@name Interpolation +@sortOrder 275 +@description + +# Interpolation and data-binding + +Interpolation markup with embedded @link {guide/expressions expressions} is used by Angular to +provide data-binding to text nodes and attribute values. + +An example of interpolation is shown below: + +```html +Hello {{username}}! +``` + +### How text and attribute bindings work + +During the compilation process the {@link ng.$compile compiler} uses the {@link ng.$interpolate $interpolate} +service to see if text nodes and element attributes contain interpolation markup with embedded expressions. + +If that is the case, the compiler adds an interpolateDirective to the node and +registers {@link ng.$rootScope.Scope#$watch watches} on the computed interpolation function, +which will update the corresponding text nodes or attribute values as part of the +normal {@link ng.$rootScope.Scope#$digest digest} cycle. + +Note that the interpolateDirective has a priority of 100 and sets up the watch in the preLink function. + +### Binding to boolean attributes + +Attributes such as `disabled` are called `boolean` attributes, because their presence means `true` and +their absence means `false`. We cannot use normal attribute bindings with them, because the HTML +specification does not require browsers to preserve the values of boolean attributes. This means that +if we put an Angular interpolation expression into such an attribute then the binding information +would be lost, because the browser ignores the attribute value. + +In the following example, the interpolation information would be ignored and the browser would simply +interpret the attribute as present, meaning that the button would always be disabled. + + ```html + Disabled: + +``` + +For this reason, Angular provides special `ng`-prefixed directives for the following boolean attributes: +{@link ngDisabled `disabled`}, [@link ngRequired `required`}, [@link ngSelected `selected`}, +{@link ngChecked `checked`}, {@link ngReadonly `readOnly`} , and [@link ngOpen `open`}. + +These directives take an expression inside the attribute, and set the corresponding boolean attribute +to true when the expression evaluates to truthy. + + ```html + Disabled: + +``` + +### `ngAttr` for binding to arbitrary attributes + +Web browsers are sometimes picky about what values they consider valid for attributes. + +For example, considering this template: + +```html + + + +``` + +We would expect Angular to be able to bind to this, but when we check the console we see +something like `Error: Invalid value for attribute cx="{{cx}}"`. Because of the SVG DOM API's +restrictions, you cannot simply write `cx="{{cx}}"`. + +With `ng-attr-cx` you can work around this problem. + +If an attribute with a binding is prefixed with the `ngAttr` prefix (denormalized as `ng-attr-`) +then during the binding it will be applied to the corresponding unprefixed attribute. This allows +you to bind to attributes that would otherwise be eagerly processed by browsers +(e.g. an SVG element's `circle[cx]` attributes). When using `ngAttr`, the `allOrNothing` flag of +{@link ng.$interpolate $interpolate} is used, so if any expression in the interpolated string +results in `undefined`, the attribute is removed and not added to the element. + +For example, we could fix the example above by instead writing: + +```html + + + +``` + +If one wants to modify a camelcased attribute (SVG elements have valid camelcased attributes), +such as `viewBox` on the `svg` element, one can use underscores to denote that the attribute to bind +to is naturally camelcased. + +For example, to bind to `viewBox`, we can write: + +```html + + +``` + +The following attributes are also known to cause problems when used with normal bindings: + +- **size** in `'); helper.changeInputValueTo('a\nb'); expect($rootScope.list).toEqual(['a','b']); }); From da04571dbc83f6caa9d12a98c2a91a99c01e70ad Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 6 Jan 2016 09:54:57 +0200 Subject: [PATCH 193/354] refct(privateMocks): remove unused argument from `createMockStyleSheet()` --- test/helpers/privateMocks.js | 3 +-- test/helpers/privateMocksSpec.js | 2 +- test/ng/directive/ngRepeatSpec.js | 4 ++-- test/ngAnimate/animateCssDriverSpec.js | 4 ++-- test/ngAnimate/animateCssSpec.js | 4 ++-- test/ngAnimate/integrationSpec.js | 4 ++-- test/ngMock/angular-mocksSpec.js | 4 ++-- 7 files changed, 12 insertions(+), 13 deletions(-) diff --git a/test/helpers/privateMocks.js b/test/helpers/privateMocks.js index 637f19ebf97c..d871c17ad0d9 100644 --- a/test/helpers/privateMocks.js +++ b/test/helpers/privateMocks.js @@ -40,9 +40,8 @@ function browserSupportsCssAnimations() { return true; } -function createMockStyleSheet(doc, wind) { +function createMockStyleSheet(doc) { doc = doc ? doc[0] : document; - wind = wind || window; var node = doc.createElement('style'); var head = doc.getElementsByTagName('head')[0]; diff --git a/test/helpers/privateMocksSpec.js b/test/helpers/privateMocksSpec.js index 495dcb60c6ef..c584b1d33c39 100644 --- a/test/helpers/privateMocksSpec.js +++ b/test/helpers/privateMocksSpec.js @@ -211,7 +211,7 @@ describe('private mocks', function() { var doc = $document[0]; var count = doc.styleSheets.length; - var stylesheet = createMockStyleSheet($document, $window); + var stylesheet = createMockStyleSheet($document); var elm; runs(function() { expect(doc.styleSheets.length).toBe(count + 1); diff --git a/test/ng/directive/ngRepeatSpec.js b/test/ng/directive/ngRepeatSpec.js index 4523718b64f0..e91939ca3194 100644 --- a/test/ng/directive/ngRepeatSpec.js +++ b/test/ng/directive/ngRepeatSpec.js @@ -1491,11 +1491,11 @@ describe('ngRepeat animations', function() { })); it('should not change the position of the block that is being animated away via a leave animation', - inject(function($compile, $rootScope, $animate, $document, $window, $sniffer, $timeout) { + inject(function($compile, $rootScope, $animate, $document, $sniffer, $timeout) { if (!$sniffer.transitions) return; var item; - var ss = createMockStyleSheet($document, $window); + var ss = createMockStyleSheet($document); try { diff --git a/test/ngAnimate/animateCssDriverSpec.js b/test/ngAnimate/animateCssDriverSpec.js index 97567e4c053e..abc4eefa7a89 100644 --- a/test/ngAnimate/animateCssDriverSpec.js +++ b/test/ngAnimate/animateCssDriverSpec.js @@ -69,11 +69,11 @@ describe("ngAnimate $$animateCssDriver", function() { element = jqLite('
    '); - return function($$animateCssDriver, $document, $window) { + return function($$animateCssDriver, $document) { driver = function(details, cb) { return $$animateCssDriver(details, cb || noop); }; - ss = createMockStyleSheet($document, $window); + ss = createMockStyleSheet($document); }; })); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index e43dd89a912c..aaadf165026b 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -28,9 +28,9 @@ describe("ngAnimate $animateCss", function() { var ss, prefix, triggerAnimationStartFrame; beforeEach(module(function() { - return function($document, $window, $sniffer, $$rAF, $animate) { + return function($document, $sniffer, $$rAF, $animate) { prefix = '-' + $sniffer.vendorPrefix.toLowerCase() + '-'; - ss = createMockStyleSheet($document, $window); + ss = createMockStyleSheet($document); $animate.enabled(true); triggerAnimationStartFrame = function() { $$rAF.flush(); diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index 1ddbc64b8de5..f506e53aee74 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -7,10 +7,10 @@ describe('ngAnimate integration tests', function() { var element, html, ss; beforeEach(module(function() { - return function($rootElement, $document, $window, $animate) { + return function($rootElement, $document, $animate) { $animate.enabled(true); - ss = createMockStyleSheet($document, $window); + ss = createMockStyleSheet($document); var body = jqLite($document[0].body); html = function(element) { diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 11836c13723c..05b9b8381088 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1866,8 +1866,8 @@ describe('ngMockE2E', function() { } }); - return function($animate, $rootElement, $document, $rootScope, $window) { - ss = createMockStyleSheet($document, $window); + return function($animate, $rootElement, $document, $rootScope) { + ss = createMockStyleSheet($document); element = angular.element('
    '); $rootElement.append(element); From 0a641c01815b8bd387696a4165dbca9c613b4ace Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 6 Jan 2016 09:54:57 +0200 Subject: [PATCH 194/354] test: fix failing tests on MS Edge Includes the following fixes (per component): * `$sniffer`: Properly determine the expected `vendorPrefix` for MS Edge * `input`: MS Edge does not support dates with years with more than 4 digits. Trying to set the value of an `input[datetime-local]` to `9999-12-31T23.59.59.999` throws an error (probably related to converting the date to one with a year with more than 4 digits, due to timezone offset). * `$animateCss`: Although the detected `vendorPrefix` for MS Edge is "ms", it doesn't seem to recognize some vendor-prefixed CSS rules (e.g. `-ms-animation-*`). Other browsers (currently) recognize either vendor-prefixed rules only or both. Fixed by adding and retrieving styles using both prefixed and un-prefixed names. * `$compile`: Skip failing `foreignObject` test on MS Edge. For unknown reasons, an `` element inside a `` element on MS Edge has no size, causing the included `` element to also have no size and thus fails an assertion (relying on the element having a non-zero size). This seems to be an MS Edge issue; i.e. it is also reproducible without Angular. (Tested with MS Edge version 25.10586.0.0 on Windows 10.) Closes #13686 --- test/helpers/privateMocks.js | 14 ++++- test/ng/compileSpec.js | 27 ++++---- test/ng/directive/inputSpec.js | 2 +- test/ng/snifferSpec.js | 4 +- test/ngAnimate/animateCssSpec.js | 104 +++++++++++++++++-------------- 5 files changed, 89 insertions(+), 62 deletions(-) diff --git a/test/helpers/privateMocks.js b/test/helpers/privateMocks.js index d871c17ad0d9..ae57f116cc0e 100644 --- a/test/helpers/privateMocks.js +++ b/test/helpers/privateMocks.js @@ -40,7 +40,7 @@ function browserSupportsCssAnimations() { return true; } -function createMockStyleSheet(doc) { +function createMockStyleSheet(doc, prefix) { doc = doc ? doc[0] : document; var node = doc.createElement('style'); @@ -62,6 +62,18 @@ function createMockStyleSheet(doc) { } }, + addPossiblyPrefixedRule: function(selector, styles) { + if (prefix) { + var prefixedStyles = styles.split(/\s*;\s*/g).map(function(style) { + return !style ? '' : prefix + style; + }).join('; '); + + this.addRule(selector, prefixedStyles); + } + + this.addRule(selector, styles); + }, + destroy: function() { head.removeChild(node); } diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 86cebbb3fc65..bee18f756dd3 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -230,6 +230,9 @@ describe('$compile', function() { describe('svg namespace transcludes', function() { + var ua = window.navigator.userAgent; + var isEdge = /Edge/.test(ua); + // this method assumes some sort of sized SVG element is being inspected. function assertIsValidSvgCircle(elem) { expect(isUnknownElement(elem)).toBe(false); @@ -300,17 +303,19 @@ describe('$compile', function() { })); // NOTE: This test may be redundant. - it('should handle custom svg containers that transclude to foreignObject' + - ' that transclude to custom svg containers that transclude to custom elements', inject(function() { - element = jqLite('
    ' + - '' + - '
    '); - $compile(element.contents())($rootScope); - document.body.appendChild(element[0]); - - var circle = element.find('circle'); - assertIsValidSvgCircle(circle[0]); - })); + if (!isEdge) { + it('should handle custom svg containers that transclude to foreignObject' + + ' that transclude to custom svg containers that transclude to custom elements', inject(function() { + element = jqLite('
    ' + + '' + + '
    '); + $compile(element.contents())($rootScope); + document.body.appendChild(element[0]); + + var circle = element.find('circle'); + assertIsValidSvgCircle(circle[0]); + })); + } } it('should handle directives with templates that manually add the transclude further down', inject(function() { diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 58689c0eea5f..b8ba4ed924d2 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -1196,7 +1196,7 @@ describe('input', function() { it('should validate if max is empty', function() { $rootScope.maxVal = undefined; - $rootScope.value = new Date(9999, 11, 31, 23, 59, 59); + $rootScope.value = new Date(3000, 11, 31, 23, 59, 59); $rootScope.$digest(); expect($rootScope.form.alias.$error.max).toBeFalsy(); diff --git a/test/ng/snifferSpec.js b/test/ng/snifferSpec.js index c16d4802d966..b1fafceff36d 100644 --- a/test/ng/snifferSpec.js +++ b/test/ng/snifferSpec.js @@ -88,7 +88,9 @@ describe('$sniffer', function() { inject(function($sniffer, $window) { var expectedPrefix; var ua = $window.navigator.userAgent.toLowerCase(); - if (/chrome/i.test(ua) || /safari/i.test(ua) || /webkit/i.test(ua)) { + if (/edge/i.test(ua)) { + expectedPrefix = 'Ms'; + } else if (/chrome/i.test(ua) || /safari/i.test(ua) || /webkit/i.test(ua)) { expectedPrefix = 'Webkit'; } else if (/firefox/i.test(ua)) { expectedPrefix = 'Moz'; diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index aaadf165026b..c8939d60252f 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -12,6 +12,13 @@ describe("ngAnimate $animateCss", function() { : expect(className).not.toMatch(regex); } + function getPossiblyPrefixedStyleValue(element, styleProp) { + var value = element.css(prefix + styleProp); + if (isUndefined(value)) value = element.css(styleProp); + + return value; + } + function keyframeProgress(element, duration, delay) { browserTrigger(element, 'animationend', { timeStamp: Date.now() + ((delay || 1) * 1000), elapsedTime: duration }); @@ -30,7 +37,8 @@ describe("ngAnimate $animateCss", function() { beforeEach(module(function() { return function($document, $sniffer, $$rAF, $animate) { prefix = '-' + $sniffer.vendorPrefix.toLowerCase() + '-'; - ss = createMockStyleSheet($document); + ss = createMockStyleSheet($document, prefix); + $animate.enabled(true); triggerAnimationStartFrame = function() { $$rAF.flush(); @@ -325,7 +333,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); runner.pause(); - expect(element.css(prefix + 'animation-play-state')).toEqual('paused'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-play-state')).toEqual('paused'); runner.resume(); expect(element.attr('style')).toBeFalsy(); })); @@ -346,7 +354,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); runner.pause(); - expect(element.css(prefix + 'animation-play-state')).toEqual('paused'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-play-state')).toEqual('paused'); runner.end(); expect(element.attr('style')).toBeFalsy(); })); @@ -784,8 +792,8 @@ describe("ngAnimate $animateCss", function() { jqLite($document[0].body).append($rootElement); - ss.addRule('.ng-enter-stagger', prefix + 'animation-delay:0.2s'); - ss.addRule('.ng-enter', prefix + 'animation:my_animation 2s;'); + ss.addPossiblyPrefixedRule('.ng-enter-stagger', 'animation-delay:0.2s'); + ss.addPossiblyPrefixedRule('.ng-enter', 'animation:my_animation 2s;'); var i, element, elements = []; for (i = 0; i < 5; i++) { @@ -803,7 +811,7 @@ describe("ngAnimate $animateCss", function() { if (i === 0) { // the first element is always run right away expect(element.attr('style')).toBeFalsy(); } else { - expect(element.css(prefix + 'animation-play-state')).toBe('paused'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-play-state')).toBe('paused'); } } })); @@ -879,7 +887,7 @@ describe("ngAnimate $animateCss", function() { jqLite($document[0].body).append($rootElement); ss.addRule('.ng-enter-stagger', 'transition-delay:0.2s'); - ss.addRule('.transition-animation', prefix + 'animation:2s 5s my_animation;'); + ss.addPossiblyPrefixedRule('.transition-animation', 'animation: 2s 5s my_animation;'); for (var i = 0; i < 5; i++) { var elm = jqLite('
    '); @@ -898,11 +906,11 @@ describe("ngAnimate $animateCss", function() { jqLite($document[0].body).append($rootElement); - ss.addRule('.ng-enter-stagger', 'transition-delay:0.5s;' + - prefix + 'animation-delay:1s'); + ss.addPossiblyPrefixedRule('.ng-enter-stagger', 'transition-delay: 0.5s; ' + + 'animation-delay: 1s'); - ss.addRule('.ng-enter', 'transition:10s linear all;' + - prefix + 'animation:my_animation 20s'); + ss.addPossiblyPrefixedRule('.ng-enter', 'transition: 10s linear all; ' + + 'animation: 20s my_animation'); var i, elm, elements = []; for (i = 0; i < 5; i++) { @@ -1258,14 +1266,14 @@ describe("ngAnimate $animateCss", function() { // At this point, the animation should still be running (closing timeout is 7500ms ... duration * 1.5 + delay => 7.5) $timeout.flush(7000); - expect(element.css(prefix + 'transition-delay')).toBe('3s'); - expect(element.css(prefix + 'transition-duration')).toBe('3s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toBe('3s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).toBe('3s'); // Let's flush the remaining amount of time for the timeout timer to kick in $timeout.flush(500); - expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); - expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).toBeOneOf('', '0s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toBeOneOf('', '0s'); })); it("should ignore a boolean options.delay value for the closing timeout", @@ -1291,14 +1299,14 @@ describe("ngAnimate $animateCss", function() { // At this point, the animation should still be running (closing timeout is 4500ms ... duration * 1.5 => 4.5) $timeout.flush(4000); - expect(element.css(prefix + 'transition-delay')).toBeOneOf('initial', '0s'); - expect(element.css(prefix + 'transition-duration')).toBe('3s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toBeOneOf('initial', '0s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).toBe('3s'); // Let's flush the remaining amount of time for the timeout timer to kick in $timeout.flush(500); - expect(element.css(prefix + 'transition-duration')).toBeOneOf('', '0s'); - expect(element.css(prefix + 'transition-delay')).toBeOneOf('', '0s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).toBeOneOf('', '0s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toBeOneOf('', '0s'); })); }); @@ -2104,7 +2112,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-duration')).toEqual('5s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-duration')).toEqual('5s'); })); it("should remove all inline keyframe styling when an animation completes if a custom duration was applied", @@ -2145,7 +2153,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toEqual('5s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('5s'); browserTrigger(element, 'animationend', { timeStamp: Date.now() + 5000, elapsedTime: 1.5 }); @@ -2299,7 +2307,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toEqual('400s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('400s'); expect(element.attr('style')).not.toContain('transition-delay'); })); @@ -2323,7 +2331,7 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toEqual('10s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('10s'); expect(element.css('transition-delay')).toEqual('10s'); })); @@ -2363,7 +2371,7 @@ describe("ngAnimate $animateCss", function() { var assertionsRun = false; classSpy = function() { assertionsRun = true; - expect(element.css(prefix + 'animation-delay')).toEqual('2s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('2s'); expect(element.css('transition-delay')).toEqual('2s'); expect(element).not.toHaveClass('superman'); }; @@ -2397,8 +2405,8 @@ describe("ngAnimate $animateCss", function() { it("should consider a negative value when delay:true is used with a keyframe animation", inject(function($animateCss, $rootElement) { - ss.addRule('.ng-enter', prefix + 'animation:2s keyframe_animation; ' + - prefix + 'animation-delay: -1s;'); + ss.addPossiblyPrefixedRule('.ng-enter', 'animation: 2s keyframe_animation; ' + + 'animation-delay: -1s;'); var options = { delay: true, @@ -2411,7 +2419,7 @@ describe("ngAnimate $animateCss", function() { animator.start(); triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toContain('-1s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toContain('-1s'); })); they("should consider a negative value when a negative option delay is provided for a $prop animation", { @@ -2421,17 +2429,17 @@ describe("ngAnimate $animateCss", function() { css: 'transition:2s linear all' }; }, - 'keyframe': function(prefix) { + 'keyframe': function() { return { - prop: prefix + 'animation-delay', - css: prefix + 'animation:2s keyframe_animation' + prop: 'animation-delay', + css: 'animation: 2s keyframe_animation' }; } }, function(testDetailsFactory) { inject(function($animateCss, $rootElement) { var testDetails = testDetailsFactory(prefix); - ss.addRule('.ng-enter', testDetails.css); + ss.addPossiblyPrefixedRule('.ng-enter', testDetails.css); var options = { delay: -2, event: 'enter', @@ -2443,7 +2451,7 @@ describe("ngAnimate $animateCss", function() { animator.start(); triggerAnimationStartFrame(); - expect(element.css(testDetails.prop)).toContain('-2s'); + expect(getPossiblyPrefixedStyleValue(element, testDetails.prop)).toContain('-2s'); }); }); @@ -2454,18 +2462,18 @@ describe("ngAnimate $animateCss", function() { css: 'transition:5s linear all; transition-delay: -2s' }; }, - 'animation': function(prefix) { + 'animation': function() { return { event: 'animationend', - css: prefix + 'animation:5s keyframe_animation; ' + prefix + 'animation-delay: -2s;' + css: 'animation: 5s keyframe_animation; animation-delay: -2s;' }; } }, function(testDetailsFactory) { inject(function($animateCss, $rootElement) { - var testDetails = testDetailsFactory(prefix); + var testDetails = testDetailsFactory(); var event = testDetails.event; - ss.addRule('.ng-enter', testDetails.css); + ss.addPossiblyPrefixedRule('.ng-enter', testDetails.css); var options = { event: 'enter', structural: true }; var animator = $animateCss(element, options); @@ -2571,15 +2579,15 @@ describe("ngAnimate $animateCss", function() { $animateCss(element, options).start(); triggerAnimationStartFrame(); - expect(element.css(prefix + 'transition-delay')).not.toEqual('4s'); - expect(element.css(prefix + 'transition-duration')).not.toEqual('6s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).not.toEqual('4s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).not.toEqual('6s'); options.to = { color: 'brown' }; $animateCss(element, options).start(); triggerAnimationStartFrame(); - expect(element.css(prefix + 'transition-delay')).toEqual('4s'); - expect(element.css(prefix + 'transition-duration')).toEqual('6s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toEqual('4s'); + expect(getPossiblyPrefixedStyleValue(element, 'transition-duration')).toEqual('6s'); })); }); @@ -2652,9 +2660,9 @@ describe("ngAnimate $animateCss", function() { triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toEqual('50s'); - expect(element.css(prefix + 'animation-duration')).toEqual('5.5s'); - expect(element.css(prefix + 'animation-name')).toEqual('my_animation'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('50s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-duration')).toEqual('5.5s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-name')).toEqual('my_animation'); })); it("should be able to execute the animation if it is the only provided value", @@ -2669,9 +2677,9 @@ describe("ngAnimate $animateCss", function() { animator.start(); triggerAnimationStartFrame(); - expect(element.css(prefix + 'animation-delay')).toEqual('10s'); - expect(element.css(prefix + 'animation-duration')).toEqual('5.5s'); - expect(element.css(prefix + 'animation-name')).toEqual('my_animation'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-delay')).toEqual('10s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-duration')).toEqual('5.5s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-name')).toEqual('my_animation'); })); }); @@ -2964,7 +2972,7 @@ describe("ngAnimate $animateCss", function() { expect(element.css('transition-duration')).toMatch('10s'); - expect(element.css(prefix + 'animation-duration')).toEqual('10s'); + expect(getPossiblyPrefixedStyleValue(element, 'animation-duration')).toEqual('10s'); })); }); @@ -3004,7 +3012,7 @@ describe("ngAnimate $animateCss", function() { inject(function($animateCss) { ss.addRule('.red', 'transition: 1s linear all;'); - ss.addRule('.blue', prefix + 'animation:my_keyframe 1s;'); + ss.addPossiblyPrefixedRule('.blue', 'animation: 1s my_keyframe;'); var easing = 'ease-out'; var animator = $animateCss(element, { addClass: 'red blue', easing: easing }); animator.start(); From 2563ff7ba92d84af978e7e4131253190d4d00c20 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Mon, 11 Jan 2016 17:14:32 +0200 Subject: [PATCH 195/354] fix($controller): allow identifiers containing `$` As discussed in https://github.com/angular/angular.js/issues/13664#issuecomment-170536024. Closes #13736 --- src/ng/controller.js | 2 +- test/ng/controllerSpec.js | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/src/ng/controller.js b/src/ng/controller.js index 4e64f3417a88..389f869c9888 100644 --- a/src/ng/controller.js +++ b/src/ng/controller.js @@ -3,7 +3,7 @@ var $controllerMinErr = minErr('$controller'); -var CNTRL_REG = /^(\S+)(\s+as\s+(\w+))?$/; +var CNTRL_REG = /^(\S+)(\s+as\s+([\w$]+))?$/; function identifierForController(controller, ident) { if (ident && isString(ident)) return ident; if (isString(controller)) { diff --git a/test/ng/controllerSpec.js b/test/ng/controllerSpec.js index 839e3310c5e6..253623d05a42 100644 --- a/test/ng/controllerSpec.js +++ b/test/ng/controllerSpec.js @@ -209,5 +209,16 @@ describe('$controller', function() { "Badly formed controller string 'ctrl as'. " + "Must match `__name__ as __id__` or `__name__`."); }); + + + it('should allow identifiers containing `$`', function() { + var scope = {}; + + $controllerProvider.register('FooCtrl', function() { this.mark = 'foo'; }); + + var foo = $controller('FooCtrl as $foo', {$scope: scope}); + expect(scope.$foo).toBe(foo); + expect(scope.$foo.mark).toBe('foo'); + }); }); }); From 512c08118786a419fabbd063fa17d224aba125cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 17 Dec 2015 13:25:33 -0800 Subject: [PATCH 196/354] feat(ngMock): add support for `$animate.closeAndFlush()` Use `$animate.closeAndFlush()` to close all running animations. Includes a fix that landed separately in the master branch: a801df719ea8b5996676d4e7a88a26a5ece471e7 --- src/AngularPublic.js | 2 + src/ng/animate.js | 4 ++ src/ngAnimate/animateCss.js | 6 +-- src/ngAnimate/animateJs.js | 33 ++++++++++-- src/ngMock/angular-mocks.js | 86 ++++++++++++++++++++++++++++++-- test/ngMock/angular-mocksSpec.js | 84 ++++++++++++++++++++++++++++++- 6 files changed, 202 insertions(+), 13 deletions(-) diff --git a/src/AngularPublic.js b/src/AngularPublic.js index b5be4e53acdf..70ca29511405 100644 --- a/src/AngularPublic.js +++ b/src/AngularPublic.js @@ -56,6 +56,7 @@ $AnchorScrollProvider, $AnimateProvider, $CoreAnimateCssProvider, + $$CoreAnimateJsProvider, $$CoreAnimateQueueProvider, $$AnimateRunnerFactoryProvider, $$AnimateAsyncRunFactoryProvider, @@ -217,6 +218,7 @@ function publishExternalAPI(angular) { $anchorScroll: $AnchorScrollProvider, $animate: $AnimateProvider, $animateCss: $CoreAnimateCssProvider, + $$animateJs: $$CoreAnimateJsProvider, $$animateQueue: $$CoreAnimateQueueProvider, $$AnimateRunner: $$AnimateRunnerFactoryProvider, $$animateAsyncRun: $$AnimateAsyncRunFactoryProvider, diff --git a/src/ng/animate.js b/src/ng/animate.js index 6df23c4179ec..ec1a509774cd 100644 --- a/src/ng/animate.js +++ b/src/ng/animate.js @@ -53,6 +53,10 @@ function prepareAnimateOptions(options) { : {}; } +var $$CoreAnimateJsProvider = function() { + this.$get = function() {}; +}; + // this is prefixed with Core since it conflicts with // the animateQueueProvider defined in ngAnimate/animateQueue.js var $$CoreAnimateQueueProvider = function() { diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 8bb6bc395956..c2df5b16e3a6 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -352,9 +352,9 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { var gcsStaggerLookup = createLocalCacheLookup(); this.$get = ['$window', '$$jqLite', '$$AnimateRunner', '$timeout', - '$$forceReflow', '$sniffer', '$$rAFScheduler', '$animate', + '$$forceReflow', '$sniffer', '$$rAFScheduler', '$$animateQueue', function($window, $$jqLite, $$AnimateRunner, $timeout, - $$forceReflow, $sniffer, $$rAFScheduler, $animate) { + $$forceReflow, $sniffer, $$rAFScheduler, $$animateQueue) { var applyAnimationClasses = applyAnimationClassesFactory($$jqLite); @@ -456,7 +456,7 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { var node = getDomNode(element); if (!node || !node.parentNode - || !$animate.enabled()) { + || !$$animateQueue.enabled()) { return closeAndReturnNoopAnimator(); } diff --git a/src/ngAnimate/animateJs.js b/src/ngAnimate/animateJs.js index ef356cb2a30e..d8ec683b5f40 100644 --- a/src/ngAnimate/animateJs.js +++ b/src/ngAnimate/animateJs.js @@ -11,6 +11,8 @@ var $$AnimateJsProvider = ['$animateProvider', function($animateProvider) { var applyAnimationClasses = applyAnimationClassesFactory($$jqLite); // $animateJs(element, 'enter'); return function(element, event, classes, options) { + var animationClosed = false; + // the `classes` argument is optional and if it is not used // then the classes will be resolved from the element's className // property as well as options.addClass/options.removeClass. @@ -63,8 +65,32 @@ var $$AnimateJsProvider = ['$animateProvider', function($animateProvider) { applyAnimationClasses(element, options); } + function close() { + animationClosed = true; + applyOptions(); + applyAnimationStyles(element, options); + } + + var runner; + return { + $$willAnimate: true, + end: function() { + if (runner) { + runner.end(); + } else { + close(); + runner = new $$AnimateRunner(); + runner.complete(true); + } + return runner; + }, start: function() { + if (runner) { + return runner; + } + + runner = new $$AnimateRunner(); var closeActiveAnimations; var chain = []; @@ -89,8 +115,7 @@ var $$AnimateJsProvider = ['$animateProvider', function($animateProvider) { }); } - var animationClosed = false; - var runner = new $$AnimateRunner({ + runner.setHost({ end: function() { endAnimations(); }, @@ -103,9 +128,7 @@ var $$AnimateJsProvider = ['$animateProvider', function($animateProvider) { return runner; function onComplete(success) { - animationClosed = true; - applyOptions(); - applyAnimationStyles(element, options); + close(success); runner.complete(success); } diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index ea1879c43874..9964b11ae559 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -751,6 +751,15 @@ angular.mock.TzDate = function(offset, timestamp) { angular.mock.TzDate.prototype = Date.prototype; /* jshint +W101 */ + +/** + * @ngdoc service + * @name $animate + * + * @description + * Mock implementation of the {@link ng.$animate `$animate`} service. Exposes two additional methods + * for testing animations. + */ angular.mock.animate = angular.module('ngAnimateMock', ['ng']) .config(['$provide', function($provide) { @@ -783,9 +792,50 @@ angular.mock.animate = angular.module('ngAnimateMock', ['ng']) return queueFn; }); - $provide.decorator('$animate', ['$delegate', '$timeout', '$browser', '$$rAF', + $provide.decorator('$$animateJs', ['$delegate', function($delegate) { + var runners = []; + + var animateJsConstructor = function() { + var animator = $delegate.apply($delegate, arguments); + // If no javascript animation is found, animator is undefined + if (animator) { + runners.push(animator); + } + return animator; + }; + + animateJsConstructor.$closeAndFlush = function() { + runners.forEach(function(runner) { + runner.end(); + }); + runners = []; + }; + + return animateJsConstructor; + }]); + + $provide.decorator('$animateCss', ['$delegate', function($delegate) { + var runners = []; + + var animateCssConstructor = function(element, options) { + var animator = $delegate(element, options); + runners.push(animator); + return animator; + }; + + animateCssConstructor.$closeAndFlush = function() { + runners.forEach(function(runner) { + runner.end(); + }); + runners = []; + }; + + return animateCssConstructor; + }]); + + $provide.decorator('$animate', ['$delegate', '$timeout', '$browser', '$$rAF', '$animateCss', '$$animateJs', '$$forceReflow', '$$animateAsyncRun', '$rootScope', - function($delegate, $timeout, $browser, $$rAF, + function($delegate, $timeout, $browser, $$rAF, $animateCss, $$animateJs, $$forceReflow, $$animateAsyncRun, $rootScope) { var animate = { queue: [], @@ -797,7 +847,35 @@ angular.mock.animate = angular.module('ngAnimateMock', ['ng']) return $$forceReflow.totalReflows; }, enabled: $delegate.enabled, - flush: function() { + /** + * @ngdoc method + * @name $animate#closeAndFlush + * @description + * + * This method will close all pending animations (both {@link ngAnimate#javascript-based-animations Javascript} + * and {@link ngAnimate.$animateCss CSS}) and it will also flush any remaining animation frames and/or callbacks. + */ + closeAndFlush: function() { + // we allow the flush command to swallow the errors + // because depending on whether CSS or JS animations are + // used, there may not be a RAF flush. The primary flush + // at the end of this function must throw an exception + // because it will track if there were pending animations + this.flush(true); + $animateCss.$closeAndFlush(); + $$animateJs.$closeAndFlush(); + this.flush(); + }, + /** + * @ngdoc method + * @name $animate#flush + * @description + * + * This method is used to flush the pending callbacks and animation frames to either start + * an animation or conclude an animation. Note that this will not actually close an + * actively running animation (see {@link ngMock.$animate#closeAndFlush `closeAndFlush()`} for that). + */ + flush: function(hideErrors) { $rootScope.$digest(); var doNextRun, somethingFlushed = false; @@ -814,7 +892,7 @@ angular.mock.animate = angular.module('ngAnimateMock', ['ng']) } } while (doNextRun); - if (!somethingFlushed) { + if (!somethingFlushed && !hideErrors) { throw new Error('No pending animations ready to be closed or flushed'); } diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 05b9b8381088..6990bdadd4ce 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1834,7 +1834,7 @@ describe('ngMockE2E', function() { beforeEach(module('ngAnimate')); beforeEach(module('ngAnimateMock')); - var ss, element, trackedAnimations; + var ss, element, trackedAnimations, animationLog; afterEach(function() { if (element) { @@ -1847,6 +1847,8 @@ describe('ngMockE2E', function() { beforeEach(module(function($animateProvider) { trackedAnimations = []; + animationLog = []; + $animateProvider.register('.animate', function() { return { leave: logFn('leave'), @@ -1855,7 +1857,13 @@ describe('ngMockE2E', function() { function logFn(method) { return function(element) { + animationLog.push('start ' + method); trackedAnimations.push(getDoneCallback(arguments)); + + return function closingFn(cancel) { + var lab = cancel ? 'cancel' : 'end'; + animationLog.push(lab + ' ' + method); + }; }; } @@ -2008,6 +2016,80 @@ describe('ngMockE2E', function() { expect(spy.callCount).toBe(2); })); }); + + describe('$animate.closeAndFlush()', function() { + it('should close the currently running $animateCss animations', + inject(function($animateCss, $animate) { + + if (!browserSupportsCssAnimations()) return; + + var spy = jasmine.createSpy(); + var runner = $animateCss(element, { + duration: 1, + to: { color: 'red' } + }).start(); + + runner.then(spy); + + expect(spy).not.toHaveBeenCalled(); + $animate.closeAndFlush(); + expect(spy).toHaveBeenCalled(); + })); + + it('should close the currently running $$animateJs animations', + inject(function($$animateJs, $animate) { + + var spy = jasmine.createSpy(); + var runner = $$animateJs(element, 'leave', 'animate', {}).start(); + runner.then(spy); + + expect(spy).not.toHaveBeenCalled(); + $animate.closeAndFlush(); + expect(spy).toHaveBeenCalled(); + })); + + it('should run the closing javascript animation function upon flush', + inject(function($$animateJs, $animate) { + + $$animateJs(element, 'leave', 'animate', {}).start(); + + expect(animationLog).toEqual(['start leave']); + $animate.closeAndFlush(); + expect(animationLog).toEqual(['start leave', 'end leave']); + })); + + it('should not throw when a regular animation has no javascript animation', + inject(function($animate, $$animation, $rootElement) { + + if (!browserSupportsCssAnimations()) return; + + var element = jqLite('
    '); + $rootElement.append(element); + + // Make sure the animation has valid $animateCss options + $$animation(element, null, { + from: { background: 'red' }, + to: { background: 'blue' }, + duration: 1, + transitionStyle: '1s linear all' + }); + + expect(function() { + $animate.closeAndFlush(); + }).not.toThrow(); + + dealoc(element); + })); + + it('should throw an error if there are no animations to close and flush', + inject(function($animate) { + + expect(function() { + $animate.closeAndFlush(); + }).toThrow('No pending animations ready to be closed or flushed'); + + })); + }); }); }); From 2fc954d33a3a4c5d4f355be1e15a381664e02f1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 17 Dec 2015 16:53:07 -0800 Subject: [PATCH 197/354] fix(ngAnimate): only copy over the animation options once A bug in material has exposed that ngAnimate makes a copy of the provided animation options twice. By making two copies, the same DOM operations are performed during and at the end of the animation. If the CSS classes being added/ removed contain existing transition code, then this will lead to rendering issues. Closes #13722 Closes #13578 --- src/ng/animateCss.js | 12 +++++--- src/ngAnimate/animateCss.js | 14 +++++---- test/ng/animateCssSpec.js | 22 +++++++++++++++ test/ngAnimate/animateCssSpec.js | 22 +++++++++++++++ test/ngAnimate/integrationSpec.js | 47 +++++++++++++++++++++++++++++++ 5 files changed, 107 insertions(+), 10 deletions(-) diff --git a/src/ng/animateCss.js b/src/ng/animateCss.js index b3e3c3786550..0ee4e18097bf 100644 --- a/src/ng/animateCss.js +++ b/src/ng/animateCss.js @@ -15,10 +15,14 @@ var $CoreAnimateCssProvider = function() { this.$get = ['$$rAF', '$q', '$$AnimateRunner', function($$rAF, $q, $$AnimateRunner) { return function(element, initialOptions) { - // we always make a copy of the options since - // there should never be any side effects on - // the input data when running `$animateCss`. - var options = copy(initialOptions); + // all of the animation functions should create + // a copy of the options data, however, if a + // parent service has already created a copy then + // we should stick to using that + var options = initialOptions || {}; + if (!options.$$prepared) { + options = copy(options); + } // there is no point in applying the styles since // there is no animation that goes on at all in diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index c2df5b16e3a6..5025751e1dfc 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -447,10 +447,14 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { } return function init(element, initialOptions) { - // we always make a copy of the options since - // there should never be any side effects on - // the input data when running `$animateCss`. - var options = copy(initialOptions); + // all of the animation functions should create + // a copy of the options data, however, if a + // parent service has already created a copy then + // we should stick to using that + var options = initialOptions || {}; + if (!options.$$prepared) { + options = prepareAnimationOptions(copy(options)); + } var restoreStyles = {}; var node = getDomNode(element); @@ -460,8 +464,6 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { return closeAndReturnNoopAnimator(); } - options = prepareAnimationOptions(options); - var temporaryStyles = []; var classes = element.attr('class'); var styles = packageStyles(options); diff --git a/test/ng/animateCssSpec.js b/test/ng/animateCssSpec.js index f0a027805cfa..dcc37b7fc9c9 100644 --- a/test/ng/animateCssSpec.js +++ b/test/ng/animateCssSpec.js @@ -31,6 +31,28 @@ describe("$animateCss", function() { expect(copiedOptions).toEqual(initialOptions); })); + it("should not create a copy of the provided options if they have already been prepared earlier", + inject(function($animateCss, $$rAF) { + + var options = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two' + }; + + options.$$prepared = true; + var runner = $animateCss(element, options).start(); + runner.end(); + + $$rAF.flush(); + + expect(options.addClass).toBeFalsy(); + expect(options.removeClass).toBeFalsy(); + expect(options.to).toBeFalsy(); + expect(options.from).toBeFalsy(); + })); + it("should apply the provided [from] CSS to the element", inject(function($animateCss) { $animateCss(element, { from: { height: '50px' }}).start(); expect(element.css('height')).toBe('50px'); diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index c8939d60252f..7de34ee58615 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -2036,6 +2036,28 @@ describe("ngAnimate $animateCss", function() { expect(copiedOptions).toEqual(initialOptions); })); + it("should not create a copy of the provided options if they have already been prepared earlier", + inject(function($animate, $animateCss) { + + var options = { + from: { height: '50px' }, + to: { width: '50px' }, + addClass: 'one', + removeClass: 'two' + }; + + options.$$prepared = true; + var runner = $animateCss(element, options).start(); + runner.end(); + + $animate.flush(); + + expect(options.addClass).toBeFalsy(); + expect(options.removeClass).toBeFalsy(); + expect(options.to).toBeFalsy(); + expect(options.from).toBeFalsy(); + })); + describe("[$$skipPreparationClasses]", function() { it('should not apply and remove the preparation classes to the element when true', inject(function($animateCss) { diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index f506e53aee74..a1f4c5cf7a18 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -28,6 +28,27 @@ describe('ngAnimate integration tests', function() { describe('CSS animations', function() { if (!browserSupportsCssAnimations()) return; + it("should only create a single copy of the provided animation options", + inject(function($rootScope, $rootElement, $animate) { + + ss.addRule('.animate-me', 'transition:2s linear all;'); + + var element = jqLite('
    '); + html(element); + + var myOptions = {to: { 'color': 'red' }}; + + var spy = spyOn(window, 'copy'); + expect(spy).not.toHaveBeenCalled(); + + var animation = $animate.leave(element, myOptions); + $rootScope.$digest(); + $animate.flush(); + + expect(spy).toHaveBeenCalledOnce(); + dealoc(element); + })); + they('should render an $prop animation', ['enter', 'leave', 'move', 'addClass', 'removeClass', 'setClass'], function(event) { @@ -390,6 +411,32 @@ describe('ngAnimate integration tests', function() { expect(element).not.toHaveClass('hide'); })); + it('should handle ng-if & ng-class with a class that is removed before its add animation has concluded', function() { + inject(function($animate, $rootScope, $compile, $timeout, $$rAF) { + + ss.addRule('.animate-me', 'transition: all 0.5s;'); + + element = jqLite('
    '); + + html(element); + $rootScope.blue = true; + $rootScope.red = true; + $compile(element)($rootScope); + $rootScope.$digest(); + + var child = element.find('div'); + + // Trigger class removal before the add animation has been concluded + $rootScope.blue = false; + $animate.closeAndFlush(); + + expect(child).toHaveClass('red'); + expect(child).not.toHaveClass('blue'); + }); + }); }); describe('JS animations', function() { From 63ffe5c3601447f7a108af5d1cfd7b6af1e189a6 Mon Sep 17 00:00:00 2001 From: dmitriz Date: Tue, 12 Jan 2016 15:05:20 +0000 Subject: [PATCH 198/354] docs(CONTRIBUTING): add warning about forced push Add warning about the possible consequences of a forced push Closes #13747 --- CONTRIBUTING.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4cb8a995c774..57c71041c7c0 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -123,13 +123,19 @@ Before you submit your pull request consider the following guidelines: * If we suggest changes then: * Make the required updates. * Re-run the Angular test suite to ensure tests are still passing. - * Rebase your branch and force push to your GitHub repository (this will update your Pull Request): + * Commit your changes to your branch (e.g. `my-fix-branch`). + * Push the changes to your GitHub repository (this will update your Pull Request). + +If the PR gets too outdated we may ask you to rebase and force push to update the PR: ```shell git rebase master -i git push origin my-fix-branch -f ``` +*WARNING. Squashing or reverting commits and forced push thereafter may remove GitHub comments +on code that were previously made by you and others in your commits.* + That's it! Thank you for your contribution! #### After your pull request is merged From a412622f691d8cf4f068b5aaa29c65f5a93da592 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 12 Jan 2016 22:51:58 +0100 Subject: [PATCH 199/354] docs($animate): clarify info about from and to for animate() --- src/ng/animate.js | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/src/ng/animate.js b/src/ng/animate.js index ec1a509774cd..9b471bd89d04 100644 --- a/src/ng/animate.js +++ b/src/ng/animate.js @@ -552,10 +552,23 @@ var $AnimateProvider = ['$provide', function($provide) { * @kind function * * @description Performs an inline animation on the element which applies the provided to and from CSS styles to the element. - * If any detected CSS transition, keyframe or JavaScript matches the provided className value then the animation will take - * on the provided styles. For example, if a transition animation is set for the given className then the provided from and - * to styles will be applied alongside the given transition. If a JavaScript animation is detected then the provided styles - * will be given in as function paramters into the `animate` method (or as apart of the `options` parameter). + * If any detected CSS transition, keyframe or JavaScript matches the provided className value, then the animation will take + * on the provided styles. For example, if a transition animation is set for the given className, then the provided `from` and + * `to` styles will be applied alongside the given transition. If the CSS style provided in `from` does not have a corresponding + * style in `to`, the style in `from` is applied immediately, and no animation is run. + * If a JavaScript animation is detected then the provided styles will be given in as function parameters into the `animate` + * method (or as part of the `options` parameter): + * + * ```js + * ngModule.animation('.my-inline-animation', function() { + * return { + * animate : function(element, from, to, done, options) { + * //animation + * done(); + * } + * } + * }); + * ``` * * @param {DOMElement} element the element which the CSS styles will be applied to * @param {object} from the from (starting) CSS styles that will be applied to the element and across the animation. From 2d1ee4bffddd913e7e995b126aa4d3e78b3b0b26 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Wed, 13 Jan 2016 13:57:59 +0000 Subject: [PATCH 200/354] chore(doc-gen): filter out componentGroup doc types from search results These doc types do not contain useful information from the point of view of search results and are making the results less clear --- docs/config/index.js | 4 +++ docs/config/processors/keywords.js | 47 +++++++++++++++++------------- 2 files changed, 31 insertions(+), 20 deletions(-) diff --git a/docs/config/index.js b/docs/config/index.js index 3bba1f92a5e5..9f6114f6b61d 100644 --- a/docs/config/index.js +++ b/docs/config/index.js @@ -170,4 +170,8 @@ module.exports = new Package('angularjs', [ jqueryDeployment, productionDeployment ]; +}) + +.config(function(generateKeywordsProcessor) { + generateKeywordsProcessor.docTypesToIgnore = ['componentGroup']; }); diff --git a/docs/config/processors/keywords.js b/docs/config/processors/keywords.js index 4994064aed85..62f01a9da163 100644 --- a/docs/config/processors/keywords.js +++ b/docs/config/processors/keywords.js @@ -16,9 +16,11 @@ module.exports = function generateKeywordsProcessor(log, readFilesProcessor) { ignoreWordsFile: undefined, areasToSearch: ['api', 'guide', 'misc', 'error', 'tutorial'], propertiesToIgnore: [], + docTypesToIgnore: [], $validate: { ignoreWordsFile: { }, areasToSearch: { presence: true }, + docTypesToIgnore: { }, propertiesToIgnore: { } }, $runAfter: ['memberDocsProcessor'], @@ -28,6 +30,7 @@ module.exports = function generateKeywordsProcessor(log, readFilesProcessor) { // Keywords to ignore var wordsToIgnore = []; var propertiesToIgnore; + var docTypesToIgnore; var areasToSearch; // Keywords start with "ng:" or one of $, _ or a letter @@ -47,6 +50,8 @@ module.exports = function generateKeywordsProcessor(log, readFilesProcessor) { areasToSearch = _.indexBy(this.areasToSearch); propertiesToIgnore = _.indexBy(this.propertiesToIgnore); log.debug('Properties to ignore', propertiesToIgnore); + docTypesToIgnore = _.indexBy(this.docTypesToIgnore); + log.debug('Doc types to ignore', docTypesToIgnore); var ignoreWordsMap = _.indexBy(wordsToIgnore); @@ -78,34 +83,36 @@ module.exports = function generateKeywordsProcessor(log, readFilesProcessor) { // We are only interested in docs that live in the right area docs = _.filter(docs, function(doc) { return areasToSearch[doc.area]; }); + docs = _.filter(docs, function(doc) { return !docTypesToIgnore[doc.docType]; }); _.forEach(docs, function(doc) { - var words = []; - var keywordMap = _.clone(ignoreWordsMap); - var members = []; - var membersMap = {}; - // Search each top level property of the document for search terms - _.forEach(doc, function(value, key) { + var words = []; + var keywordMap = _.clone(ignoreWordsMap); + var members = []; + var membersMap = {}; - if ( _.isString(value) && !propertiesToIgnore[key] ) { - extractWords(value, words, keywordMap); - } + // Search each top level property of the document for search terms + _.forEach(doc, function(value, key) { - if ( key === 'methods' || key === 'properties' || key === 'events' ) { - _.forEach(value, function(member) { - extractWords(member.name, members, membersMap); - }); - } - }); + if ( _.isString(value) && !propertiesToIgnore[key] ) { + extractWords(value, words, keywordMap); + } + + if ( key === 'methods' || key === 'properties' || key === 'events' ) { + _.forEach(value, function(member) { + extractWords(member.name, members, membersMap); + }); + } + }); - doc.searchTerms = { - titleWords: extractTitleWords(doc.name), - keywords: _.sortBy(words).join(' '), - members: _.sortBy(members).join(' ') - }; + doc.searchTerms = { + titleWords: extractTitleWords(doc.name), + keywords: _.sortBy(words).join(' '), + members: _.sortBy(members).join(' ') + }; }); From 09f6061a8ee41cae4268e8d44d727d3bf52e22a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Fri, 15 Jan 2016 09:16:08 -0800 Subject: [PATCH 201/354] fix(ngAnimate): do not trigger animations if the document is hidden Prior to this fix, ngAnimate would always trigger animations even if the browser tab or browser window was not visible. This would cause issues with class updates / DOM operations even if elements were not using animations. The root cause is that browsers do not flush calls to requestAnimationFrame when browser windows / tabs are not visible. This fix disables animations if `document.hidden` is `true`. Closes #12842 Closes #13776 --- src/ngAnimate/animateQueue.js | 4 +++- test/ngAnimate/animateSpec.js | 25 +++++++++++++++++++++++++ 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 6432f80936c6..d69eae33dee7 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -337,7 +337,9 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { // this is a hard disable of all animations for the application or on // the element itself, therefore there is no need to continue further // past this point if not enabled - var skipAnimations = !animationsEnabled || disabledElementsLookup.get(node); + // Animations are also disabled if the document is currently hidden (page is not visible + // to the user), because browsers slow down or do not flush calls to requestAnimationFrame + var skipAnimations = !animationsEnabled || $document[0].hidden || disabledElementsLookup.get(node); var existingAnimation = (!skipAnimations && activeAnimationsLookup.get(node)) || {}; var hasExistingAnimation = !!existingAnimation.state; diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 09e78af4c132..d281d0abfe0f 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -148,6 +148,31 @@ describe("animations", function() { expect(copiedOptions).toEqual(initialOptions); })); + it("should skip animations entirely if the document is hidden", function() { + var doc; + + module(function($provide) { + doc = jqLite({ + body: document.body, + hidden: true + }); + $provide.value('$document', doc); + }); + + inject(function($animate, $rootScope) { + $animate.enter(element, parent); + $rootScope.$digest(); + expect(capturedAnimation).toBeFalsy(); + expect(element[0].parentNode).toEqual(parent[0]); + + doc[0].hidden = false; + + $animate.leave(element); + $rootScope.$digest(); + expect(capturedAnimation).toBeTruthy(); + }); + }); + it('should animate only the specified CSS className matched within $animateProvider.classNameFilter', function() { module(function($animateProvider) { $animateProvider.classNameFilter(/only-allow-this-animation/); From 9a60408c804a62a9517857bdb9a42182ab6769e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Fri, 15 Jan 2016 09:43:50 -0800 Subject: [PATCH 202/354] fix(ngAnimate): ensure that animate promises resolve when the document is hidden Prior to this fix any promise/callback chained on a call to the $animate methods would only flush if and when the browser page is visible. This fix ensures that a timeout will be used instead when the document is hidden. --- src/ng/animateRunner.js | 19 ++++++++++++++---- test/ng/animateRunnerSpec.js | 37 ++++++++++++++++++++++++++++++++++++ 2 files changed, 52 insertions(+), 4 deletions(-) diff --git a/src/ng/animateRunner.js b/src/ng/animateRunner.js index 51701b4c16f8..0b6cacc8d6f0 100644 --- a/src/ng/animateRunner.js +++ b/src/ng/animateRunner.js @@ -28,8 +28,8 @@ var $$AnimateAsyncRunFactoryProvider = function() { }; var $$AnimateRunnerFactoryProvider = function() { - this.$get = ['$q', '$sniffer', '$$animateAsyncRun', - function($q, $sniffer, $$animateAsyncRun) { + this.$get = ['$q', '$sniffer', '$$animateAsyncRun', '$document', '$timeout', + function($q, $sniffer, $$animateAsyncRun, $document, $timeout) { var INITIAL_STATE = 0; var DONE_PENDING_STATE = 1; @@ -74,8 +74,19 @@ var $$AnimateRunnerFactoryProvider = function() { function AnimateRunner(host) { this.setHost(host); + var rafTick = $$animateAsyncRun(); + var timeoutTick = function(fn) { + $timeout(fn, 0, false); + }; + this._doneCallbacks = []; - this._runInAnimationFrame = $$animateAsyncRun(); + this._tick = function(fn) { + if ($document[0].hidden) { + timeoutTick(fn); + } else { + rafTick(fn); + } + }; this._state = 0; } @@ -148,7 +159,7 @@ var $$AnimateRunnerFactoryProvider = function() { var self = this; if (self._state === INITIAL_STATE) { self._state = DONE_PENDING_STATE; - self._runInAnimationFrame(function() { + self._tick(function() { self._resolve(response); }); } diff --git a/test/ng/animateRunnerSpec.js b/test/ng/animateRunnerSpec.js index d6fab470e8df..622da76ff22b 100644 --- a/test/ng/animateRunnerSpec.js +++ b/test/ng/animateRunnerSpec.js @@ -162,6 +162,43 @@ describe("$$AnimateRunner", function() { expect(animationFailed).toBe(true); })); + it("should use timeouts to trigger async operations when the document is hidden", function() { + var doc; + + module(function($provide) { + doc = jqLite({ + body: document.body, + hidden: true + }); + $provide.value('$document', doc); + }); + + inject(function($$AnimateRunner, $rootScope, $$rAF, $timeout) { + var spy = jasmine.createSpy(); + var runner = new $$AnimateRunner(); + runner.done(spy); + runner.complete(true); + expect(spy).not.toHaveBeenCalled(); + $$rAF.flush(); + expect(spy).not.toHaveBeenCalled(); + $timeout.flush(); + expect(spy).toHaveBeenCalled(); + + doc[0].hidden = false; + + spy = jasmine.createSpy(); + runner = new $$AnimateRunner(); + runner.done(spy); + runner.complete(true); + expect(spy).not.toHaveBeenCalled(); + $$rAF.flush(); + expect(spy).toHaveBeenCalled(); + expect(function() { + $timeout.flush(); + }).toThrow(); + }); + }); + they("should expose the `finally` promise function to handle the final state when $prop", { 'rejected': 'cancel', 'resolved': 'end' }, function(method) { inject(function($$AnimateRunner, $rootScope) { From ca41996ef718d8eebbf5385d7d521e9e3fd7c2c3 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 19 Jan 2016 12:08:08 +0100 Subject: [PATCH 203/354] docs($compile): correct transcludeControllers definition Closes #13793 --- src/ng/compile.js | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 8d28ba8f3e41..04a9c9a8d3e9 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -708,8 +708,15 @@ * directives; if given, it will be passed through to the link functions of * directives found in `element` during compilation. * * `transcludeControllers` - an object hash with keys that map controller names - * to controller instances; if given, it will make the controllers - * available to directives. + * to a hash with the key `instance`, which maps to the controller instance; + * if given, it will make the controllers available to directives on the compileNode: + * ``` + * { + * parent: { + * instance: parentControllerInstance + * } + * } + * ``` * * `futureParentElement` - defines the parent to which the `cloneAttachFn` will add * the cloned elements; only needed for transcludes that are allowed to contain non html * elements (e.g. SVG elements). See also the directive.controller property. From a985adfdabd871f3f3f3ee59f371da50cd9611d9 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 12 Jan 2016 16:00:18 +0100 Subject: [PATCH 204/354] fix($animate): correctly handle `$animate.pin()` host elements This commit fixes two bugs: 1) Previously, animate would assume that a found host element was part of the $rootElement (while it's possible that it is also outside the root). 2) Previously, if a parent of the animated element was pinned to a host element, the host would not be checked regarding animations enabled status etc. Closes #13783 --- src/ngAnimate/animateQueue.js | 23 ++++---- test/ngAnimate/animateSpec.js | 106 +++++++++++++++++++++++++++------- 2 files changed, 94 insertions(+), 35 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index d69eae33dee7..9c61c8b2364f 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -624,25 +624,22 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { // there is no need to continue traversing at this point if (parentAnimationDetected && animateChildren === false) break; - if (!rootElementDetected) { - // angular doesn't want to attempt to animate elements outside of the application - // therefore we need to ensure that the rootElement is an ancestor of the current element - rootElementDetected = isMatchingElement(parentElement, $rootElement); - if (!rootElementDetected) { - parentHost = parentElement.data(NG_ANIMATE_PIN_DATA); - if (parentHost) { - parentElement = parentHost; - rootElementDetected = true; - } - } - } - if (!bodyElementDetected) { // we also need to ensure that the element is or will be apart of the body element // otherwise it is pointless to even issue an animation to be rendered bodyElementDetected = isMatchingElement(parentElement, bodyElement); } + if (!rootElementDetected) { + // If no rootElement is detected, check if the parentElement is pinned to another element + parentHost = parentElement.data(NG_ANIMATE_PIN_DATA); + if (parentHost) { + // The pin target element becomes the next parent element + parentElement = parentHost; + continue; + } + } + parentElement = parentElement.parent(); } diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index d281d0abfe0f..bb806ba7a9fe 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1483,10 +1483,14 @@ describe("animations", function() { return new $$AnimateRunner(); }; }); + + return function($animate) { + $animate.enabled(true); + }; })); it('should throw if the arguments are not elements', - inject(function($animate, $compile, $document, $rootScope, $rootElement) { + inject(function($animate, $rootElement) { var element = jqLite('
    '); @@ -1505,7 +1509,7 @@ describe("animations", function() { they('should animate an element inside a pinned element that is the $prop element', ['same', 'parent', 'grandparent'], function(elementRelation) { - inject(function($animate, $compile, $document, $rootElement, $rootScope) { + inject(function($animate, $document, $rootElement, $rootScope) { var pinElement, animateElement; @@ -1543,34 +1547,92 @@ describe("animations", function() { }); }); - it('should adhere to the disabled state of the hosted parent when an element is pinned', - inject(function($animate, $compile, $document, $rootElement, $rootScope) { + they('should not animate an element when the pinned ($prop) element, is pinned to an element that is not a child of the $rootElement', + ['same', 'parent', 'grandparent'], + function(elementRelation) { + inject(function($animate, $document, $rootElement, $rootScope) { + + var pinElement, animateElement, pinTargetElement = jqLite('
    '); - var innerParent = jqLite('
    '); - jqLite($document[0].body).append(innerParent); - innerParent.append($rootElement); - var innerChild = jqLite('
    '); - $rootElement.append(innerChild); + var innerParent = jqLite('
    '); + jqLite($document[0].body).append(innerParent); + innerParent.append($rootElement); - var element = jqLite('
    '); - jqLite($document[0].body).append(element); + switch (elementRelation) { + case 'same': + pinElement = jqLite('
    '); + break; + case 'parent': + pinElement = jqLite('
    '); + break; + case 'grandparent': + pinElement = jqLite('
    '); + break; + } - $animate.pin(element, innerChild); + // Append both the pin element and the pinTargetElement outside the app root + jqLite($document[0].body).append(pinElement); + jqLite($document[0].body).append(pinTargetElement); - $animate.enabled(innerChild, false); + animateElement = jqLite($document[0].getElementById('animate')); - $animate.addClass(element, 'blue'); - $rootScope.$digest(); - expect(capturedAnimation).toBeFalsy(); + $animate.addClass(animateElement, 'red'); + $rootScope.$digest(); + expect(capturedAnimation).toBeFalsy(); - $animate.enabled(innerChild, true); + $animate.pin(pinElement, pinTargetElement); - $animate.addClass(element, 'red'); - $rootScope.$digest(); - expect(capturedAnimation).toBeTruthy(); + $animate.addClass(animateElement, 'blue'); + $rootScope.$digest(); + expect(capturedAnimation).toBeFalsy(); - dealoc(element); - })); + dealoc(pinElement); + }); + }); + + they('should adhere to the disabled state of the hosted parent when the $prop element is pinned', + ['same', 'parent', 'grandparent'], + function(elementRelation) { + inject(function($animate, $document, $rootElement, $rootScope) { + + var pinElement, animateElement, pinHostElement = jqLite('
    '); + + var innerParent = jqLite('
    '); + jqLite($document[0].body).append(innerParent); + innerParent.append($rootElement); + + switch (elementRelation) { + case 'same': + pinElement = jqLite('
    '); + break; + case 'parent': + pinElement = jqLite('
    '); + break; + case 'grandparent': + pinElement = jqLite('
    '); + break; + } + + $rootElement.append(pinHostElement); + jqLite($document[0].body).append(pinElement); + animateElement = jqLite($document[0].getElementById('animate')); + + $animate.pin(pinElement, pinHostElement); + $animate.enabled(pinHostElement, false); + + $animate.addClass(animateElement, 'blue'); + $rootScope.$digest(); + expect(capturedAnimation).toBeFalsy(); + + $animate.enabled(pinHostElement, true); + + $animate.addClass(animateElement, 'red'); + $rootScope.$digest(); + expect(capturedAnimation).toBeTruthy(); + + dealoc(pinElement); + }); + }); }); describe('callbacks', function() { From 2d3303ddda6330c4f45b381b6b17346f6cfe2d97 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 18 Jan 2016 15:29:32 +0100 Subject: [PATCH 205/354] perf(ngAnimate): speed up areAnimationsAllowed check This commit speeds up the code that checks if an element can be animated, for the following two cases: The checks will be sped up in cases where the animation is disabled via $animate.enabled(element, false) on any parent element. A minor speed-up is also included for cases where the $rootElement of the app (the bootstrap element) is on the body or lower in the DOM tree. --- src/ngAnimate/animateQueue.js | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 9c61c8b2364f..07ac1480c6cb 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -571,6 +571,13 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { return getDomNode(nodeOrElmA) === getDomNode(nodeOrElmB); } + /** + * This fn returns false if any of the following is true: + * a) animations on any parent element are disabled, and animations on the element aren't explicitly allowed + * b) a parent element has an ongoing structural animation, and animateChildren is false + * c) the element is not a child of the body + * d) the element is not a child of the $rootElement + */ function areAnimationsAllowed(element, parentElement, event) { var bodyElement = jqLite($document[0].body); var bodyElementDetected = isMatchingElement(element, bodyElement) || element[0].nodeName === 'HTML'; @@ -604,10 +611,12 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (!parentAnimationDetected) { var parentElementDisabled = disabledElementsLookup.get(parentNode); - // disable animations if the user hasn't explicitly enabled animations on the - // current element if (parentElementDisabled === true && elementDisabled !== false) { + // disable animations if the user hasn't explicitly enabled animations on the + // current element elementDisabled = true; + // element is disabled via parent element, no need to check anything else + break; } else if (parentElementDisabled === false) { elementDisabled = false; } @@ -625,11 +634,17 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (parentAnimationDetected && animateChildren === false) break; if (!bodyElementDetected) { - // we also need to ensure that the element is or will be apart of the body element + // we also need to ensure that the element is or will be a part of the body element // otherwise it is pointless to even issue an animation to be rendered bodyElementDetected = isMatchingElement(parentElement, bodyElement); } + if (bodyElementDetected && rootElementDetected) { + // If both body and root have been found, any other checks are pointless, + // as no animation data should live outside the application + break; + } + if (!rootElementDetected) { // If no rootElement is detected, check if the parentElement is pinned to another element parentHost = parentElement.data(NG_ANIMATE_PIN_DATA); From 900c7cd923e992cc80c2c1e0330f56e5fe72f5fb Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 19 Jan 2016 10:24:44 +0200 Subject: [PATCH 206/354] docs(ngModel): rename `$asyncValidators` error to `nopromise` and add missing error page Closes #13795 --- docs/content/error/ngModel/nopromise.ngdoc | 28 ++++++++++++++++++++++ src/ng/directive/ngModel.js | 2 +- test/ng/directive/ngModelSpec.js | 2 +- 3 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 docs/content/error/ngModel/nopromise.ngdoc diff --git a/docs/content/error/ngModel/nopromise.ngdoc b/docs/content/error/ngModel/nopromise.ngdoc new file mode 100644 index 000000000000..e20cc4e980a5 --- /dev/null +++ b/docs/content/error/ngModel/nopromise.ngdoc @@ -0,0 +1,28 @@ +@ngdoc error +@name ngModel:nopromise +@fullName No promise +@description + +The return value of an async validator, must always be a promise. If you want to return a +non-promise value, you can convert it to a promise using {@link ng.$q#resolve `$q.resolve()`} or +{@link ng.$q#reject `$q.reject()`}. + +Example: + +``` +.directive('asyncValidator', function($q) { + return { + require: 'ngModel', + link: function(scope, elem, attrs, ngModel) { + ngModel.$asyncValidators.myAsyncValidation = function(modelValue, viewValue) { + if (/* I don't need to hit the backend API */) { + return $q.resolve(); // to mark as valid or + // return $q.reject(); // to mark as invalid + } else { + // ...send a request to the backend and return a promise + } + }; + } + }; +}) +``` diff --git a/src/ng/directive/ngModel.js b/src/ng/directive/ngModel.js index fe99e136169b..69f9af125219 100644 --- a/src/ng/directive/ngModel.js +++ b/src/ng/directive/ngModel.js @@ -625,7 +625,7 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$ forEach(ctrl.$asyncValidators, function(validator, name) { var promise = validator(modelValue, viewValue); if (!isPromiseLike(promise)) { - throw ngModelMinErr("$asyncValidators", + throw ngModelMinErr('nopromise', "Expected asynchronous validator to return a promise but got '{0}' instead.", promise); } setValidity(name, undefined); diff --git a/test/ng/directive/ngModelSpec.js b/test/ng/directive/ngModelSpec.js index b45ea2e0c0e0..18482978054b 100644 --- a/test/ng/directive/ngModelSpec.js +++ b/test/ng/directive/ngModelSpec.js @@ -906,7 +906,7 @@ describe('ngModel', function() { expect(function() { scope.$apply('value = "123"'); - }).toThrowMinErr("ngModel", "$asyncValidators", + }).toThrowMinErr("ngModel", "nopromise", "Expected asynchronous validator to return a promise but got 'true' instead."); })); From c429ad82f5c829d52000c7d5909a9fce723caba4 Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Tue, 19 Jan 2016 11:38:17 -0500 Subject: [PATCH 207/354] chore($compile): remove an unused dependency Fixes #13791 Closes #13801 --- src/ng/compile.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 04a9c9a8d3e9..7aefff5af993 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1005,9 +1005,9 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { this.$get = [ '$injector', '$interpolate', '$exceptionHandler', '$templateRequest', '$parse', - '$controller', '$rootScope', '$document', '$sce', '$animate', '$$sanitizeUri', + '$controller', '$rootScope', '$sce', '$animate', '$$sanitizeUri', function($injector, $interpolate, $exceptionHandler, $templateRequest, $parse, - $controller, $rootScope, $document, $sce, $animate, $$sanitizeUri) { + $controller, $rootScope, $sce, $animate, $$sanitizeUri) { var Attributes = function(element, attributesToCopy) { if (attributesToCopy) { From a84393eadb3fef6dce5d424978e27adec296eca2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 19 Jan 2016 13:27:38 -0800 Subject: [PATCH 208/354] chore($AnimateRunner): examine the document more carefully Some internal tests were failing because the `$document[0]` value was null. This fix ensures that the if statement surrounding that is more careful. --- src/ng/animateRunner.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/ng/animateRunner.js b/src/ng/animateRunner.js index 0b6cacc8d6f0..c1552faa18a2 100644 --- a/src/ng/animateRunner.js +++ b/src/ng/animateRunner.js @@ -81,7 +81,11 @@ var $$AnimateRunnerFactoryProvider = function() { this._doneCallbacks = []; this._tick = function(fn) { - if ($document[0].hidden) { + var doc = $document[0]; + + // the document may not be ready or attached + // to the module for some internal tests + if (doc && doc.hidden) { timeoutTick(fn); } else { rafTick(fn); From 946d9ae90bb31fe911ebbe1b80cd4c8af5a665c6 Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Mon, 18 Jan 2016 15:22:30 -0500 Subject: [PATCH 209/354] perf($compile): avoid needless overhead when wrapping text nodes This commit positively affects performance in two main ways: 1, When wrapping text nodes in the compile step, we do not need the overhead of the `forEach` function versus a normal for loop since we do not make use of the closure for anything. 2. When actually wrapping the node, we can completely bypass jqLite which avoids several function calls and the overhead of cloning the wrapper node which we already know to be unique. Tests in applications show about an 83% decrease in time spent in this specific loop. --- src/.jshintrc | 1 + src/jqLite.js | 17 +++++++++++------ src/ng/compile.js | 14 ++++++++++---- 3 files changed, 22 insertions(+), 10 deletions(-) diff --git a/src/.jshintrc b/src/.jshintrc index e5ce17e43234..68114c11a244 100644 --- a/src/.jshintrc +++ b/src/.jshintrc @@ -140,6 +140,7 @@ "jqLiteInheritedData": false, "jqLiteBuildFragment": false, "jqLiteParseHTML": false, + "jqLiteWrapNode": false, "getBooleanAttrName": false, "getAliasedAttrName": false, "createEventHandler": false, diff --git a/src/jqLite.js b/src/jqLite.js index fe05f6ba4591..8115fd438e10 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -248,6 +248,16 @@ function jqLiteParseHTML(html, context) { return []; } +function jqLiteWrapNode(node, wrapper) { + var parent = node.parentNode; + + if (parent) { + parent.replaceChild(wrapper, node); + } + + wrapper.appendChild(node); +} + // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259. var jqLiteContains = Node.prototype.contains || function(arg) { @@ -939,12 +949,7 @@ forEach({ }, wrap: function(element, wrapNode) { - wrapNode = jqLite(wrapNode).eq(0).clone()[0]; - var parent = element.parentNode; - if (parent) { - parent.replaceChild(wrapNode, element); - } - wrapNode.appendChild(element); + jqLiteWrapNode(element, jqLite(wrapNode).eq(0).clone()[0]); }, remove: jqLiteRemove, diff --git a/src/ng/compile.js b/src/ng/compile.js index 7aefff5af993..8cae7739c03c 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1299,13 +1299,19 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // modify it. $compileNodes = jqLite($compileNodes); } + + var NOT_EMPTY = /\S+/; + // We can not compile top level text elements since text nodes can be merged and we will // not be able to attach scope data to them, so we will wrap them in - forEach($compileNodes, function(node, index) { - if (node.nodeType == NODE_TYPE_TEXT && node.nodeValue.match(/\S+/) /* non-empty */ ) { - $compileNodes[index] = jqLite(node).wrap('').parent()[0]; + for (var i = 0, len = $compileNodes.length; i < len; i++) { + var domNode = $compileNodes[i]; + + if (domNode.nodeType === NODE_TYPE_TEXT && domNode.nodeValue.match(NOT_EMPTY) /* non-empty */) { + jqLiteWrapNode(domNode, $compileNodes[i] = document.createElement('span')); } - }); + } + var compositeLinkFn = compileNodes($compileNodes, transcludeFn, $compileNodes, maxPriority, ignoreDirective, previousCompileContext); From 2ffbfb0ad0647d103ff339ee4b772b62d4823bf3 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 14 Jan 2016 14:32:54 +0000 Subject: [PATCH 210/354] fix($compile): handle boolean attributes in `@` bindings Closes #13767 Closes #13769 --- src/ng/compile.js | 9 +++++++-- test/ng/compileSpec.js | 18 ++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 8cae7739c03c..9ba7b2a770be 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -2631,10 +2631,15 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { } }); attrs.$$observers[attrName].$$scope = scope; - if (isString(attrs[attrName])) { + lastValue = attrs[attrName]; + if (isString(lastValue)) { // If the attribute has been provided then we trigger an interpolation to ensure // the value is there for use in the link fn - destination[scopeName] = $interpolate(attrs[attrName])(scope); + destination[scopeName] = $interpolate(lastValue)(scope); + } else if (isBoolean(lastValue)) { + // If the attributes is one of the BOOLEAN_ATTR then Angular will have converted + // the value to boolean rather than a string, so we special case this situation + destination[scopeName] = lastValue; } break; diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index bee18f756dd3..347e1a256b67 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -2675,6 +2675,24 @@ describe('$compile', function() { expect(element.isolateScope()['watch']).toBe('watch'); }) ); + + it('should handle @ bindings on BOOLEAN attributes', function() { + var checkedVal; + module(function($compileProvider) { + $compileProvider.directive('test', function() { + return { + scope: { checked: '@' }, + link: function(scope, element, attrs) { + checkedVal = scope.checked; + } + }; + }); + }); + inject(function($compile, $rootScope) { + $compile('')($rootScope); + expect(checkedVal).toEqual(true); + }); + }); }); From d7d8708a9b88afbb9383e5b9696e813cd0f82334 Mon Sep 17 00:00:00 2001 From: Adrian Roselli Date: Wed, 12 Aug 2015 15:03:12 -0400 Subject: [PATCH 211/354] docs(tutorial/step-6): add alt attribute to images See http://www.ssbbartgroup.com/blog/accessible-images-using-angular/ Closes #12569 --- docs/content/tutorial/step_06.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_06.ngdoc b/docs/content/tutorial/step_06.ngdoc index 90cb6ad7d0c1..90862cb1f62a 100644 --- a/docs/content/tutorial/step_06.ngdoc +++ b/docs/content/tutorial/step_06.ngdoc @@ -43,7 +43,7 @@ __`app/index.html`:__ ...
    • - + {{phone.name}} {{phone.name}}

      {{phone.snippet}}

    • From 56508a1d5f4d6ed3664d4ed820fec127884c1a60 Mon Sep 17 00:00:00 2001 From: Lucas Galfaso Date: Sat, 15 Aug 2015 12:40:23 +0200 Subject: [PATCH 212/354] test(input): test for #12106 Add a test that checks that an value is not set when the value is equal to the current value Closes #12592 --- test/ng/directive/inputSpec.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index b8ba4ed924d2..0ffbb456eac5 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -72,6 +72,25 @@ describe('input', function() { expect($rootScope.form.$$renameControl).not.toHaveBeenCalled(); }); + + it('should not set the `val` property when the value is equal to the current value', inject(function($rootScope, $compile) { + // This is a workaround for Firefox validation. Look at #12102. + var input = jqLite(''); + var setterCalls = 0; + $rootScope.foo = ''; + Object.defineProperty(input[0], 'value', { + get: function() { + return ''; + }, + set: function() { + setterCalls++; + } + }); + $compile(input)($rootScope); + $rootScope.$digest(); + expect(setterCalls).toBe(0); + })); + describe('compositionevents', function() { it('should not update the model between "compositionstart" and "compositionend" on non android', function() { From a39baef657fb9a2d5b038c28e130b6a83eb6e753 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 21 Jan 2016 12:40:38 +0000 Subject: [PATCH 213/354] docs(CHANGELOG): add notes for 1.4.9 --- CHANGELOG.md | 133 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 133 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b40a381d05a..e96901ccff1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,136 @@ + +# 1.4.9 implicit-superannuation (2016-01-21) + + +## Bug Fixes + +### Core `ng` Module +- **$animate:** + - correctly handle `$animate.pin()` host elements + ([a985adfd](https://github.com/angular/angular.js/commit/a985adfdabd871f3f3f3ee59f371da50cd9611d9), + [#13783](https://github.com/angular/angular.js/issues/13783)) + - allow animations when pinned element is parent element + ([4cb8ac61](https://github.com/angular/angular.js/commit/4cb8ac61c7574ab4039852c358dd5946268b69fb), + [#13466](https://github.com/angular/angular.js/issues/13466)) + - allow enabled children to animate on disabled parents + ([6d85f24e](https://github.com/angular/angular.js/commit/6d85f24e2081d2a69c80697d90ebd45f228d9682), + [#13179](https://github.com/angular/angular.js/issues/13179), [#13695](https://github.com/angular/angular.js/issues/13695)) + - correctly access `minErr` + ([0c1b54f0](https://github.com/angular/angular.js/commit/0c1b54f04cf5bd7c1fe42ac49b4fbfdf35c60979)) + - ensure animate runner is the same with and without animations + ([937942f5](https://github.com/angular/angular.js/commit/937942f5ada6de1bdacdf0ba465f6f118c270119), + [#13205](https://github.com/angular/angular.js/issues/13205), [#13347](https://github.com/angular/angular.js/issues/13347)) +- **$animateCss:** + - remove animation end event listeners on close + ([d9157849](https://github.com/angular/angular.js/commit/d9157849df224a3a8d2e0bf03099d137f51499f6), + [#13672](https://github.com/angular/angular.js/issues/13672)) + - consider options.delay value for closing timeout + ([592bf516](https://github.com/angular/angular.js/commit/592bf516e50b9729e446d9aa01f4d9ebdd72d187), + [#13355](https://github.com/angular/angular.js/issues/13355), [#13363](https://github.com/angular/angular.js/issues/13363)) +- **$controller:** allow identifiers containing `$` + ([2563ff7b](https://github.com/angular/angular.js/commit/2563ff7ba92d84af978e7e4131253190d4d00c20), + [#13736](https://github.com/angular/angular.js/issues/13736)) +- **$http:** throw if url passed is not a string + ([c5bf9dae](https://github.com/angular/angular.js/commit/c5bf9daef6dfdb3e4a2942c21155a9f67d92e237), + [#12925](https://github.com/angular/angular.js/issues/12925), [#13444](https://github.com/angular/angular.js/issues/13444)) +- **$parse:** handle interceptors with `undefined` expressions + ([7bb2414b](https://github.com/angular/angular.js/commit/7bb2414bf6461aa45a983fd322ae875f81814cc4)) +- **$resource:** don't allow using promises as `timeout` and log a warning + ([47486524](https://github.com/angular/angular.js/commit/474865242c89ba3e8143f0cd52f8c292979ea730)) +- **formatNumber:** cope with large and small number corner cases + ([9c49eb13](https://github.com/angular/angular.js/commit/9c49eb131a6100d58c965d01fb08bcd319032229), + [#13394](https://github.com/angular/angular.js/issues/13394), [#8674](https://github.com/angular/angular.js/issues/8674), [#12709](https://github.com/angular/angular.js/issues/12709), [#8705](https://github.com/angular/angular.js/issues/8705), [#12707](https://github.com/angular/angular.js/issues/12707), [#10246](https://github.com/angular/angular.js/issues/10246), [#10252](https://github.com/angular/angular.js/issues/10252)) +- **input:** + - fix URL validation being too strict + ([6610ae81](https://github.com/angular/angular.js/commit/6610ae816f78ee8fc1080b93a55bf19e4ce48d3e), + [#13528](https://github.com/angular/angular.js/issues/13528), [#13544](https://github.com/angular/angular.js/issues/13544)) + - add missing chars to URL validation regex + ([2995b54a](https://github.com/angular/angular.js/commit/2995b54afdb9a3a2a81b0076a6ac0a9001041163), + [#13379](https://github.com/angular/angular.js/issues/13379), [#13460](https://github.com/angular/angular.js/issues/13460)) +- **isArrayLike:** recognize empty instances of an Array subclass + ([323f9ab7](https://github.com/angular/angular.js/commit/323f9ab73696f223c245ddefd62a769fe102615e), + [#13560](https://github.com/angular/angular.js/issues/13560), [#13708](https://github.com/angular/angular.js/issues/13708)) +- **ngInclude:** do not compile template if original scope is destroyed + ([9590bcf0](https://github.com/angular/angular.js/commit/9590bcf0620cd507a7795c55f9a6f4a48bfedbc1)) +- **ngOptions:** + - don't skip `optgroup` elements with `value === ''` + ([85e392f3](https://github.com/angular/angular.js/commit/85e392f3543ef5285c7e90e843af0ab522cb0531), + [#13487](https://github.com/angular/angular.js/issues/13487), [#13489](https://github.com/angular/angular.js/issues/13489)) + - don't `$dirty` multiple select after compilation + ([f163c905](https://github.com/angular/angular.js/commit/f163c90555774426ccb14752d089fc707cb4029c), + [#13211](https://github.com/angular/angular.js/issues/13211), [#13326](https://github.com/angular/angular.js/issues/13326)) +- **select:** re-define `ngModelCtrl.$render` in the `select` directive's postLink function + ([529b2507](https://github.com/angular/angular.js/commit/529b2507bdb4fcc22dfa0f7ab462c79fc78d1413), + [#13583](https://github.com/angular/angular.js/issues/13583), [#13583](https://github.com/angular/angular.js/issues/13583), [#13663](https://github.com/angular/angular.js/issues/13663)) + +### `ngAnimate` Module + +- **ngAnimate:** + - ensure that animate promises resolve when the document is hidden + ([9a60408c](https://github.com/angular/angular.js/commit/9a60408c804a62a9517857bdb9a42182ab6769e3)) + - do not trigger animations if the document is hidden + ([09f6061a](https://github.com/angular/angular.js/commit/09f6061a8ee41cae4268e8d44d727d3bf52e22a9), + [#12842](https://github.com/angular/angular.js/issues/12842), [#13776](https://github.com/angular/angular.js/issues/13776)) + - only copy over the animation options once + ([2fc954d3](https://github.com/angular/angular.js/commit/2fc954d33a3a4c5d4f355be1e15a381664e02f1b), + [#13722](https://github.com/angular/angular.js/issues/13722), [#13578](https://github.com/angular/angular.js/issues/13578)) + - allow event listeners on document in IE + ([5ba4419e](https://github.com/angular/angular.js/commit/5ba4419e265ff34c6c23bf3533a3332c99c5f014), + [#13548](https://github.com/angular/angular.js/issues/13548), [#13696](https://github.com/angular/angular.js/issues/13696)) + - allow removing classes that are added by a running animation + ([6c4581fc](https://github.com/angular/angular.js/commit/6c4581fcb692b17295a41b8918c6038333e7bc3d), + [#13339](https://github.com/angular/angular.js/issues/13339), [#13380](https://github.com/angular/angular.js/issues/13380), [#13414](https://github.com/angular/angular.js/issues/13414), [#13472](https://github.com/angular/angular.js/issues/13472), [#13678](https://github.com/angular/angular.js/issues/13678)) + - do not use `event.timeStamp` anymore for time tracking + ([620a20d1](https://github.com/angular/angular.js/commit/620a20d1b3376d95f85004ffa494e36bb19a2e4d), + [#13494](https://github.com/angular/angular.js/issues/13494), [#13495](https://github.com/angular/angular.js/issues/13495)) + - ignore children without animation data when closing them + ([be01cebf](https://github.com/angular/angular.js/commit/be01cebfae9ca2383105e535820442b39a96b240), + [#11992](https://github.com/angular/angular.js/issues/11992), [#13424](https://github.com/angular/angular.js/issues/13424)) + - do not alter the provided options data + ([7a81e6fe](https://github.com/angular/angular.js/commit/7a81e6fe2db084172e34d509f0baad2b33a8722c), + [#13040](https://github.com/angular/angular.js/issues/13040), [#13175](https://github.com/angular/angular.js/issues/13175)) + +## Minor Features + +- **ngLocale:** add support for standalone months + ([54c4041e](https://github.com/angular/angular.js/commit/54c4041ebc0cc4df70cf6996f43a6aaaf56d46bd), + [#3744](https://github.com/angular/angular.js/issues/3744), [#10247](https://github.com/angular/angular.js/issues/10247), [#12642](https://github.com/angular/angular.js/issues/12642), [#12844](https://github.com/angular/angular.js/issues/12844)) +- **ngMock:** add support for `$animate.closeAndFlush()` + ([512c0811](https://github.com/angular/angular.js/commit/512c08118786a419fabbd063fa17d224aba125cf)) + + +## Performance Improvements + +- **ngAnimate:** speed up `areAnimationsAllowed` check + ([2d3303dd](https://github.com/angular/angular.js/commit/2d3303ddda6330c4f45b381b6b17346f6cfe2d97)) + + +## Breaking Changes + +While we do not deem the following to be a real breaking change we are highlighting it here in the +changelog to ensure that it does not surprise anyone. + +- **$resource:** due to [47486524](https://github.com/angular/angular.js/commit/474865242c89ba3e8143f0cd52f8c292979ea730), + +**Possible breaking change** for users who updated their code to provide a `timeout` +promise for a `$resource` request in version 1.4.8. + +Up to v1.4.7 (included), using a promise as a timeout in `$resource`, would silently +fail (i.e. have no effect). + +In v1.4.8, using a promise as timeout would have the (buggy) behaviour described +in https://github.com/angular/angular.js/pull/12657#issuecomment-152108887 +(i.e. it will work as expected for the first time you resolve the promise and will +cancel all subsequent requests after that - one has to re-create the resource +class. This is feature was not documented.) + +With this change, using a promise as timeout in 1.4.9 onwsards is not allowed. +It will log a warning and ignore the timeout value. + +If you need support for cancellable `$resource` actions, you should upgrade to +version 1.5 or higher. + + # 1.4.8 ice-manipulation (2015-11-19) From a1fd2239c91001c757302b4ec14ff82ac3d5e028 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Thu, 21 Jan 2016 14:29:24 +0000 Subject: [PATCH 214/354] docs(CHANGELOG): fix animation grouping --- CHANGELOG.md | 54 +++++++++++++++++++++++----------------------------- 1 file changed, 24 insertions(+), 30 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e96901ccff1a..adc454fff001 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,8 +4,30 @@ ## Bug Fixes -### Core `ng` Module -- **$animate:** +- **Animation** + - ensure that animate promises resolve when the document is hidden + ([9a60408c](https://github.com/angular/angular.js/commit/9a60408c804a62a9517857bdb9a42182ab6769e3)) + - do not trigger animations if the document is hidden + ([09f6061a](https://github.com/angular/angular.js/commit/09f6061a8ee41cae4268e8d44d727d3bf52e22a9), + [#12842](https://github.com/angular/angular.js/issues/12842), [#13776](https://github.com/angular/angular.js/issues/13776)) + - only copy over the animation options once + ([2fc954d3](https://github.com/angular/angular.js/commit/2fc954d33a3a4c5d4f355be1e15a381664e02f1b), + [#13722](https://github.com/angular/angular.js/issues/13722), [#13578](https://github.com/angular/angular.js/issues/13578)) + - allow event listeners on document in IE + ([5ba4419e](https://github.com/angular/angular.js/commit/5ba4419e265ff34c6c23bf3533a3332c99c5f014), + [#13548](https://github.com/angular/angular.js/issues/13548), [#13696](https://github.com/angular/angular.js/issues/13696)) + - allow removing classes that are added by a running animation + ([6c4581fc](https://github.com/angular/angular.js/commit/6c4581fcb692b17295a41b8918c6038333e7bc3d), + [#13339](https://github.com/angular/angular.js/issues/13339), [#13380](https://github.com/angular/angular.js/issues/13380), [#13414](https://github.com/angular/angular.js/issues/13414), [#13472](https://github.com/angular/angular.js/issues/13472), [#13678](https://github.com/angular/angular.js/issues/13678)) + - do not use `event.timeStamp` anymore for time tracking + ([620a20d1](https://github.com/angular/angular.js/commit/620a20d1b3376d95f85004ffa494e36bb19a2e4d), + [#13494](https://github.com/angular/angular.js/issues/13494), [#13495](https://github.com/angular/angular.js/issues/13495)) + - ignore children without animation data when closing them + ([be01cebf](https://github.com/angular/angular.js/commit/be01cebfae9ca2383105e535820442b39a96b240), + [#11992](https://github.com/angular/angular.js/issues/11992), [#13424](https://github.com/angular/angular.js/issues/13424)) + - do not alter the provided options data + ([7a81e6fe](https://github.com/angular/angular.js/commit/7a81e6fe2db084172e34d509f0baad2b33a8722c), + [#13040](https://github.com/angular/angular.js/issues/13040), [#13175](https://github.com/angular/angular.js/issues/13175)) - correctly handle `$animate.pin()` host elements ([a985adfd](https://github.com/angular/angular.js/commit/a985adfdabd871f3f3f3ee59f371da50cd9611d9), [#13783](https://github.com/angular/angular.js/issues/13783)) @@ -20,7 +42,6 @@ - ensure animate runner is the same with and without animations ([937942f5](https://github.com/angular/angular.js/commit/937942f5ada6de1bdacdf0ba465f6f118c270119), [#13205](https://github.com/angular/angular.js/issues/13205), [#13347](https://github.com/angular/angular.js/issues/13347)) -- **$animateCss:** - remove animation end event listeners on close ([d9157849](https://github.com/angular/angular.js/commit/d9157849df224a3a8d2e0bf03099d137f51499f6), [#13672](https://github.com/angular/angular.js/issues/13672)) @@ -63,33 +84,6 @@ ([529b2507](https://github.com/angular/angular.js/commit/529b2507bdb4fcc22dfa0f7ab462c79fc78d1413), [#13583](https://github.com/angular/angular.js/issues/13583), [#13583](https://github.com/angular/angular.js/issues/13583), [#13663](https://github.com/angular/angular.js/issues/13663)) -### `ngAnimate` Module - -- **ngAnimate:** - - ensure that animate promises resolve when the document is hidden - ([9a60408c](https://github.com/angular/angular.js/commit/9a60408c804a62a9517857bdb9a42182ab6769e3)) - - do not trigger animations if the document is hidden - ([09f6061a](https://github.com/angular/angular.js/commit/09f6061a8ee41cae4268e8d44d727d3bf52e22a9), - [#12842](https://github.com/angular/angular.js/issues/12842), [#13776](https://github.com/angular/angular.js/issues/13776)) - - only copy over the animation options once - ([2fc954d3](https://github.com/angular/angular.js/commit/2fc954d33a3a4c5d4f355be1e15a381664e02f1b), - [#13722](https://github.com/angular/angular.js/issues/13722), [#13578](https://github.com/angular/angular.js/issues/13578)) - - allow event listeners on document in IE - ([5ba4419e](https://github.com/angular/angular.js/commit/5ba4419e265ff34c6c23bf3533a3332c99c5f014), - [#13548](https://github.com/angular/angular.js/issues/13548), [#13696](https://github.com/angular/angular.js/issues/13696)) - - allow removing classes that are added by a running animation - ([6c4581fc](https://github.com/angular/angular.js/commit/6c4581fcb692b17295a41b8918c6038333e7bc3d), - [#13339](https://github.com/angular/angular.js/issues/13339), [#13380](https://github.com/angular/angular.js/issues/13380), [#13414](https://github.com/angular/angular.js/issues/13414), [#13472](https://github.com/angular/angular.js/issues/13472), [#13678](https://github.com/angular/angular.js/issues/13678)) - - do not use `event.timeStamp` anymore for time tracking - ([620a20d1](https://github.com/angular/angular.js/commit/620a20d1b3376d95f85004ffa494e36bb19a2e4d), - [#13494](https://github.com/angular/angular.js/issues/13494), [#13495](https://github.com/angular/angular.js/issues/13495)) - - ignore children without animation data when closing them - ([be01cebf](https://github.com/angular/angular.js/commit/be01cebfae9ca2383105e535820442b39a96b240), - [#11992](https://github.com/angular/angular.js/issues/11992), [#13424](https://github.com/angular/angular.js/issues/13424)) - - do not alter the provided options data - ([7a81e6fe](https://github.com/angular/angular.js/commit/7a81e6fe2db084172e34d509f0baad2b33a8722c), - [#13040](https://github.com/angular/angular.js/issues/13040), [#13175](https://github.com/angular/angular.js/issues/13175)) - ## Minor Features - **ngLocale:** add support for standalone months From da03497f6bf9e73a9bb205bcfcf8970787e728eb Mon Sep 17 00:00:00 2001 From: Qingyu Zhou Date: Sat, 23 Jan 2016 00:28:00 -0800 Subject: [PATCH 215/354] docs(tutorial/step_12): change "click" to "hover" Should be "hover" not "click", since we trigger the change at "mouseenter", not "click". Closes #13831 --- docs/content/tutorial/step_12.ngdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/tutorial/step_12.ngdoc b/docs/content/tutorial/step_12.ngdoc index f9ac9adade07..79b3233b78a3 100644 --- a/docs/content/tutorial/step_12.ngdoc +++ b/docs/content/tutorial/step_12.ngdoc @@ -239,7 +239,7 @@ The name of the starting class is the name of the event that is fired (like `ent The active class name is the same as the starting class's but with an `-active` suffix. This two-class CSS naming convention allows the developer to craft an animation, beginning to end. -In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the +In our example above, elements are expanded from a height of **0** to **120 pixels** when they're added to the list and are collapsed back down to **0 pixels** before being removed from the list. There's also a nice fade-in and fade-out effect that occurs at the same time. All of this is handled by the CSS transition declarations at the top of the example code above. @@ -357,10 +357,10 @@ For more on CSS animations, see the ## Animating `ngClass` with JavaScript Let's add another animation to our application. Switching to our `phone-detail.html` page, -we see that we have a nice thumbnail swapper. By clicking on the thumbnails listed on the page, +we see that we have a nice thumbnail swapper. By hovering over the thumbnails listed on the page, the profile phone image changes. But how can we change this around to add animations? -Let's think about it first. Basically, when you click on a thumbnail image, you're changing the +Let's think about it first. Basically, when you hover over a thumbnail image, you're changing the state of the profile image to reflect the newly selected thumbnail image. The best way to specify state changes within HTML is to use classes. Much like before, how we used a CSS class to specify an animation, this time the animation will @@ -369,7 +369,7 @@ occur whenever the CSS class itself changes. Whenever a new phone thumbnail is selected, the state changes and the `.active` CSS class is added to the matching profile image and the animation plays. -Let's get started and tweak our HTML code on the `phone-detail.html` page first. Notice that we +Let's get started and tweak our HTML code on the `phone-detail.html` page first. Notice that we have changed the way we display our large image: __`app/partials/phone-detail.html`.__ From 76c6493c2bfd587e3203230d74adfd37677b4957 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Tue, 19 Jan 2016 20:33:55 +0100 Subject: [PATCH 216/354] docs(guide/filter): clarify how to use filters in controllers Closes #11915 --- docs/content/guide/filter.ngdoc | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/docs/content/guide/filter.ngdoc b/docs/content/guide/filter.ngdoc index 6830cfdea459..d05f8ae1dcf5 100644 --- a/docs/content/guide/filter.ngdoc +++ b/docs/content/guide/filter.ngdoc @@ -32,10 +32,13 @@ E.g. the markup `{{ 1234 | number:2 }}` formats the number 1234 with 2 decimal p ## Using filters in controllers, services, and directives -You can also use filters in controllers, services, and directives. For this, inject a dependency -with the name `Filter` to your controller/service/directive. E.g. using the dependency -`numberFilter` will inject the number filter. The injected argument is a function that takes the -value to format as first argument and filter parameters starting with the second argument. +You can also use filters in controllers, services, and directives. + +
      +For this, inject a dependency with the name `Filter` into your controller/service/directive. +E.g. a filter called `number` is injected by using the dependency `numberFilter`. The injected argument +is a function that takes the value to format as first argument, and filter parameters starting with the second argument. +
      The example below uses the filter called {@link ng.filter:filter `filter`}. This filter reduces arrays into sub arrays based on @@ -108,6 +111,7 @@ text upper-case. No filter: {{greeting}}
      Reverse: {{greeting|reverse}}
      Reverse + uppercase: {{greeting|reverse:true}}
      + Reverse, filtered in controller: {{filteredGreeting}}
      @@ -127,8 +131,9 @@ text upper-case. return out; }; }) - .controller('MyController', ['$scope', function($scope) { + .controller('MyController', ['$scope', 'reverseFilter', function($scope, reverseFilter) { $scope.greeting = 'hello'; + $scope.filteredGreeting = reverseFilter($scope.greeting); }]); From 3b27dd37a2cc8a52992784ece6b371023dadf792 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Thu, 21 Jan 2016 12:08:23 -0800 Subject: [PATCH 217/354] fix(ngAnimate): properly cancel-out previously running class-based animations Prior to this fix the addition and removal of a CSS class via ngAnimate would cause flicker effects because $animate was unable to keep track of the CSS classes once they were applied to the element. This fix ensures that ngAnimate always keeps a reference to the classes in the currently running animation so that cancelling works accordingly. The commit also adds a test for a previously untested animation merge path. Closes #10156 Closes #13822 --- src/ngAnimate/.jshintrc | 2 +- src/ngAnimate/animateQueue.js | 47 +++++++++---------- src/ngAnimate/shared.js | 8 +++- test/ngAnimate/.jshintrc | 2 +- test/ngAnimate/animateSpec.js | 24 +++++++++- .../ngAnimate/animationHelperFunctionsSpec.js | 17 ++++--- test/ngAnimate/integrationSpec.js | 26 ++++++++++ 7 files changed, 92 insertions(+), 34 deletions(-) diff --git a/src/ngAnimate/.jshintrc b/src/ngAnimate/.jshintrc index 187ecd1f3c9d..4e2235825fbc 100644 --- a/src/ngAnimate/.jshintrc +++ b/src/ngAnimate/.jshintrc @@ -48,7 +48,7 @@ "assertArg": false, "isPromiseLike": false, "mergeClasses": false, - "mergeAnimationOptions": false, + "mergeAnimationDetails": false, "prepareAnimationOptions": false, "applyAnimationStyles": false, "applyAnimationFromStyles": false, diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 07ac1480c6cb..7f4da4bdc4b9 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -42,22 +42,21 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { }); } - function hasAnimationClasses(options, and) { - options = options || {}; - var a = (options.addClass || '').length > 0; - var b = (options.removeClass || '').length > 0; + function hasAnimationClasses(animation, and) { + var a = (animation.addClass || '').length > 0; + var b = (animation.removeClass || '').length > 0; return and ? a && b : a || b; } rules.join.push(function(element, newAnimation, currentAnimation) { // if the new animation is class-based then we can just tack that on - return !newAnimation.structural && hasAnimationClasses(newAnimation.options); + return !newAnimation.structural && hasAnimationClasses(newAnimation); }); rules.skip.push(function(element, newAnimation, currentAnimation) { // there is no need to animate anything if no classes are being added and // there is no structural animation that will be triggered - return !newAnimation.structural && !hasAnimationClasses(newAnimation.options); + return !newAnimation.structural && !hasAnimationClasses(newAnimation); }); rules.skip.push(function(element, newAnimation, currentAnimation) { @@ -83,19 +82,17 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { }); rules.cancel.push(function(element, newAnimation, currentAnimation) { - - - var nA = newAnimation.options.addClass; - var nR = newAnimation.options.removeClass; - var cA = currentAnimation.options.addClass; - var cR = currentAnimation.options.removeClass; + var nA = newAnimation.addClass; + var nR = newAnimation.removeClass; + var cA = currentAnimation.addClass; + var cR = currentAnimation.removeClass; // early detection to save the global CPU shortage :) if ((isUndefined(nA) && isUndefined(nR)) || (isUndefined(cA) && isUndefined(cR))) { return false; } - return (hasMatchingClasses(nA, cR)) || (hasMatchingClasses(nR, cA)); + return hasMatchingClasses(nA, cR) || hasMatchingClasses(nR, cA); }); this.$get = ['$$rAF', '$rootScope', '$rootElement', '$document', '$$HashMap', @@ -167,8 +164,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { var applyAnimationClasses = applyAnimationClassesFactory($$jqLite); - function normalizeAnimationOptions(element, options) { - return mergeAnimationOptions(element, options, {}); + function normalizeAnimationDetails(element, animation) { + return mergeAnimationDetails(element, animation, {}); } // IE9-11 has no method "contains" in SVG element and in Node.prototype. Bug #10259. @@ -362,6 +359,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { structural: isStructural, element: element, event: event, + addClass: options.addClass, + removeClass: options.removeClass, close: close, options: options, runner: runner @@ -374,11 +373,10 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { close(); return runner; } else { - mergeAnimationOptions(element, existingAnimation.options, options); + mergeAnimationDetails(element, existingAnimation, newAnimation); return existingAnimation.runner; } } - var cancelAnimationFlag = isAllowed('cancel', element, newAnimation, existingAnimation); if (cancelAnimationFlag) { if (existingAnimation.state === RUNNING_STATE) { @@ -393,7 +391,8 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { existingAnimation.close(); } else { // this will merge the new animation options into existing animation options - mergeAnimationOptions(element, existingAnimation.options, newAnimation.options); + mergeAnimationDetails(element, existingAnimation, newAnimation); + return existingAnimation.runner; } } else { @@ -403,12 +402,12 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { var joinAnimationFlag = isAllowed('join', element, newAnimation, existingAnimation); if (joinAnimationFlag) { if (existingAnimation.state === RUNNING_STATE) { - normalizeAnimationOptions(element, options); + normalizeAnimationDetails(element, newAnimation); } else { applyGeneratedPreparationClasses(element, isStructural ? event : null, options); event = newAnimation.event = existingAnimation.event; - options = mergeAnimationOptions(element, existingAnimation.options, newAnimation.options); + options = mergeAnimationDetails(element, existingAnimation, newAnimation); //we return the same runner since only the option values of this animation will //be fed into the `existingAnimation`. @@ -419,7 +418,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { } else { // normalization in this case means that it removes redundant CSS classes that // already exist (addClass) or do not exist (removeClass) on the element - normalizeAnimationOptions(element, options); + normalizeAnimationDetails(element, newAnimation); } // when the options are merged and cleaned up we may end up not having to do @@ -429,7 +428,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (!isValidAnimation) { // animate (from/to) can be quickly checked first, otherwise we check if any classes are present isValidAnimation = (newAnimation.event === 'animate' && Object.keys(newAnimation.options.to || {}).length > 0) - || hasAnimationClasses(newAnimation.options); + || hasAnimationClasses(newAnimation); } if (!isValidAnimation) { @@ -459,7 +458,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { var isValidAnimation = parentElement.length > 0 && (animationDetails.event === 'animate' || animationDetails.structural - || hasAnimationClasses(animationDetails.options)); + || hasAnimationClasses(animationDetails)); // this means that the previous animation was cancelled // even if the follow-up animation is the same event @@ -491,7 +490,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { // this combined multiple class to addClass / removeClass into a setClass event // so long as a structural event did not take over the animation - event = !animationDetails.structural && hasAnimationClasses(animationDetails.options, true) + event = !animationDetails.structural && hasAnimationClasses(animationDetails, true) ? 'setClass' : animationDetails.event; diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index 739077732b01..19b602002379 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -217,7 +217,10 @@ function applyAnimationToStyles(element, options) { } } -function mergeAnimationOptions(element, target, newOptions) { +function mergeAnimationDetails(element, oldAnimation, newAnimation) { + var target = oldAnimation.options || {}; + var newOptions = newAnimation.options || {}; + var toAdd = (target.addClass || '') + ' ' + (newOptions.addClass || ''); var toRemove = (target.removeClass || '') + ' ' + (newOptions.removeClass || ''); var classes = resolveElementClasses(element.attr('class'), toAdd, toRemove); @@ -249,6 +252,9 @@ function mergeAnimationOptions(element, target, newOptions) { target.removeClass = null; } + oldAnimation.addClass = target.addClass; + oldAnimation.removeClass = target.removeClass; + return target; } diff --git a/test/ngAnimate/.jshintrc b/test/ngAnimate/.jshintrc index fcaf04058079..d782d14e7ce4 100644 --- a/test/ngAnimate/.jshintrc +++ b/test/ngAnimate/.jshintrc @@ -3,7 +3,7 @@ "browser": true, "newcap": false, "globals": { - "mergeAnimationOptions": false, + "mergeAnimationDetails": false, "prepareAnimationOptions": false, "applyAnimationStyles": false, "applyAnimationFromStyles": false, diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index bb806ba7a9fe..05c50b47c5a4 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -6,11 +6,18 @@ describe("animations", function() { beforeEach(module('ngAnimateMock')); var element, applyAnimationClasses; + + beforeEach(module(function() { + return function($$jqLite) { + applyAnimationClasses = applyAnimationClassesFactory($$jqLite); + }; + })); + afterEach(inject(function($$jqLite) { - applyAnimationClasses = applyAnimationClassesFactory($$jqLite); dealoc(element); })); + it('should allow animations if the application is bootstrapped on the document node', function() { var capturedAnimation; @@ -1118,6 +1125,21 @@ describe("animations", function() { expect(doneHandler).toHaveBeenCalled(); })); + it('should merge a follow-up animation that does not add classes into the previous animation (pre-digest)', + inject(function($animate, $rootScope) { + + $animate.enter(element, parent); + $animate.animate(element, {height: 0}, {height: '100px'}); + + $rootScope.$digest(); + expect(capturedAnimation).toBeTruthy(); + expect(capturedAnimation[1]).toBe('enter'); // make sure the enter animation is present + + // fake the style setting (because $$animation is mocked) + applyAnimationStyles(element, capturedAnimation[2]); + expect(element.css('height')).toContain('100px'); + })); + it('should immediately skip the class-based animation if there is an active structural animation', inject(function($animate, $rootScope) { diff --git a/test/ngAnimate/animationHelperFunctionsSpec.js b/test/ngAnimate/animationHelperFunctionsSpec.js index eb66e6205555..ba77869f11e7 100644 --- a/test/ngAnimate/animationHelperFunctionsSpec.js +++ b/test/ngAnimate/animationHelperFunctionsSpec.js @@ -110,7 +110,7 @@ describe("animation option helper functions", function() { })); }); - describe('mergeAnimationOptions', function() { + describe('mergeAnimationDetails', function() { it('should merge in new options', inject(function() { element.attr('class', 'blue'); var options = prepareAnimationOptions({ @@ -120,11 +120,16 @@ describe("animation option helper functions", function() { removeClass: 'blue gold' }); - mergeAnimationOptions(element, options, { - age: 29, - addClass: 'gold brown', - removeClass: 'orange' - }); + var animation1 = { options: options }; + var animation2 = { + options: { + age: 29, + addClass: 'gold brown', + removeClass: 'orange' + } + }; + + mergeAnimationDetails(element, animation1, animation2); expect(options.name).toBe('matias'); expect(options.age).toBe(29); diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index a1f4c5cf7a18..41a6df270309 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -25,6 +25,32 @@ describe('ngAnimate integration tests', function() { ss.destroy(); }); + it('should cancel a running and started removeClass animation when a follow-up addClass animation adds the same class', + inject(function($animate, $rootScope, $$rAF, $document, $rootElement) { + + jqLite($document[0].body).append($rootElement); + element = jqLite('
      '); + $rootElement.append(element); + + element.addClass('active-class'); + + var runner = $animate.removeClass(element, 'active-class'); + $rootScope.$digest(); + + var doneHandler = jasmine.createSpy('addClass done'); + runner.done(doneHandler); + + $$rAF.flush(); // Trigger the actual animation + + expect(doneHandler).not.toHaveBeenCalled(); + + $animate.addClass(element, 'active-class'); + $rootScope.$digest(); + + // Cancelling the removeClass animation triggers the done callback + expect(doneHandler).toHaveBeenCalled(); + })); + describe('CSS animations', function() { if (!browserSupportsCssAnimations()) return; From fdbd92ff9933d0aa9809fa2f83cee56bfa738d86 Mon Sep 17 00:00:00 2001 From: Wesley Cho Date: Fri, 22 Jan 2016 12:44:10 -0800 Subject: [PATCH 218/354] docs($compile): improve nonassign error message - Improve error message to mention attribute the expression errored on Fixes #13827 Closes #13828 --- src/ng/compile.js | 4 ++-- test/ng/compileSpec.js | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 9ba7b2a770be..fb3eb6a21c19 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -2660,8 +2660,8 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // reset the change, or we will throw this exception on every $digest lastValue = destination[scopeName] = parentGet(scope); throw $compileMinErr('nonassign', - "Expression '{0}' used with directive '{1}' is non-assignable!", - attrs[attrName], directive.name); + "Expression '{0}' in attribute '{1}' used with directive '{2}' is non-assignable!", + attrs[attrName], attrName, directive.name); }; lastValue = destination[scopeName] = parentGet(scope); var parentValueWatch = function parentValueWatch(parentValue) { diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 347e1a256b67..b955bdb3964c 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3977,7 +3977,7 @@ describe('$compile', function() { componentScope.ref = 'ignore me'; expect(function() { $rootScope.$apply(); }). - toThrowMinErr("$compile", "nonassign", "Expression ''hello ' + name' used with directive 'myComponent' is non-assignable!"); + toThrowMinErr("$compile", "nonassign", "Expression ''hello ' + name' in attribute 'ref' used with directive 'myComponent' is non-assignable!"); expect(componentScope.ref).toBe('hello world'); // reset since the exception was rethrown which prevented phase clearing $rootScope.$$phase = null; @@ -3994,7 +3994,7 @@ describe('$compile', function() { componentScope.ref = 'ignore me'; expect(function() { $rootScope.$apply(); }). - toThrowMinErr("$compile", "nonassign", "Expression 'undefined' used with directive 'myComponent' is non-assignable!"); + toThrowMinErr("$compile", "nonassign", "Expression 'undefined' in attribute 'ref' used with directive 'myComponent' is non-assignable!"); expect(componentScope.ref).toBeUndefined(); $rootScope.$$phase = null; // reset since the exception was rethrown which prevented phase clearing @@ -4051,7 +4051,7 @@ describe('$compile', function() { componentScope.reference = {name: 'b'}; expect(function() { $rootScope.$apply(); - }).toThrowMinErr("$compile", "nonassign", "Expression '{name: name}' used with directive 'myComponent' is non-assignable!"); + }).toThrowMinErr("$compile", "nonassign", "Expression '{name: name}' in attribute 'reference' used with directive 'myComponent' is non-assignable!"); })); From 2632250a4253ddadd93e1a7a97fa1c05ec5f3bdb Mon Sep 17 00:00:00 2001 From: Alireza Mirian Date: Mon, 24 Aug 2015 19:10:37 +0430 Subject: [PATCH 219/354] docs($injector): fix inaccuracy in $provide.service docs Closes #12664 Closes #12665 --- src/auto/injector.js | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/src/auto/injector.js b/src/auto/injector.js index 309413bc0814..0dfc091b9cc7 100644 --- a/src/auto/injector.js +++ b/src/auto/injector.js @@ -487,8 +487,20 @@ function annotate(fn, strictDi, name) { * * Register a **service constructor**, which will be invoked with `new` to create the service * instance. - * This is short for registering a service where its provider's `$get` property is the service - * constructor function that will be used to instantiate the service instance. + * This is short for registering a service where its provider's `$get` property is a factory + * function that returns an instance instantiated by the injector from the service constructor + * function. + * + * Internally it looks a bit like this: + * + * ``` + * { + * $get: function() { + * return $injector.instantiate(constructor); + * } + * } + * ``` + * * * You should use {@link auto.$provide#service $provide.service(class)} if you define your service * as a type/class. From dae4a2e7365dea6001a4af4e86486e9cf5bf2532 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Mon, 31 Aug 2015 10:54:44 +0200 Subject: [PATCH 220/354] docs(tutorial/step-7): add troubleshooting instructions Show troubleshooting instructions as in step 11. Closes #12715 --- docs/content/tutorial/step_07.ngdoc | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/content/tutorial/step_07.ngdoc b/docs/content/tutorial/step_07.ngdoc index 824e322d3e48..8f9b654e08c8 100644 --- a/docs/content/tutorial/step_07.ngdoc +++ b/docs/content/tutorial/step_07.ngdoc @@ -53,6 +53,18 @@ preconfigured npm to run bower install for us: npm install ``` +
      + **Warning:** If a new version of Angular has been released since you last ran `npm install`, then you may have a + problem with the `bower install` due to a conflict between the versions of angular.js that need to + be installed. If you get this then simply delete your `app/bower_components` folder before running + `npm install`. +
      + +
      + **Note:** If you have bower installed globally then you can run `bower install` but for this project we have + preconfigured `npm install` to run bower for us. +
      + ## Multiple Views, Routing and Layout Template From 3092fd31bb933a1665b3ed55aec7f56b7a5ecee3 Mon Sep 17 00:00:00 2001 From: Tobias Leugger - Vibes Date: Mon, 31 Aug 2015 17:20:28 +0200 Subject: [PATCH 221/354] docs(error/unpr): add hint about using `ngStrictDi` The unknown provider error often happens when code is minified and one did not use the correct syntax that supports minification. It's frustrating to have to hunt for a bug in minified code, so adding the simple hint that `ngStrictDi` will tell you what is wrong in the original code will save you quite some trouble. Closes #12717 --- docs/content/error/$injector/unpr.ngdoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/content/error/$injector/unpr.ngdoc b/docs/content/error/$injector/unpr.ngdoc index cbf687b4d77e..c057baf743c1 100644 --- a/docs/content/error/$injector/unpr.ngdoc +++ b/docs/content/error/$injector/unpr.ngdoc @@ -81,3 +81,6 @@ angular.module('myModule', []) // a scope object cannot be injected into a service. }]); ``` + +If you encounter this error only with minified code, consider using `ngStrictDi` (see +{@link ng.directive:ngApp ngApp}) to provoke the error with the non-minified source. From 6a953bb0cbc7695d8cb39c7916f3abd6df4ce48b Mon Sep 17 00:00:00 2001 From: Livvie Lin Date: Thu, 17 Sep 2015 23:53:31 -0700 Subject: [PATCH 222/354] style(src): delete whitespace and use single quotes This change edits syntax for code consistency. It removes whitespace to match the style of the rest of the code, and changes double quotes to single quotes to conform with Google's JavaScript Style Guide. Closes #12889 --- src/Angular.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index 271ba17dbe9b..a78102ba2925 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -313,7 +313,7 @@ function forEachSorted(obj, iterator, context) { * @returns {function(*, string)} */ function reverseParams(iteratorFn) { - return function(value, key) { iteratorFn(key, value); }; + return function(value, key) {iteratorFn(key, value);}; } /** @@ -721,7 +721,7 @@ function isElement(node) { * @returns {object} in the form of {key1:true, key2:true, ...} */ function makeMap(str) { - var obj = {}, items = str.split(","), i; + var obj = {}, items = str.split(','), i; for (i = 0; i < items.length; i++) { obj[items[i]] = true; } @@ -1240,7 +1240,7 @@ function startingTag(element) { return element[0].nodeType === NODE_TYPE_TEXT ? lowercase(elemHtml) : elemHtml. match(/^(<[^>]+>)/)[1]. - replace(/^<([\w\-]+)/, function(match, nodeName) { return '<' + lowercase(nodeName); }); + replace(/^<([\w\-]+)/, function(match, nodeName) {return '<' + lowercase(nodeName);}); } catch (e) { return lowercase(elemHtml); } From f476060de6cc016380c0343490a184543f853652 Mon Sep 17 00:00:00 2001 From: Lucas Galfaso Date: Mon, 14 Sep 2015 10:37:52 +0200 Subject: [PATCH 223/354] fix(dateFilter): follow the CLDR on pattern escape sequences When there are two single quotes "''" (quotes for clarification) that are not part of an escape sequence, then this sequence should be handled as one single quote. See http://www.unicode.org/reports/tr35/tr35-dates.html#Date_Format_Patterns second and forth examples Closes #12839 --- src/ng/filter/filters.js | 2 +- test/ng/filter/filtersSpec.js | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 3844e51b2d91..d03fcac7616a 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -613,7 +613,7 @@ function dateFilter($locale) { forEach(parts, function(value) { fn = DATE_FORMATS[value]; text += fn ? fn(date, $locale.DATETIME_FORMATS, dateTimezoneOffset) - : value.replace(/(^'|'$)/g, '').replace(/''/g, "'"); + : value === "''" ? "'" : value.replace(/(^'|'$)/g, '').replace(/''/g, "'"); }); return text; diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js index 979fd2bf02b8..50b7612cedcf 100644 --- a/test/ng/filter/filtersSpec.js +++ b/test/ng/filter/filtersSpec.js @@ -421,6 +421,8 @@ describe('filters', function() { it('should treat a sequence of two single quotes as a literal single quote', function() { expect(date(midnight, "yyyy'de' 'a''dd' 'adZ' h=H:m:saZ")). toEqual("2010de a'dd adZ 12=0:5:8AM-0500"); + expect(date(midnight, "EEE, MMM d, ''yy")). + toEqual("Fri, Sep 3, '10"); }); it('should accept default formats', function() { From 94d34beed414c8ba7b1f0e583c9c18b2a5f39a01 Mon Sep 17 00:00:00 2001 From: marianoc84 Date: Mon, 21 Sep 2015 01:10:13 +0200 Subject: [PATCH 224/354] docs(guide/Modules): update style guide link The linked blog post recommends John Papa's Guide. Closes #12898 --- docs/content/guide/module.ngdoc | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/module.ngdoc b/docs/content/guide/module.ngdoc index 3ac4a3c0385e..433a3223918a 100644 --- a/docs/content/guide/module.ngdoc +++ b/docs/content/guide/module.ngdoc @@ -75,9 +75,8 @@ that you break your application to multiple modules like this: * And an application level module which depends on the above modules and contains any initialization code. -We've also -[written a document](http://angularjs.blogspot.com/2014/02/an-angularjs-style-guide-and-best.html) -on how we organize large apps at Google. +You can find a community +[style guide](https://github.com/johnpapa/angular-styleguide) to help yourself when application grows. The above is a suggestion. Tailor it to your needs. From 796f7ab41487e124b5b0c02dbf0a03bd581bf073 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 3 Dec 2015 15:12:30 +0100 Subject: [PATCH 225/354] feat(ngAnimate): provide ng-[event]-prepare class for structural animations The new prepare class is added before the animation is pushed to the queue and removed before the animation runs, i.e. it is immediately available when a structural animation (enter, leave, move) is initialized. The class can be used to apply CSS to explicitly hide these elements to prevent a flash of content before the animation runs. This can happen if a structural animation (such as ng-if) sits at the bottom of a tree which has ng-class animations on the parents. Because child animations are spaced out with requestAnimationFrame, the ng-enter class might not be applied in time, so the ng.if element is briefly visible before its animation starts. --- docs/content/guide/animations.ngdoc | 31 +++++++++++++++++++++++++ src/ngAnimate/.jshintrc | 1 + src/ngAnimate/animation.js | 10 ++++++++ src/ngAnimate/module.js | 28 ++++++++++++++++++++++ src/ngAnimate/shared.js | 1 + test/ngAnimate/animationSpec.js | 19 +++++++++++++++ test/ngAnimate/integrationSpec.js | 36 +++++++++++++++++++++++++++++ 7 files changed, 126 insertions(+) diff --git a/docs/content/guide/animations.ngdoc b/docs/content/guide/animations.ngdoc index 14b62f1f9d1b..0898789dd917 100644 --- a/docs/content/guide/animations.ngdoc +++ b/docs/content/guide/animations.ngdoc @@ -274,6 +274,37 @@ myModule.directive('my-directive', ['$animate', function($animate) { }]); ``` +## Preventing flicker before an animation starts + +When nesting elements with structural animations such as `ngIf` into elements that have class-based +animations such as `ngClass`, it sometimes happens that before the actual animation starts, there is a brief flicker or flash of content +where the animated element is briefly visible. + +To prevent this, you can apply styles to the `ng-[event]-prepare` class, which is added as soon as an animation is initialized, +but removed before the actual animation starts (after waiting for a $digest). This class is only added for *structural* +animations (`enter`, `move`, and `leave`). + +Here's an example where you might see flickering: + +```html +
      +
      +
      +
      +
      +``` + +It is possible that during the `enter` event, the `.message` div will be briefly visible before it starts animating. +In that case, you can add styles to the CSS that make sure the element stays hidden before the animation starts: + +```css +.message.ng-enter-prepare { + opacity: 0; +} + +/* Other animation styles ... */ +``` + ## More about animations For a full breakdown of each method available on `$animate`, see the {@link ng.$animate API documentation}. diff --git a/src/ngAnimate/.jshintrc b/src/ngAnimate/.jshintrc index 4e2235825fbc..5e7ad602cae7 100644 --- a/src/ngAnimate/.jshintrc +++ b/src/ngAnimate/.jshintrc @@ -29,6 +29,7 @@ "REMOVE_CLASS_SUFFIX": false, "EVENT_CLASS_PREFIX": false, "ACTIVE_CLASS_SUFFIX": false, + "PREPARE_CLASS_SUFFIX": false, "TRANSITION_DURATION_PROP": false, "TRANSITION_DELAY_PROP": false, diff --git a/src/ngAnimate/animation.js b/src/ngAnimate/animation.js index c0deb035f790..f0ac060fcb9d 100644 --- a/src/ngAnimate/animation.js +++ b/src/ngAnimate/animation.js @@ -135,6 +135,12 @@ var $$AnimationProvider = ['$animateProvider', function($animateProvider) { options.tempClasses = null; } + var prepareClassName; + if (isStructural) { + prepareClassName = 'ng-' + event + PREPARE_CLASS_SUFFIX; + $$jqLite.addClass(element, prepareClassName); + } + animationQueue.push({ // this data is used by the postDigest code and passed into // the driver step function @@ -357,6 +363,10 @@ var $$AnimationProvider = ['$animateProvider', function($animateProvider) { if (tempClasses) { $$jqLite.addClass(element, tempClasses); } + if (prepareClassName) { + $$jqLite.removeClass(element, prepareClassName); + prepareClassName = null; + } } function updateAnimationRunners(animation, newRunner) { diff --git a/src/ngAnimate/module.js b/src/ngAnimate/module.js index ce4e09552cff..bee7501f5d5c 100644 --- a/src/ngAnimate/module.js +++ b/src/ngAnimate/module.js @@ -253,6 +253,34 @@ * the CSS class once an animation has completed.) * * + * ### The `ng-[event]-prepare` class + * + * This is a special class that can be used to prevent unwanted flickering / flash of content before + * the actual animation starts. The class is added as soon as an animation is initialized, but removed + * before the actual animation starts (after waiting for a $digest). + * It is also only added for *structural* animations (`enter`, `move`, and `leave`). + * + * In practice, flickering can appear when nesting elements with structural animations such as `ngIf` + * into elements that have class-based animations such as `ngClass`. + * + * ```html + *
      + *
      + *
      + *
      + *
      + * ``` + * + * It is possible that during the `enter` animation, the `.message` div will be briefly visible before it starts animating. + * In that case, you can add styles to the CSS that make sure the element stays hidden before the animation starts: + * + * ```css + * .message.ng-enter-prepare { + * opacity: 0; + * } + * + * ``` + * * ## JavaScript-based Animations * * ngAnimate also allows for animations to be consumed by JavaScript code. The approach is similar to CSS-based animations (where there is a shared diff --git a/src/ngAnimate/shared.js b/src/ngAnimate/shared.js index 19b602002379..a2029d211480 100644 --- a/src/ngAnimate/shared.js +++ b/src/ngAnimate/shared.js @@ -21,6 +21,7 @@ var ADD_CLASS_SUFFIX = '-add'; var REMOVE_CLASS_SUFFIX = '-remove'; var EVENT_CLASS_PREFIX = 'ng-'; var ACTIVE_CLASS_SUFFIX = '-active'; +var PREPARE_CLASS_SUFFIX = '-prepare'; var NG_ANIMATE_CLASSNAME = 'ng-animate'; var NG_ANIMATE_CHILDREN_DATA = '$$ngAnimateChildren'; diff --git a/test/ngAnimate/animationSpec.js b/test/ngAnimate/animationSpec.js index 04ba3e5949a3..dcce9c1219f7 100644 --- a/test/ngAnimate/animationSpec.js +++ b/test/ngAnimate/animationSpec.js @@ -513,6 +513,25 @@ describe('$$animation', function() { expect(captureLog[1].element).toBe(child); expect(captureLog[2].element).toBe(grandchild); })); + + + they('should add the preparation class before the $prop-animation is pushed to the queue', + ['enter', 'leave', 'move'], function(animationType) { + inject(function($$animation, $rootScope, $animate) { + var runner = $$animation(element, animationType); + expect(element).toHaveClass('ng-' + animationType + '-prepare'); + }); + }); + + + they('should remove the preparation class before the $prop-animation starts', + ['enter', 'leave', 'move'], function(animationType) { + inject(function($$animation, $rootScope, $$rAF) { + var runner = $$animation(element, animationType); + $rootScope.$digest(); + expect(element).not.toHaveClass('ng-' + animationType + '-prepare'); + }); + }); }); describe("grouped", function() { diff --git a/test/ngAnimate/integrationSpec.js b/test/ngAnimate/integrationSpec.js index 41a6df270309..3fee45965b50 100644 --- a/test/ngAnimate/integrationSpec.js +++ b/test/ngAnimate/integrationSpec.js @@ -315,6 +315,42 @@ describe('ngAnimate integration tests', function() { }); }); + it('should add the preparation class for an enter animation before a parent class-based animation is applied', function() { + module('ngAnimateMock'); + inject(function($animate, $compile, $rootScope, $rootElement, $document) { + element = jqLite( + '
      ' + + '
      ' + + '
      ' + + '
      ' + ); + + ss.addRule('.ng-enter', 'transition:2s linear all;'); + ss.addRule('.parent-add', 'transition:5s linear all;'); + + $rootElement.append(element); + jqLite($document[0].body).append($rootElement); + + $compile(element)($rootScope); + $rootScope.exp = true; + $rootScope.$digest(); + + var parent = element; + var child = element.find('div'); + + expect(parent).not.toHaveClass('parent'); + expect(parent).toHaveClass('parent-add'); + expect(child).not.toHaveClass('ng-enter'); + expect(child).toHaveClass('ng-enter-prepare'); + + $animate.flush(); + expect(parent).toHaveClass('parent parent-add parent-add-active'); + expect(child).toHaveClass('ng-enter ng-enter-active'); + expect(child).not.toHaveClass('ng-enter-prepare'); + }); + }); + + it('should pack level elements into their own RAF flush', function() { module('ngAnimateMock'); inject(function($animate, $compile, $rootScope, $rootElement, $document) { From c51fbcb7debb9858d1f8be927858c165075e83da Mon Sep 17 00:00:00 2001 From: Robin Glauser Date: Sun, 27 Sep 2015 13:30:34 +0200 Subject: [PATCH 226/354] docs(error/modulerr): add additional debugging help This simple tip can help to diagnose the error. Closes #12958 --- docs/content/error/$injector/modulerr.ngdoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/content/error/$injector/modulerr.ngdoc b/docs/content/error/$injector/modulerr.ngdoc index e957b64b1a01..4746bf66209f 100644 --- a/docs/content/error/$injector/modulerr.ngdoc +++ b/docs/content/error/$injector/modulerr.ngdoc @@ -6,6 +6,9 @@ This error occurs when a module fails to load due to some exception. The error message above should provide additional context. +A common reason why the module fails to load is that you've forgotten to +include the file with the defined module or that the file couldn't be loaded. + ### Using `ngRoute` In AngularJS `1.2.0` and later, `ngRoute` has been moved to its own module. @@ -24,4 +27,4 @@ angular.module('ng').filter('tel', function (){}); Instead create your own module and add it as a dependency to your application's top-level module. See [#9692](https://github.com/angular/angular.js/issues/9692) and -[#7709](https://github.com/angular/angular.js/issues/7709) for more information \ No newline at end of file +[#7709](https://github.com/angular/angular.js/issues/7709) for more information From ce13cfd30ad04a3df1f186b792112ae9806251ec Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 25 Jan 2016 22:59:17 +0100 Subject: [PATCH 227/354] docs($sceDelegateProvider): fix markdown errors Closes #13360 --- src/ng/sce.js | 28 +++++++++++++++------------- 1 file changed, 15 insertions(+), 13 deletions(-) diff --git a/src/ng/sce.js b/src/ng/sce.js index c823f2b2bd4e..6c29eed25ac9 100644 --- a/src/ng/sce.js +++ b/src/ng/sce.js @@ -144,13 +144,15 @@ function $SceDelegateProvider() { * @kind function * * @param {Array=} whitelist When provided, replaces the resourceUrlWhitelist with the value - * provided. This must be an array or null. A snapshot of this array is used so further - * changes to the array are ignored. + * provided. This must be an array or null. A snapshot of this array is used so further + * changes to the array are ignored. * - * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items - * allowed in this array. + * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items + * allowed in this array. * - * Note: **an empty whitelist array will block all URLs**! + *
      + * **Note:** an empty whitelist array will block all URLs! + *
      * * @return {Array} the currently set whitelist array. * @@ -173,17 +175,17 @@ function $SceDelegateProvider() { * @kind function * * @param {Array=} blacklist When provided, replaces the resourceUrlBlacklist with the value - * provided. This must be an array or null. A snapshot of this array is used so further - * changes to the array are ignored. + * provided. This must be an array or null. A snapshot of this array is used so further + * changes to the array are ignored. * - * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items - * allowed in this array. + * Follow {@link ng.$sce#resourceUrlPatternItem this link} for a description of the items + * allowed in this array. * - * The typical usage for the blacklist is to **block - * [open redirects](http://cwe.mitre.org/data/definitions/601.html)** served by your domain as - * these would otherwise be trusted but actually return content from the redirected domain. + * The typical usage for the blacklist is to **block + * [open redirects](http://cwe.mitre.org/data/definitions/601.html)** served by your domain as + * these would otherwise be trusted but actually return content from the redirected domain. * - * Finally, **the blacklist overrides the whitelist** and has the final say. + * Finally, **the blacklist overrides the whitelist** and has the final say. * * @return {Array} the currently set blacklist array. * From 7b0a865c97a1f099fc83dd843cdf6838cf66a4f0 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 25 Jan 2016 22:50:01 +0100 Subject: [PATCH 228/354] docs(guide/directives): link to the scope property docs Closes #12500 --- docs/content/guide/directive.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 6e0d9d1a32bc..6b6d3031efcf 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -401,7 +401,7 @@ This is clearly not a great solution. What we want to be able to do is separate the scope inside a directive from the scope outside, and then map the outer scope to a directive's inner scope. We can do this by creating what -we call an **isolate scope**. To do this, we can use a directive's `scope` option: +we call an **isolate scope**. To do this, we can use a {@link $compile#-scope- directive's `scope`} option: From bf79770706090f6f378f54d49f6602e153ae8380 Mon Sep 17 00:00:00 2001 From: Edgar Flores Date: Wed, 20 Jan 2016 10:47:21 -0800 Subject: [PATCH 229/354] docs(guide/Interpolation): fix links The links were not working, either `{` was missing or they were in the wrong location Closes #13809 --- docs/content/guide/interpolation.ngdoc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/content/guide/interpolation.ngdoc b/docs/content/guide/interpolation.ngdoc index 2b53da63124d..f991cfa74fba 100644 --- a/docs/content/guide/interpolation.ngdoc +++ b/docs/content/guide/interpolation.ngdoc @@ -5,7 +5,7 @@ # Interpolation and data-binding -Interpolation markup with embedded @link {guide/expressions expressions} is used by Angular to +Interpolation markup with embedded {@link guide/expression expressions} is used by Angular to provide data-binding to text nodes and attribute values. An example of interpolation is shown below: @@ -43,8 +43,8 @@ interpret the attribute as present, meaning that the button would always be disa ``` For this reason, Angular provides special `ng`-prefixed directives for the following boolean attributes: -{@link ngDisabled `disabled`}, [@link ngRequired `required`}, [@link ngSelected `selected`}, -{@link ngChecked `checked`}, {@link ngReadonly `readOnly`} , and [@link ngOpen `open`}. +{@link ngDisabled `disabled`}, {@link ngRequired `required`}, {@link ngSelected `selected`}, +{@link ngChecked `checked`}, {@link ngReadonly `readOnly`} , and {@link ngOpen `open`}. These directives take an expression inside the attribute, and set the corresponding boolean attribute to true when the expression evaluates to truthy. From 379b8d958386764b4cf7b72c7ca2473cecd794bb Mon Sep 17 00:00:00 2001 From: Robert Reiz Date: Sun, 29 Nov 2015 16:38:52 +0100 Subject: [PATCH 230/354] docs(bower.json): add MIT license Closes #13405 --- bower.json | 1 + 1 file changed, 1 insertion(+) diff --git a/bower.json b/bower.json index e1f774b6f6a6..ec7cfbbadcce 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,6 @@ { "name": "AngularJS", + "license": "MIT", "devDependencies": { "jquery": "2.1.1", "closure-compiler": "https://dl.google.com/closure-compiler/compiler-20140814.zip", From e69f35507e10c994708ce4f1efba7573951d1acd Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 26 Jan 2016 10:46:40 +0000 Subject: [PATCH 231/354] feat($locale): Include original locale ID in $locale Most systems use *IETF language tag* codes which are typically a combination of the ISO 639 language code and ISO 3166-1 country code with an underscore or hyphen delimiter. For example `en_US`, `en_AU`, etc. Whilst the `$locale.id` comes close, the lowercase format makes it impossible to transform to an IETF tag reliably. For example, it would be impossible to deduce `en_Dsrt_US` from `en-dsrt-us`. Closes #13390 --- i18n/spec/closureI18nExtractorSpec.js | 8 ++++++++ i18n/src/closureI18nExtractor.js | 6 ++++-- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/i18n/spec/closureI18nExtractorSpec.js b/i18n/spec/closureI18nExtractorSpec.js index d3ebc843bdb1..c6f7a8a0f6ef 100644 --- a/i18n/spec/closureI18nExtractorSpec.js +++ b/i18n/spec/closureI18nExtractorSpec.js @@ -4,6 +4,7 @@ findLocaleId = closureI18nExtractor.findLocaleId; extractNumberSymbols = closureI18nExtractor.extractNumberSymbols; extractCurrencySymbols = closureI18nExtractor.extractCurrencySymbols; extractDateTimeSymbols = closureI18nExtractor.extractDateTimeSymbols; +outputLocale = closureI18nExtractor.outputLocale; function newTestLocaleInfo() { @@ -272,3 +273,10 @@ describe("serializeContent", function() { }); }); +describe("outputLocale", function() { + it("should render the correct locale ids", function() { + var output = outputLocale(newTestLocaleInfo(), 'fr_CA'); + expect(output).toContain('"id": "fr-ca"'); + expect(output).toContain('"localeID": "fr_CA"'); + }); +}); diff --git a/i18n/src/closureI18nExtractor.js b/i18n/src/closureI18nExtractor.js index c5d1b0d2de87..6e10b49e631e 100644 --- a/i18n/src/closureI18nExtractor.js +++ b/i18n/src/closureI18nExtractor.js @@ -161,6 +161,7 @@ function outputLocale(localeInfo, localeID) { if (!localeObj.DATETIME_FORMATS) { localeObj.DATETIME_FORMATS = fallBackObj.DATETIME_FORMATS; } + localeObj.localeID = localeID; localeObj.id = correctedLocaleId(localeID); var getDecimals = [ @@ -201,10 +202,11 @@ function outputLocale(localeInfo, localeID) { DATETIME_FORMATS: localeObj.DATETIME_FORMATS, NUMBER_FORMATS: localeObj.NUMBER_FORMATS, pluralCat: localeObj.pluralCat, - id: localeObj.id + id: localeObj.id, + localeID: localeID }; - var content = serializeContent(localeInfo[localeID]); + var content = serializeContent(localeObj); if (content.indexOf('getVF(') < 0) { getVF = ''; } From 9cee054920363186480f5617df1813176d60c219 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 26 Jan 2016 10:05:13 +0000 Subject: [PATCH 232/354] chore(i18n): fix up i18n testing tools --- i18n/generate.sh | 2 +- i18n/run-tests.sh | 6 - i18n/spec/closureI18nExtractorSpec.js | 7 +- i18n/src/closureI18nExtractor.js | 10 +- npm-shrinkwrap.clean.json | 181 +++-- npm-shrinkwrap.json | 1051 ++++++++++++------------- package.json | 5 +- 7 files changed, 624 insertions(+), 638 deletions(-) delete mode 100755 i18n/run-tests.sh diff --git a/i18n/generate.sh b/i18n/generate.sh index 4c5db4402388..0bbbe9a16440 100755 --- a/i18n/generate.sh +++ b/i18n/generate.sh @@ -5,7 +5,7 @@ set -e BASE_DIR=`dirname $0` cd $BASE_DIR -./run-tests.sh +npm run test-i18n node src/closureSlurper.js diff --git a/i18n/run-tests.sh b/i18n/run-tests.sh deleted file mode 100755 index 3f710c023a10..000000000000 --- a/i18n/run-tests.sh +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/bash - -set -e -PARENT_DIR="$(dirname "$0")" - -../node_modules/.bin/jasmine-node "$PARENT_DIR"/spec/ diff --git a/i18n/spec/closureI18nExtractorSpec.js b/i18n/spec/closureI18nExtractorSpec.js index c6f7a8a0f6ef..8773e9f0e5ae 100644 --- a/i18n/spec/closureI18nExtractorSpec.js +++ b/i18n/spec/closureI18nExtractorSpec.js @@ -73,7 +73,7 @@ describe("findLocaleId", function() { it("should throw an error otherwise", function() { expect(function() { findLocaleId("str", "otherwise") - }).toThrow("unknown type in findLocaleId: otherwise"); + }).toThrowError("unknown type in findLocaleId: otherwise"); }); }); @@ -132,7 +132,10 @@ describe("extractCurrencySymbols", function() { ].join('\n'); var localeInfo = {}; - expect(extractCurrencySymbols(CONTENT)).toEqual({ + var currencySymbols = extractCurrencySymbols(CONTENT); + expect(currencySymbols.GBP).toEqual([2, '£', 'GB£']); + expect(currencySymbols.AOA).toEqual([2, 'Kz', 'Kz']); + expect(currencySymbols).toEqual({ 'GBP':[2, '£', 'GB£'], 'AOA':[2, 'Kz', 'Kz'] }); diff --git a/i18n/src/closureI18nExtractor.js b/i18n/src/closureI18nExtractor.js index 6e10b49e631e..411d5531740a 100644 --- a/i18n/src/closureI18nExtractor.js +++ b/i18n/src/closureI18nExtractor.js @@ -50,10 +50,10 @@ function extractNumberSymbols(content, localeInfo, currencySymbols) { function extractCurrencySymbols(content) { //eval script in the current context so that we get access to all the symbols eval(content.toString()); - var currencySymbols = goog.i18n.currency.CurrencyInfo; - currencySymbols.__proto__ = goog.i18n.currency.CurrencyInfoTier2; + // var currencySymbols = goog.i18n.currency.CurrencyInfo; + // currencySymbols.__proto__ = goog.i18n.currency.CurrencyInfoTier2; - return currencySymbols; + return Object.assign({}, goog.i18n.currency.CurrencyInfoTier2, goog.i18n.currency.CurrencyInfo); } function extractDateTimeSymbols(content, localeInfo) { @@ -79,7 +79,7 @@ function pluralExtractor(content, localeInfo) { goog.LOCALE = localeIds[i].match(/[^_]+/)[0]; try { eval(contentText); - } catch(e) { + } catch (e) { console.log("Error in eval(contentText): " + e.stack); } if (!goog.i18n.pluralRules.select) { @@ -133,7 +133,7 @@ function canonicalizeForJsonStringify(unused_key, object) { function serializeContent(localeObj) { return JSON.stringify(localeObj, canonicalizeForJsonStringify, ' ') - .replace(new RegExp('[\\u007f-\\uffff]', 'g'), function(c) { return '\\u'+('0000'+c.charCodeAt(0).toString(16)).slice(-4); }) + .replace(new RegExp('[\\u007f-\\uffff]', 'g'), function(c) { return '\\u' + ('0000' + c.charCodeAt(0).toString(16)).slice(-4); }) .replace(/"@@|@@"/g, ''); } diff --git a/npm-shrinkwrap.clean.json b/npm-shrinkwrap.clean.json index d676f10c2d79..28627170bd86 100644 --- a/npm-shrinkwrap.clean.json +++ b/npm-shrinkwrap.clean.json @@ -8186,61 +8186,45 @@ } }, "jasmine-node": { - "version": "1.14.5", + "version": "2.0.0", "dependencies": { "coffee-script": { - "version": "1.9.1" - }, - "jasmine-growl-reporter": { - "version": "0.0.3", - "dependencies": { - "growl": { - "version": "1.7.0" - } - } - }, - "requirejs": { - "version": "2.1.17" + "version": "1.7.1" }, "walkdir": { - "version": "0.0.7" + "version": "0.0.11" }, "underscore": { - "version": "1.8.3" + "version": "1.6.0" }, "gaze": { - "version": "0.3.4", + "version": "0.5.2", "dependencies": { - "minimatch": { - "version": "0.2.14", + "globule": { + "version": "0.1.0", "dependencies": { - "lru-cache": { - "version": "2.5.0" + "lodash": { + "version": "1.0.2" }, - "sigmund": { - "version": "1.0.0" - } - } - }, - "fileset": { - "version": "0.1.5", - "dependencies": { "glob": { - "version": "3.2.11", + "version": "3.1.21", "dependencies": { + "graceful-fs": { + "version": "1.2.3" + }, "inherits": { - "version": "2.0.1" + "version": "1.0.2" + } + } + }, + "minimatch": { + "version": "0.2.14", + "dependencies": { + "lru-cache": { + "version": "2.7.3" }, - "minimatch": { - "version": "0.3.0", - "dependencies": { - "lru-cache": { - "version": "2.5.0" - }, - "sigmund": { - "version": "1.0.0" - } - } + "sigmund": { + "version": "1.0.1" } } } @@ -8250,6 +8234,17 @@ }, "mkdirp": { "version": "0.3.5" + }, + "minimist": { + "version": "0.0.8" + }, + "jasmine-growl-reporter": { + "version": "0.2.1", + "dependencies": { + "growl": { + "version": "1.7.0" + } + } } } }, @@ -8625,21 +8620,21 @@ } } }, - "ansi": { - "version": "0.3.0" - }, "ansi-regex": { "version": "2.0.0" }, + "ansi": { + "version": "0.3.0" + }, "ansi-styles": { "version": "2.1.0" }, - "are-we-there-yet": { - "version": "1.0.4" - }, "asn1": { "version": "0.2.3" }, + "are-we-there-yet": { + "version": "1.0.4" + }, "assert-plus": { "version": "0.1.5" }, @@ -8667,12 +8662,12 @@ "commander": { "version": "2.9.0" }, - "core-util-is": { - "version": "1.0.2" - }, "cryptiles": { "version": "2.0.5" }, + "core-util-is": { + "version": "1.0.2" + }, "dashdash": { "version": "1.10.1" }, @@ -8685,42 +8680,42 @@ "delayed-stream": { "version": "1.0.0" }, - "delegates": { - "version": "0.1.0" - }, "ecc-jsbn": { "version": "0.1.1" }, "escape-string-regexp": { "version": "1.0.3" }, + "delegates": { + "version": "0.1.0" + }, "extend": { "version": "3.0.0" }, + "form-data": { + "version": "1.0.0-rc3" + }, "extsprintf": { "version": "1.0.2" }, "forever-agent": { "version": "0.6.1" }, - "form-data": { - "version": "1.0.0-rc3" - }, "fstream": { "version": "1.0.8" }, "gauge": { "version": "1.2.2" }, - "generate-function": { - "version": "2.0.0" - }, "generate-object-property": { "version": "1.2.0" }, "graceful-fs": { "version": "4.1.2" }, + "generate-function": { + "version": "2.0.0" + }, "graceful-readlink": { "version": "1.0.1" }, @@ -8730,11 +8725,14 @@ "has-ansi": { "version": "2.0.0" }, + "hawk": { + "version": "3.1.2" + }, "has-unicode": { "version": "1.0.1" }, - "hawk": { - "version": "3.1.2" + "inherits": { + "version": "2.0.1" }, "hoek": { "version": "2.16.3" @@ -8742,69 +8740,66 @@ "http-signature": { "version": "1.1.0" }, - "inherits": { - "version": "2.0.1" - }, "ini": { "version": "1.3.4" }, - "is-my-json-valid": { - "version": "2.12.3" - }, "is-property": { "version": "1.0.2" }, + "is-my-json-valid": { + "version": "2.12.3" + }, "is-typedarray": { "version": "1.0.0" }, "isarray": { "version": "0.0.1" }, + "jsbn": { + "version": "0.1.0" + }, "isstream": { "version": "0.1.2" }, "jodid25519": { "version": "1.0.2" }, - "jsbn": { - "version": "0.1.0" - }, "json-schema": { "version": "0.2.2" }, "json-stringify-safe": { "version": "5.0.1" }, - "jsonpointer": { - "version": "2.0.0" - }, "jsprim": { "version": "1.2.2" }, - "lodash._basetostring": { - "version": "3.0.1" - }, - "lodash._createpadding": { - "version": "3.6.1" + "jsonpointer": { + "version": "2.0.0" }, "lodash.pad": { "version": "3.1.1" }, - "lodash.padleft": { - "version": "3.1.1" - }, "lodash.padright": { "version": "3.1.1" }, - "lodash.repeat": { + "lodash._basetostring": { "version": "3.0.1" }, + "lodash._createpadding": { + "version": "3.6.1" + }, "mime-db": { "version": "1.19.0" }, + "lodash.repeat": { + "version": "3.0.1" + }, "mime-types": { "version": "2.1.7" }, + "lodash.padleft": { + "version": "3.1.1" + }, "minimist": { "version": "0.0.8" }, @@ -8814,15 +8809,15 @@ "node-uuid": { "version": "1.4.7" }, - "npmlog": { - "version": "2.0.0" - }, "oauth-sign": { "version": "0.8.0" }, "once": { "version": "1.1.1" }, + "npmlog": { + "version": "2.0.0" + }, "pinkie": { "version": "2.0.1" }, @@ -8838,24 +8833,24 @@ "request": { "version": "2.67.0" }, - "semver": { - "version": "5.1.0" - }, "sntp": { "version": "1.0.9" }, + "semver": { + "version": "5.1.0" + }, "string_decoder": { "version": "0.10.31" }, "stringstream": { "version": "0.0.5" }, - "strip-ansi": { - "version": "3.0.0" - }, "strip-json-comments": { "version": "1.0.4" }, + "strip-ansi": { + "version": "3.0.0" + }, "supports-color": { "version": "2.0.0" }, @@ -8871,12 +8866,12 @@ "tweetnacl": { "version": "0.13.2" }, - "uid-number": { - "version": "0.0.3" - }, "verror": { "version": "1.3.6" }, + "uid-number": { + "version": "0.0.3" + }, "xtend": { "version": "4.0.1" }, diff --git a/npm-shrinkwrap.json b/npm-shrinkwrap.json index adc2559ee638..81cb6b7763e9 100644 --- a/npm-shrinkwrap.json +++ b/npm-shrinkwrap.json @@ -12595,95 +12595,71 @@ } }, "jasmine-node": { - "version": "1.14.5", - "from": "https://registry.npmjs.org/jasmine-node/-/jasmine-node-1.14.5.tgz", - "resolved": "https://registry.npmjs.org/jasmine-node/-/jasmine-node-1.14.5.tgz", + "version": "2.0.0", + "from": "jasmine-node@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/jasmine-node/-/jasmine-node-2.0.0.tgz", "dependencies": { "coffee-script": { - "version": "1.9.1", - "from": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.9.1.tgz", - "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.9.1.tgz" - }, - "jasmine-growl-reporter": { - "version": "0.0.3", - "from": "https://registry.npmjs.org/jasmine-growl-reporter/-/jasmine-growl-reporter-0.0.3.tgz", - "resolved": "https://registry.npmjs.org/jasmine-growl-reporter/-/jasmine-growl-reporter-0.0.3.tgz", - "dependencies": { - "growl": { - "version": "1.7.0", - "from": "https://registry.npmjs.org/growl/-/growl-1.7.0.tgz", - "resolved": "https://registry.npmjs.org/growl/-/growl-1.7.0.tgz" - } - } - }, - "requirejs": { - "version": "2.1.17", - "from": "https://registry.npmjs.org/requirejs/-/requirejs-2.1.17.tgz", - "resolved": "https://registry.npmjs.org/requirejs/-/requirejs-2.1.17.tgz" + "version": "1.7.1", + "from": "coffee-script@>=1.7.1 <1.8.0", + "resolved": "https://registry.npmjs.org/coffee-script/-/coffee-script-1.7.1.tgz" }, "walkdir": { - "version": "0.0.7", - "from": "https://registry.npmjs.org/walkdir/-/walkdir-0.0.7.tgz", - "resolved": "https://registry.npmjs.org/walkdir/-/walkdir-0.0.7.tgz" + "version": "0.0.11", + "from": "walkdir@>=0.0.7 <0.1.0", + "resolved": "https://registry.npmjs.org/walkdir/-/walkdir-0.0.11.tgz" }, "underscore": { - "version": "1.8.3", - "from": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz", - "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.3.tgz" + "version": "1.6.0", + "from": "underscore@>=1.6.0 <1.7.0", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.6.0.tgz" }, "gaze": { - "version": "0.3.4", - "from": "https://registry.npmjs.org/gaze/-/gaze-0.3.4.tgz", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.3.4.tgz", + "version": "0.5.2", + "from": "gaze@>=0.5.1 <0.6.0", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-0.5.2.tgz", "dependencies": { - "minimatch": { - "version": "0.2.14", - "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "globule": { + "version": "0.1.0", + "from": "globule@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/globule/-/globule-0.1.0.tgz", "dependencies": { - "lru-cache": { - "version": "2.5.0", - "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz" + "lodash": { + "version": "1.0.2", + "from": "lodash@>=1.0.1 <1.1.0", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-1.0.2.tgz" }, - "sigmund": { - "version": "1.0.0", - "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz" - } - } - }, - "fileset": { - "version": "0.1.5", - "from": "https://registry.npmjs.org/fileset/-/fileset-0.1.5.tgz", - "resolved": "https://registry.npmjs.org/fileset/-/fileset-0.1.5.tgz", - "dependencies": { "glob": { - "version": "3.2.11", - "from": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", - "resolved": "https://registry.npmjs.org/glob/-/glob-3.2.11.tgz", + "version": "3.1.21", + "from": "glob@>=3.1.21 <3.2.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-3.1.21.tgz", "dependencies": { + "graceful-fs": { + "version": "1.2.3", + "from": "graceful-fs@>=1.2.0 <1.3.0", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-1.2.3.tgz" + }, "inherits": { - "version": "2.0.1", - "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" + "version": "1.0.2", + "from": "inherits@>=1.0.0 <2.0.0", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-1.0.2.tgz" + } + } + }, + "minimatch": { + "version": "0.2.14", + "from": "minimatch@>=0.2.11 <0.3.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.2.14.tgz", + "dependencies": { + "lru-cache": { + "version": "2.7.3", + "from": "lru-cache@>=2.0.0 <3.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.7.3.tgz" }, - "minimatch": { - "version": "0.3.0", - "from": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-0.3.0.tgz", - "dependencies": { - "lru-cache": { - "version": "2.5.0", - "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.5.0.tgz" - }, - "sigmund": { - "version": "1.0.0", - "from": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.0.tgz" - } - } + "sigmund": { + "version": "1.0.1", + "from": "sigmund@>=1.0.0 <1.1.0", + "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz" } } } @@ -12693,8 +12669,25 @@ }, "mkdirp": { "version": "0.3.5", - "from": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", + "from": "mkdirp@>=0.3.5 <0.4.0", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz" + }, + "minimist": { + "version": "0.0.8", + "from": "minimist@0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" + }, + "jasmine-growl-reporter": { + "version": "0.2.1", + "from": "jasmine-growl-reporter@>=0.2.0 <0.3.0", + "resolved": "https://registry.npmjs.org/jasmine-growl-reporter/-/jasmine-growl-reporter-0.2.1.tgz", + "dependencies": { + "growl": { + "version": "1.7.0", + "from": "growl@>=1.7.0 <1.8.0", + "resolved": "https://registry.npmjs.org/growl/-/growl-1.7.0.tgz" + } + } } } }, @@ -12799,120 +12792,120 @@ }, "karma": { "version": "0.13.19", - "from": "karma@>=0.9.0", + "from": "https://registry.npmjs.org/karma/-/karma-0.13.19.tgz", "resolved": "https://registry.npmjs.org/karma/-/karma-0.13.19.tgz", "dependencies": { "batch": { "version": "0.5.3", - "from": "batch@>=0.5.3 <0.6.0", + "from": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz", "resolved": "https://registry.npmjs.org/batch/-/batch-0.5.3.tgz" }, "bluebird": { "version": "2.10.2", - "from": "bluebird@>=2.9.27 <3.0.0", + "from": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" }, "body-parser": { "version": "1.14.2", - "from": "body-parser@>=1.12.4 <2.0.0", + "from": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.14.2.tgz", "dependencies": { "bytes": { "version": "2.2.0", - "from": "bytes@2.2.0", + "from": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz", "resolved": "https://registry.npmjs.org/bytes/-/bytes-2.2.0.tgz" }, "content-type": { "version": "1.0.1", - "from": "content-type@>=1.0.1 <1.1.0", + "from": "https://registry.npmjs.org/content-type/-/content-type-1.0.1.tgz", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.1.tgz" }, "debug": { "version": "2.2.0", - "from": "debug@>=2.2.0 <2.3.0", + "from": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "dependencies": { "ms": { "version": "0.7.1", - "from": "ms@0.7.1", + "from": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" } } }, "depd": { "version": "1.1.0", - "from": "depd@>=1.1.0 <1.2.0", + "from": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.0.tgz" }, "http-errors": { "version": "1.3.1", - "from": "http-errors@>=1.3.1 <1.4.0", + "from": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.3.1.tgz", "dependencies": { "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "statuses": { "version": "1.2.1", - "from": "statuses@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.2.1.tgz" } } }, "iconv-lite": { "version": "0.4.13", - "from": "iconv-lite@0.4.13", + "from": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.13.tgz" }, "on-finished": { "version": "2.3.0", - "from": "on-finished@>=2.3.0 <2.4.0", + "from": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "dependencies": { "ee-first": { "version": "1.1.1", - "from": "ee-first@1.1.1", + "from": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" } } }, "qs": { "version": "5.2.0", - "from": "qs@5.2.0", + "from": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-5.2.0.tgz" }, "raw-body": { "version": "2.1.5", - "from": "raw-body@>=2.1.5 <2.2.0", + "from": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.5.tgz", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.1.5.tgz", "dependencies": { "unpipe": { "version": "1.0.0", - "from": "unpipe@1.0.0", + "from": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" } } }, "type-is": { "version": "1.6.10", - "from": "type-is@>=1.6.10 <1.7.0", + "from": "https://registry.npmjs.org/type-is/-/type-is-1.6.10.tgz", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.10.tgz", "dependencies": { "media-typer": { "version": "0.3.0", - "from": "media-typer@0.3.0", + "from": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz" }, "mime-types": { "version": "2.1.8", - "from": "mime-types@>=2.1.8 <2.2.0", + "from": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.8.tgz", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.8.tgz", "dependencies": { "mime-db": { "version": "1.20.0", - "from": "mime-db@>=1.20.0 <1.21.0", + "from": "https://registry.npmjs.org/mime-db/-/mime-db-1.20.0.tgz", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.20.0.tgz" } } @@ -12923,81 +12916,81 @@ }, "chokidar": { "version": "1.4.2", - "from": "chokidar@>=1.4.1 <2.0.0", + "from": "https://registry.npmjs.org/chokidar/-/chokidar-1.4.2.tgz", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.4.2.tgz", "dependencies": { "anymatch": { "version": "1.3.0", - "from": "anymatch@>=1.3.0 <2.0.0", + "from": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.0.tgz", "dependencies": { "arrify": { "version": "1.0.1", - "from": "arrify@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz" }, "micromatch": { "version": "2.3.7", - "from": "micromatch@>=2.1.5 <3.0.0", + "from": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.7.tgz", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.7.tgz", "dependencies": { "arr-diff": { "version": "2.0.0", - "from": "arr-diff@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", "dependencies": { "arr-flatten": { "version": "1.0.1", - "from": "arr-flatten@>=1.0.1 <2.0.0", + "from": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz", "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.0.1.tgz" } } }, "array-unique": { "version": "0.2.1", - "from": "array-unique@>=0.2.1 <0.3.0", + "from": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" }, "braces": { "version": "1.8.3", - "from": "braces@>=1.8.2 <2.0.0", + "from": "https://registry.npmjs.org/braces/-/braces-1.8.3.tgz", "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.3.tgz", "dependencies": { "expand-range": { "version": "1.8.1", - "from": "expand-range@>=1.8.1 <2.0.0", + "from": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz", "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.1.tgz", "dependencies": { "fill-range": { "version": "2.2.3", - "from": "fill-range@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.3.tgz", "dependencies": { "is-number": { "version": "2.1.0", - "from": "is-number@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz" }, "isobject": { "version": "2.0.0", - "from": "isobject@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/isobject/-/isobject-2.0.0.tgz", "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.0.0.tgz", "dependencies": { "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "randomatic": { "version": "1.1.5", - "from": "randomatic@>=1.1.3 <2.0.0", + "from": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz", "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-1.1.5.tgz" }, "repeat-string": { "version": "1.5.2", - "from": "repeat-string@>=1.5.2 <2.0.0", + "from": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.5.2.tgz" } } @@ -13006,126 +12999,126 @@ }, "preserve": { "version": "0.2.0", - "from": "preserve@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz" }, "repeat-element": { "version": "1.1.2", - "from": "repeat-element@>=1.1.2 <2.0.0", + "from": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz", "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.2.tgz" } } }, "expand-brackets": { "version": "0.1.4", - "from": "expand-brackets@>=0.1.4 <0.2.0", + "from": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz", "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.4.tgz" }, "extglob": { "version": "0.3.1", - "from": "extglob@>=0.3.1 <0.4.0", + "from": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.1.tgz", "dependencies": { "ansi-green": { "version": "0.1.1", - "from": "ansi-green@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", "resolved": "https://registry.npmjs.org/ansi-green/-/ansi-green-0.1.1.tgz", "dependencies": { "ansi-wrap": { "version": "0.1.0", - "from": "ansi-wrap@0.1.0", + "from": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz", "resolved": "https://registry.npmjs.org/ansi-wrap/-/ansi-wrap-0.1.0.tgz" } } }, "success-symbol": { "version": "0.1.0", - "from": "success-symbol@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz", "resolved": "https://registry.npmjs.org/success-symbol/-/success-symbol-0.1.0.tgz" } } }, "filename-regex": { "version": "2.0.0", - "from": "filename-regex@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz", "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.0.tgz" }, "is-extglob": { "version": "1.0.0", - "from": "is-extglob@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" }, "kind-of": { "version": "3.0.2", - "from": "kind-of@>=3.0.2 <4.0.0", + "from": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.0.2.tgz", "dependencies": { "is-buffer": { "version": "1.1.1", - "from": "is-buffer@>=1.0.2 <2.0.0", + "from": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.1.tgz", "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.1.tgz" } } }, "normalize-path": { "version": "2.0.1", - "from": "normalize-path@>=2.0.1 <3.0.0", + "from": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.0.1.tgz" }, "object.omit": { "version": "2.0.0", - "from": "object.omit@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.0.tgz", "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.0.tgz", "dependencies": { "for-own": { "version": "0.1.3", - "from": "for-own@>=0.1.3 <0.2.0", + "from": "https://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz", "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.3.tgz", "dependencies": { "for-in": { "version": "0.1.4", - "from": "for-in@>=0.1.4 <0.2.0", + "from": "https://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz", "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.4.tgz" } } }, "is-extendable": { "version": "0.1.1", - "from": "is-extendable@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz" } } }, "parse-glob": { "version": "3.0.4", - "from": "parse-glob@>=3.0.4 <4.0.0", + "from": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", "dependencies": { "glob-base": { "version": "0.3.0", - "from": "glob-base@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz" }, "is-dotfile": { "version": "1.0.2", - "from": "is-dotfile@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz", "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.2.tgz" } } }, "regex-cache": { "version": "0.4.2", - "from": "regex-cache@>=0.4.2 <0.5.0", + "from": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz", "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.2.tgz", "dependencies": { "is-equal-shallow": { "version": "0.1.3", - "from": "is-equal-shallow@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz" }, "is-primitive": { "version": "2.0.0", - "from": "is-primitive@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz" } } @@ -13136,71 +13129,71 @@ }, "async-each": { "version": "0.1.6", - "from": "async-each@>=0.1.6 <0.2.0", + "from": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz", "resolved": "https://registry.npmjs.org/async-each/-/async-each-0.1.6.tgz" }, "glob-parent": { "version": "2.0.0", - "from": "glob-parent@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "is-binary-path": { "version": "1.0.1", - "from": "is-binary-path@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", "dependencies": { "binary-extensions": { "version": "1.4.0", - "from": "binary-extensions@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.4.0.tgz", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.4.0.tgz" } } }, "is-glob": { "version": "2.0.1", - "from": "is-glob@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", "dependencies": { "is-extglob": { "version": "1.0.0", - "from": "is-extglob@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz" } } }, "path-is-absolute": { "version": "1.0.0", - "from": "path-is-absolute@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" }, "readdirp": { "version": "2.0.0", - "from": "readdirp@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.0.0.tgz", "dependencies": { "minimatch": { "version": "2.0.10", - "from": "minimatch@>=2.0.10 <3.0.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", "dependencies": { "brace-expansion": { "version": "1.1.2", - "from": "brace-expansion@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "dependencies": { "balanced-match": { "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" }, "concat-map": { "version": "0.0.1", - "from": "concat-map@0.0.1", + "from": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" } } @@ -13209,32 +13202,32 @@ }, "readable-stream": { "version": "2.0.5", - "from": "readable-stream@>=2.0.2 <3.0.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.5.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.5.tgz", "dependencies": { "core-util-is": { "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "process-nextick-args": { "version": "1.0.6", - "from": "process-nextick-args@>=1.0.6 <1.1.0", + "from": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.6.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "util-deprecate": { "version": "1.0.2", - "from": "util-deprecate@>=1.0.1 <1.1.0", + "from": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz" } } @@ -13243,12 +13236,12 @@ }, "fsevents": { "version": "1.0.6", - "from": "fsevents@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.6.tgz", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.0.6.tgz", "dependencies": { "nan": { "version": "2.1.0", - "from": "nan@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" }, "node-pre-gyp": { @@ -13270,31 +13263,31 @@ } } }, - "ansi": { - "version": "0.3.0", - "from": "ansi@~0.3.0", - "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.0.tgz" - }, "ansi-regex": { "version": "2.0.0", "from": "ansi-regex@^2.0.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" }, + "ansi": { + "version": "0.3.0", + "from": "ansi@~0.3.0", + "resolved": "https://registry.npmjs.org/ansi/-/ansi-0.3.0.tgz" + }, "ansi-styles": { "version": "2.1.0", "from": "ansi-styles@^2.1.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" }, - "are-we-there-yet": { - "version": "1.0.4", - "from": "are-we-there-yet@~1.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.4.tgz" - }, "asn1": { "version": "0.2.3", "from": "asn1@>=0.2.3 <0.3.0", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.3.tgz" }, + "are-we-there-yet": { + "version": "1.0.4", + "from": "are-we-there-yet@~1.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.0.4.tgz" + }, "assert-plus": { "version": "0.1.5", "from": "assert-plus@^0.1.5", @@ -13340,16 +13333,16 @@ "from": "commander@^2.9.0", "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz" }, - "core-util-is": { - "version": "1.0.2", - "from": "core-util-is@~1.0.0", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" - }, "cryptiles": { "version": "2.0.5", "from": "cryptiles@2.x.x", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" }, + "core-util-is": { + "version": "1.0.2", + "from": "core-util-is@~1.0.0", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" + }, "dashdash": { "version": "1.10.1", "from": "dashdash@>=1.10.1 <2.0.0", @@ -13370,11 +13363,6 @@ "from": "delayed-stream@~1.0.0", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz" }, - "delegates": { - "version": "0.1.0", - "from": "delegates@^0.1.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz" - }, "ecc-jsbn": { "version": "0.1.1", "from": "ecc-jsbn@>=0.0.1 <1.0.0", @@ -13385,11 +13373,21 @@ "from": "escape-string-regexp@^1.0.2", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.3.tgz" }, + "delegates": { + "version": "0.1.0", + "from": "delegates@^0.1.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-0.1.0.tgz" + }, "extend": { "version": "3.0.0", "from": "extend@~3.0.0", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" }, + "form-data": { + "version": "1.0.0-rc3", + "from": "form-data@~1.0.0-rc3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz" + }, "extsprintf": { "version": "1.0.2", "from": "extsprintf@1.0.2", @@ -13400,11 +13398,6 @@ "from": "forever-agent@~0.6.1", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" }, - "form-data": { - "version": "1.0.0-rc3", - "from": "form-data@~1.0.0-rc3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-1.0.0-rc3.tgz" - }, "fstream": { "version": "1.0.8", "from": "fstream@^1.0.2", @@ -13415,11 +13408,6 @@ "from": "gauge@~1.2.0", "resolved": "https://registry.npmjs.org/gauge/-/gauge-1.2.2.tgz" }, - "generate-function": { - "version": "2.0.0", - "from": "generate-function@^2.0.0", - "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" - }, "generate-object-property": { "version": "1.2.0", "from": "generate-object-property@^1.1.0", @@ -13430,6 +13418,11 @@ "from": "graceful-fs@4.1", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" }, + "generate-function": { + "version": "2.0.0", + "from": "generate-function@^2.0.0", + "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" + }, "graceful-readlink": { "version": "1.0.1", "from": "graceful-readlink@>= 1.0.0", @@ -13445,15 +13438,20 @@ "from": "has-ansi@^2.0.0", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz" }, + "hawk": { + "version": "3.1.2", + "from": "hawk@~3.1.0", + "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.2.tgz" + }, "has-unicode": { "version": "1.0.1", "from": "has-unicode@^1.0.0", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-1.0.1.tgz" }, - "hawk": { - "version": "3.1.2", - "from": "hawk@~3.1.0", - "resolved": "https://registry.npmjs.org/hawk/-/hawk-3.1.2.tgz" + "inherits": { + "version": "2.0.1", + "from": "inherits@*", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "hoek": { "version": "2.16.3", @@ -13465,26 +13463,21 @@ "from": "http-signature@~1.1.0", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.1.0.tgz" }, - "inherits": { - "version": "2.0.1", - "from": "inherits@*", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" - }, "ini": { "version": "1.3.4", "from": "ini@~1.3.0", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.4.tgz" }, - "is-my-json-valid": { - "version": "2.12.3", - "from": "is-my-json-valid@^2.12.3", - "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.3.tgz" - }, "is-property": { "version": "1.0.2", "from": "is-property@^1.0.0", "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" }, + "is-my-json-valid": { + "version": "2.12.3", + "from": "is-my-json-valid@^2.12.3", + "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.3.tgz" + }, "is-typedarray": { "version": "1.0.0", "from": "is-typedarray@~1.0.0", @@ -13495,6 +13488,11 @@ "from": "isarray@0.0.1", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, + "jsbn": { + "version": "0.1.0", + "from": "jsbn@>=0.1.0 <0.2.0", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz" + }, "isstream": { "version": "0.1.2", "from": "isstream@~0.1.2", @@ -13505,11 +13503,6 @@ "from": "jodid25519@>=1.0.0 <2.0.0", "resolved": "https://registry.npmjs.org/jodid25519/-/jodid25519-1.0.2.tgz" }, - "jsbn": { - "version": "0.1.0", - "from": "jsbn@>=0.1.0 <0.2.0", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.0.tgz" - }, "json-schema": { "version": "0.2.2", "from": "json-schema@0.2.2", @@ -13520,56 +13513,56 @@ "from": "json-stringify-safe@~5.0.1", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" }, - "jsonpointer": { - "version": "2.0.0", - "from": "jsonpointer@2.0.0", - "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" - }, "jsprim": { "version": "1.2.2", "from": "jsprim@^1.2.2", "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.2.2.tgz" }, - "lodash._basetostring": { - "version": "3.0.1", - "from": "lodash._basetostring@^3.0.0", - "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" - }, - "lodash._createpadding": { - "version": "3.6.1", - "from": "lodash._createpadding@^3.0.0", - "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz" + "jsonpointer": { + "version": "2.0.0", + "from": "jsonpointer@2.0.0", + "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" }, "lodash.pad": { "version": "3.1.1", "from": "lodash.pad@^3.0.0", "resolved": "https://registry.npmjs.org/lodash.pad/-/lodash.pad-3.1.1.tgz" }, - "lodash.padleft": { - "version": "3.1.1", - "from": "lodash.padleft@^3.0.0", - "resolved": "https://registry.npmjs.org/lodash.padleft/-/lodash.padleft-3.1.1.tgz" - }, "lodash.padright": { "version": "3.1.1", "from": "lodash.padright@^3.0.0", "resolved": "https://registry.npmjs.org/lodash.padright/-/lodash.padright-3.1.1.tgz" }, - "lodash.repeat": { + "lodash._basetostring": { "version": "3.0.1", - "from": "lodash.repeat@^3.0.0", - "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + "from": "lodash._basetostring@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._basetostring/-/lodash._basetostring-3.0.1.tgz" + }, + "lodash._createpadding": { + "version": "3.6.1", + "from": "lodash._createpadding@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash._createpadding/-/lodash._createpadding-3.6.1.tgz" }, "mime-db": { "version": "1.19.0", "from": "mime-db@~1.19.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.19.0.tgz" }, + "lodash.repeat": { + "version": "3.0.1", + "from": "lodash.repeat@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.repeat/-/lodash.repeat-3.0.1.tgz" + }, "mime-types": { "version": "2.1.7", "from": "mime-types@~2.1.7", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.7.tgz" }, + "lodash.padleft": { + "version": "3.1.1", + "from": "lodash.padleft@^3.0.0", + "resolved": "https://registry.npmjs.org/lodash.padleft/-/lodash.padleft-3.1.1.tgz" + }, "minimist": { "version": "0.0.8", "from": "minimist@0.0.8", @@ -13585,11 +13578,6 @@ "from": "node-uuid@~1.4.7", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" }, - "npmlog": { - "version": "2.0.0", - "from": "npmlog@~2.0.0", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.0.tgz" - }, "oauth-sign": { "version": "0.8.0", "from": "oauth-sign@~0.8.0", @@ -13600,6 +13588,11 @@ "from": "once@~1.1.1", "resolved": "https://registry.npmjs.org/once/-/once-1.1.1.tgz" }, + "npmlog": { + "version": "2.0.0", + "from": "npmlog@~2.0.0", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-2.0.0.tgz" + }, "pinkie": { "version": "2.0.1", "from": "pinkie@^2.0.0", @@ -13625,16 +13618,16 @@ "from": "request@2.x", "resolved": "https://registry.npmjs.org/request/-/request-2.67.0.tgz" }, - "semver": { - "version": "5.1.0", - "from": "semver@~5.1.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz" - }, "sntp": { "version": "1.0.9", "from": "sntp@1.x.x", "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" }, + "semver": { + "version": "5.1.0", + "from": "semver@~5.1.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.1.0.tgz" + }, "string_decoder": { "version": "0.10.31", "from": "string_decoder@~0.10.x", @@ -13645,16 +13638,16 @@ "from": "stringstream@~0.0.4", "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" }, - "strip-ansi": { - "version": "3.0.0", - "from": "strip-ansi@^3.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz" - }, "strip-json-comments": { "version": "1.0.4", "from": "strip-json-comments@~1.0.4", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-1.0.4.tgz" }, + "strip-ansi": { + "version": "3.0.0", + "from": "strip-ansi@^3.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz" + }, "supports-color": { "version": "2.0.0", "from": "supports-color@^2.0.0", @@ -13680,16 +13673,16 @@ "from": "tweetnacl@>=0.13.0 <1.0.0", "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.13.2.tgz" }, - "uid-number": { - "version": "0.0.3", - "from": "uid-number@0.0.3", - "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.3.tgz" - }, "verror": { "version": "1.3.6", "from": "verror@1.3.6", "resolved": "https://registry.npmjs.org/verror/-/verror-1.3.6.tgz" }, + "uid-number": { + "version": "0.0.3", + "from": "uid-number@0.0.3", + "resolved": "https://registry.npmjs.org/uid-number/-/uid-number-0.0.3.tgz" + }, "xtend": { "version": "4.0.1", "from": "xtend@^4.0.0", @@ -13911,137 +13904,137 @@ }, "colors": { "version": "1.1.2", - "from": "colors@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz" }, "connect": { "version": "3.4.0", - "from": "connect@>=3.3.5 <4.0.0", + "from": "https://registry.npmjs.org/connect/-/connect-3.4.0.tgz", "resolved": "https://registry.npmjs.org/connect/-/connect-3.4.0.tgz", "dependencies": { "debug": { "version": "2.2.0", - "from": "debug@>=2.2.0 <2.3.0", + "from": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "dependencies": { "ms": { "version": "0.7.1", - "from": "ms@0.7.1", + "from": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" } } }, "finalhandler": { "version": "0.4.0", - "from": "finalhandler@0.4.0", + "from": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-0.4.0.tgz", "dependencies": { "escape-html": { "version": "1.0.2", - "from": "escape-html@1.0.2", + "from": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.2.tgz" }, "on-finished": { "version": "2.3.0", - "from": "on-finished@>=2.3.0 <2.4.0", + "from": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", "dependencies": { "ee-first": { "version": "1.1.1", - "from": "ee-first@1.1.1", + "from": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz" } } }, "unpipe": { "version": "1.0.0", - "from": "unpipe@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz" } } }, "parseurl": { "version": "1.3.0", - "from": "parseurl@>=1.3.0 <1.4.0", + "from": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.0.tgz", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.0.tgz" }, "utils-merge": { "version": "1.0.0", - "from": "utils-merge@1.0.0", + "from": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.0.tgz" } } }, "core-js": { "version": "2.0.2", - "from": "core-js@>=2.0.2 <3.0.0", + "from": "https://registry.npmjs.org/core-js/-/core-js-2.0.2.tgz", "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.0.2.tgz" }, "di": { "version": "0.0.1", - "from": "di@>=0.0.1 <0.0.2", + "from": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz" }, "dom-serialize": { "version": "2.2.1", - "from": "dom-serialize@>=2.2.0 <3.0.0", + "from": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", "dependencies": { "custom-event": { "version": "1.0.0", - "from": "custom-event@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz", "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.0.tgz" }, "ent": { "version": "2.2.0", - "from": "ent@>=2.2.0 <2.3.0", + "from": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz" }, "extend": { "version": "3.0.0", - "from": "extend@>=3.0.0 <4.0.0", + "from": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" }, "void-elements": { "version": "2.0.1", - "from": "void-elements@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz" } } }, "expand-braces": { "version": "0.1.2", - "from": "expand-braces@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", "dependencies": { "array-slice": { "version": "0.2.3", - "from": "array-slice@>=0.2.3 <0.3.0", + "from": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz" }, "array-unique": { "version": "0.2.1", - "from": "array-unique@>=0.2.1 <0.3.0", + "from": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz" }, "braces": { "version": "0.1.5", - "from": "braces@>=0.1.2 <0.2.0", + "from": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", "dependencies": { "expand-range": { "version": "0.1.1", - "from": "expand-range@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", "dependencies": { "is-number": { "version": "0.1.1", - "from": "is-number@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz" }, "repeat-string": { "version": "0.2.2", - "from": "repeat-string@>=0.2.2 <0.3.0", + "from": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz" } } @@ -14052,144 +14045,144 @@ }, "glob": { "version": "6.0.3", - "from": "glob@>=6.0.3 <7.0.0", + "from": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-6.0.3.tgz", "dependencies": { "inflight": { "version": "1.0.4", - "from": "inflight@>=1.0.4 <2.0.0", + "from": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", + "from": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } }, "path-is-absolute": { "version": "1.0.0", - "from": "path-is-absolute@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" } } }, "graceful-fs": { "version": "4.1.2", - "from": "graceful-fs@>=4.1.2 <5.0.0", + "from": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.2.tgz" }, "http-proxy": { "version": "1.12.0", - "from": "http-proxy@>=1.11.1 <2.0.0", + "from": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.12.0.tgz", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.12.0.tgz", "dependencies": { "eventemitter3": { "version": "1.1.1", - "from": "eventemitter3@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.1.1.tgz", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-1.1.1.tgz" }, "requires-port": { "version": "0.0.1", - "from": "requires-port@>=0.0.0 <1.0.0", + "from": "https://registry.npmjs.org/requires-port/-/requires-port-0.0.1.tgz", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-0.0.1.tgz" } } }, "lodash": { "version": "3.10.1", - "from": "lodash@>=3.8.0 <4.0.0", + "from": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" }, "log4js": { "version": "0.6.29", - "from": "log4js@>=0.6.28 <0.7.0", + "from": "https://registry.npmjs.org/log4js/-/log4js-0.6.29.tgz", "resolved": "https://registry.npmjs.org/log4js/-/log4js-0.6.29.tgz", "dependencies": { "async": { "version": "0.2.10", - "from": "async@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/async/-/async-0.2.10.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.2.10.tgz" }, "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.2 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "semver": { "version": "4.3.6", - "from": "semver@>=4.3.3 <4.4.0", + "from": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz" }, "underscore": { "version": "1.8.2", - "from": "underscore@1.8.2", + "from": "https://registry.npmjs.org/underscore/-/underscore-1.8.2.tgz", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.8.2.tgz" } } }, "mime": { "version": "1.3.4", - "from": "mime@>=1.3.4 <2.0.0", + "from": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz", "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.4.tgz" }, "minimatch": { "version": "3.0.0", - "from": "minimatch@>=3.0.0 <4.0.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", "dependencies": { "brace-expansion": { "version": "1.1.2", - "from": "brace-expansion@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "dependencies": { "balanced-match": { "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" }, "concat-map": { "version": "0.0.1", - "from": "concat-map@0.0.1", + "from": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" } } @@ -14198,122 +14191,122 @@ }, "optimist": { "version": "0.6.1", - "from": "optimist@>=0.6.1 <0.7.0", + "from": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", "dependencies": { "wordwrap": { "version": "0.0.3", - "from": "wordwrap@>=0.0.2 <0.1.0", + "from": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz" }, "minimist": { "version": "0.0.10", - "from": "minimist@>=0.0.1 <0.1.0", + "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz" } } }, "rimraf": { "version": "2.5.0", - "from": "rimraf@>=2.3.3 <3.0.0", + "from": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.0.tgz", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.0.tgz" }, "socket.io": { "version": "1.4.0", - "from": "socket.io@>=1.4.0 <2.0.0", + "from": "https://registry.npmjs.org/socket.io/-/socket.io-1.4.0.tgz", "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.4.0.tgz", "dependencies": { "engine.io": { "version": "1.6.5", - "from": "engine.io@1.6.5", + "from": "https://registry.npmjs.org/engine.io/-/engine.io-1.6.5.tgz", "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.6.5.tgz", "dependencies": { "base64id": { "version": "0.1.0", - "from": "base64id@0.1.0", + "from": "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz", "resolved": "https://registry.npmjs.org/base64id/-/base64id-0.1.0.tgz" }, "ws": { "version": "1.0.1", - "from": "ws@1.0.1", + "from": "https://registry.npmjs.org/ws/-/ws-1.0.1.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-1.0.1.tgz", "dependencies": { "options": { "version": "0.0.6", - "from": "options@>=0.0.5", + "from": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz" }, "ultron": { "version": "1.0.2", - "from": "ultron@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz" } } }, "engine.io-parser": { "version": "1.2.4", - "from": "engine.io-parser@1.2.4", + "from": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.4.tgz", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.4.tgz", "dependencies": { "after": { "version": "0.8.1", - "from": "after@0.8.1", + "from": "https://registry.npmjs.org/after/-/after-0.8.1.tgz", "resolved": "https://registry.npmjs.org/after/-/after-0.8.1.tgz" }, "arraybuffer.slice": { "version": "0.0.6", - "from": "arraybuffer.slice@0.0.6", + "from": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz" }, "base64-arraybuffer": { "version": "0.1.2", - "from": "base64-arraybuffer@0.1.2", + "from": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz", "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz" }, "blob": { "version": "0.0.4", - "from": "blob@0.0.4", + "from": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz" }, "has-binary": { "version": "0.1.6", - "from": "has-binary@0.1.6", + "from": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz", "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz", "dependencies": { "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "utf8": { "version": "2.1.0", - "from": "utf8@2.1.0", + "from": "https://registry.npmjs.org/utf8/-/utf8-2.1.0.tgz", "resolved": "https://registry.npmjs.org/utf8/-/utf8-2.1.0.tgz" } } }, "accepts": { "version": "1.1.4", - "from": "accepts@1.1.4", + "from": "https://registry.npmjs.org/accepts/-/accepts-1.1.4.tgz", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.1.4.tgz", "dependencies": { "mime-types": { "version": "2.0.14", - "from": "mime-types@>=2.0.4 <2.1.0", + "from": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", "dependencies": { "mime-db": { "version": "1.12.0", - "from": "mime-db@>=1.12.0 <1.13.0", + "from": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz" } } }, "negotiator": { "version": "0.4.9", - "from": "negotiator@0.4.9", + "from": "https://registry.npmjs.org/negotiator/-/negotiator-0.4.9.tgz", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.4.9.tgz" } } @@ -14322,86 +14315,86 @@ }, "socket.io-parser": { "version": "2.2.6", - "from": "socket.io-parser@2.2.6", + "from": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.6.tgz", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.6.tgz", "dependencies": { "json3": { "version": "3.3.2", - "from": "json3@3.3.2", + "from": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz" }, "component-emitter": { "version": "1.1.2", - "from": "component-emitter@1.1.2", + "from": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "socket.io-client": { "version": "1.4.0", - "from": "socket.io-client@1.4.0", + "from": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.4.0.tgz", "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.4.0.tgz", "dependencies": { "engine.io-client": { "version": "1.6.4", - "from": "engine.io-client@1.6.4", + "from": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.6.4.tgz", "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.6.4.tgz", "dependencies": { "has-cors": { "version": "1.1.0", - "from": "has-cors@1.1.0", + "from": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz" }, "ws": { "version": "0.8.1", - "from": "ws@0.8.1", + "from": "https://registry.npmjs.org/ws/-/ws-0.8.1.tgz", "resolved": "https://registry.npmjs.org/ws/-/ws-0.8.1.tgz", "dependencies": { "options": { "version": "0.0.6", - "from": "options@>=0.0.5", + "from": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz" }, "ultron": { "version": "1.0.2", - "from": "ultron@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz" }, "bufferutil": { "version": "1.2.1", - "from": "bufferutil@>=1.2.0 <1.3.0", + "from": "https://registry.npmjs.org/bufferutil/-/bufferutil-1.2.1.tgz", "resolved": "https://registry.npmjs.org/bufferutil/-/bufferutil-1.2.1.tgz", "dependencies": { "bindings": { "version": "1.2.1", - "from": "bindings@>=1.2.0 <1.3.0", + "from": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" }, "nan": { "version": "2.1.0", - "from": "nan@>=2.0.5 <3.0.0", + "from": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" } } }, "utf-8-validate": { "version": "1.2.1", - "from": "utf-8-validate@>=1.2.0 <1.3.0", + "from": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.2.1.tgz", "resolved": "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-1.2.1.tgz", "dependencies": { "bindings": { "version": "1.2.1", - "from": "bindings@>=1.2.0 <1.3.0", + "from": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz", "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.2.1.tgz" }, "nan": { "version": "2.1.0", - "from": "nan@>=2.0.5 <3.0.0", + "from": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz", "resolved": "https://registry.npmjs.org/nan/-/nan-2.1.0.tgz" } } @@ -14410,71 +14403,71 @@ }, "xmlhttprequest-ssl": { "version": "1.5.1", - "from": "xmlhttprequest-ssl@1.5.1", + "from": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.1.tgz", "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.1.tgz" }, "component-emitter": { "version": "1.1.2", - "from": "component-emitter@1.1.2", + "from": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz" }, "engine.io-parser": { "version": "1.2.4", - "from": "engine.io-parser@1.2.4", + "from": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.4.tgz", "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.2.4.tgz", "dependencies": { "after": { "version": "0.8.1", - "from": "after@0.8.1", + "from": "https://registry.npmjs.org/after/-/after-0.8.1.tgz", "resolved": "https://registry.npmjs.org/after/-/after-0.8.1.tgz" }, "arraybuffer.slice": { "version": "0.0.6", - "from": "arraybuffer.slice@0.0.6", + "from": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz" }, "base64-arraybuffer": { "version": "0.1.2", - "from": "base64-arraybuffer@0.1.2", + "from": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz", "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.2.tgz" }, "blob": { "version": "0.0.4", - "from": "blob@0.0.4", + "from": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz" }, "has-binary": { "version": "0.1.6", - "from": "has-binary@0.1.6", + "from": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz", "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.6.tgz", "dependencies": { "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "utf8": { "version": "2.1.0", - "from": "utf8@2.1.0", + "from": "https://registry.npmjs.org/utf8/-/utf8-2.1.0.tgz", "resolved": "https://registry.npmjs.org/utf8/-/utf8-2.1.0.tgz" } } }, "parsejson": { "version": "0.0.1", - "from": "parsejson@0.0.1", + "from": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz", "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.1.tgz", "dependencies": { "better-assert": { "version": "1.0.2", - "from": "better-assert@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "dependencies": { "callsite": { "version": "1.0.0", - "from": "callsite@1.0.0", + "from": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz" } } @@ -14483,17 +14476,17 @@ }, "parseqs": { "version": "0.0.2", - "from": "parseqs@0.0.2", + "from": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz", "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.2.tgz", "dependencies": { "better-assert": { "version": "1.0.2", - "from": "better-assert@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "dependencies": { "callsite": { "version": "1.0.0", - "from": "callsite@1.0.0", + "from": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz" } } @@ -14502,71 +14495,71 @@ }, "component-inherit": { "version": "0.0.3", - "from": "component-inherit@0.0.3", + "from": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz" }, "yeast": { "version": "0.1.2", - "from": "yeast@0.1.2", + "from": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz" } } }, "component-bind": { "version": "1.0.0", - "from": "component-bind@1.0.0", + "from": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz" }, "component-emitter": { "version": "1.2.0", - "from": "component-emitter@1.2.0", + "from": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.0.tgz", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.0.tgz" }, "object-component": { "version": "0.0.3", - "from": "object-component@0.0.3", + "from": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz" }, "socket.io-parser": { "version": "2.2.5", - "from": "socket.io-parser@2.2.5", + "from": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.5.tgz", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.5.tgz", "dependencies": { "json3": { "version": "3.3.2", - "from": "json3@3.3.2", + "from": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz" }, "component-emitter": { "version": "1.1.2", - "from": "component-emitter@1.1.2", + "from": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "indexof": { "version": "0.0.1", - "from": "indexof@0.0.1", + "from": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz" }, "parseuri": { "version": "0.0.4", - "from": "parseuri@0.0.4", + "from": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.4.tgz", "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.4.tgz", "dependencies": { "better-assert": { "version": "1.0.2", - "from": "better-assert@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", "dependencies": { "callsite": { "version": "1.0.0", - "from": "callsite@1.0.0", + "from": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz" } } @@ -14575,44 +14568,44 @@ }, "to-array": { "version": "0.1.3", - "from": "to-array@0.1.3", + "from": "https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz", "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.3.tgz" }, "backo2": { "version": "1.0.2", - "from": "backo2@1.0.2", + "from": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz" } } }, "socket.io-adapter": { "version": "0.4.0", - "from": "socket.io-adapter@0.4.0", + "from": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.4.0.tgz", "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.4.0.tgz", "dependencies": { "socket.io-parser": { "version": "2.2.2", - "from": "socket.io-parser@2.2.2", + "from": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.2.tgz", "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.2.2.tgz", "dependencies": { "debug": { "version": "0.7.4", - "from": "debug@0.7.4", + "from": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-0.7.4.tgz" }, "json3": { "version": "3.2.6", - "from": "json3@3.2.6", + "from": "https://registry.npmjs.org/json3/-/json3-3.2.6.tgz", "resolved": "https://registry.npmjs.org/json3/-/json3-3.2.6.tgz" }, "component-emitter": { "version": "1.1.2", - "from": "component-emitter@1.1.2", + "from": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } @@ -14621,24 +14614,24 @@ }, "has-binary": { "version": "0.1.7", - "from": "has-binary@0.1.7", + "from": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz", "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz", "dependencies": { "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" } } }, "debug": { "version": "2.2.0", - "from": "debug@2.2.0", + "from": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "dependencies": { "ms": { "version": "0.7.1", - "from": "ms@0.7.1", + "from": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" } } @@ -14647,17 +14640,17 @@ }, "source-map": { "version": "0.5.3", - "from": "source-map@>=0.5.3 <0.6.0", + "from": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.3.tgz" }, "useragent": { "version": "2.1.8", - "from": "useragent@>=2.1.6 <3.0.0", + "from": "https://registry.npmjs.org/useragent/-/useragent-2.1.8.tgz", "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.1.8.tgz", "dependencies": { "lru-cache": { "version": "2.2.4", - "from": "lru-cache@>=2.2.0 <2.3.0", + "from": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-2.2.4.tgz" } } @@ -14666,139 +14659,139 @@ }, "karma-browserstack-launcher": { "version": "0.1.8", - "from": "karma-browserstack-launcher@*", + "from": "https://registry.npmjs.org/karma-browserstack-launcher/-/karma-browserstack-launcher-0.1.8.tgz", "resolved": "https://registry.npmjs.org/karma-browserstack-launcher/-/karma-browserstack-launcher-0.1.8.tgz", "dependencies": { "browserstack": { "version": "1.2.0", - "from": "browserstack@1.2.0", + "from": "https://registry.npmjs.org/browserstack/-/browserstack-1.2.0.tgz", "resolved": "https://registry.npmjs.org/browserstack/-/browserstack-1.2.0.tgz" }, "browserstacktunnel-wrapper": { "version": "1.4.2", - "from": "browserstacktunnel-wrapper@>=1.4.2 <1.5.0", + "from": "https://registry.npmjs.org/browserstacktunnel-wrapper/-/browserstacktunnel-wrapper-1.4.2.tgz", "resolved": "https://registry.npmjs.org/browserstacktunnel-wrapper/-/browserstacktunnel-wrapper-1.4.2.tgz", "dependencies": { "unzip": { "version": "0.1.11", - "from": "unzip@>=0.1.9 <0.2.0", + "from": "https://registry.npmjs.org/unzip/-/unzip-0.1.11.tgz", "resolved": "https://registry.npmjs.org/unzip/-/unzip-0.1.11.tgz", "dependencies": { "fstream": { "version": "0.1.31", - "from": "fstream@>=0.1.30 <1.0.0", + "from": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", "resolved": "https://registry.npmjs.org/fstream/-/fstream-0.1.31.tgz", "dependencies": { "graceful-fs": { "version": "3.0.8", - "from": "graceful-fs@>=3.0.2 <3.1.0", + "from": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-3.0.8.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "mkdirp": { "version": "0.5.1", - "from": "mkdirp@>=0.5.0 <0.6.0", + "from": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", "dependencies": { "minimist": { "version": "0.0.8", - "from": "minimist@0.0.8", + "from": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz" } } }, "rimraf": { "version": "2.5.0", - "from": "rimraf@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.0.tgz", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.5.0.tgz" } } }, "pullstream": { "version": "0.4.1", - "from": "pullstream@>=0.4.1 <1.0.0", + "from": "https://registry.npmjs.org/pullstream/-/pullstream-0.4.1.tgz", "resolved": "https://registry.npmjs.org/pullstream/-/pullstream-0.4.1.tgz", "dependencies": { "over": { "version": "0.0.5", - "from": "over@>=0.0.5 <1.0.0", + "from": "https://registry.npmjs.org/over/-/over-0.0.5.tgz", "resolved": "https://registry.npmjs.org/over/-/over-0.0.5.tgz" }, "slice-stream": { "version": "1.0.0", - "from": "slice-stream@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/slice-stream/-/slice-stream-1.0.0.tgz", "resolved": "https://registry.npmjs.org/slice-stream/-/slice-stream-1.0.0.tgz" } } }, "binary": { "version": "0.3.0", - "from": "binary@>=0.3.0 <1.0.0", + "from": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", "resolved": "https://registry.npmjs.org/binary/-/binary-0.3.0.tgz", "dependencies": { "chainsaw": { "version": "0.1.0", - "from": "chainsaw@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", "resolved": "https://registry.npmjs.org/chainsaw/-/chainsaw-0.1.0.tgz", "dependencies": { "traverse": { "version": "0.3.9", - "from": "traverse@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz", "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.3.9.tgz" } } }, "buffers": { "version": "0.1.1", - "from": "buffers@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" } } }, "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.31 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "setimmediate": { "version": "1.0.4", - "from": "setimmediate@>=1.0.1 <2.0.0", + "from": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.4.tgz", "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.4.tgz" }, "match-stream": { "version": "0.0.2", - "from": "match-stream@>=0.0.2 <1.0.0", + "from": "https://registry.npmjs.org/match-stream/-/match-stream-0.0.2.tgz", "resolved": "https://registry.npmjs.org/match-stream/-/match-stream-0.0.2.tgz", "dependencies": { "buffers": { "version": "0.1.1", - "from": "buffers@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz", "resolved": "https://registry.npmjs.org/buffers/-/buffers-0.1.1.tgz" } } @@ -14809,41 +14802,41 @@ }, "q": { "version": "1.4.1", - "from": "q@>=1.4.1 <1.5.0", + "from": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz" } } }, "karma-chrome-launcher": { "version": "0.2.2", - "from": "karma-chrome-launcher@*", + "from": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.2.2.tgz", "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-0.2.2.tgz", "dependencies": { "fs-access": { "version": "1.0.0", - "from": "fs-access@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.0.tgz", "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.0.tgz", "dependencies": { "null-check": { "version": "1.0.0", - "from": "null-check@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz" } } }, "which": { "version": "1.2.1", - "from": "which@>=1.0.9 <2.0.0", + "from": "https://registry.npmjs.org/which/-/which-1.2.1.tgz", "resolved": "https://registry.npmjs.org/which/-/which-1.2.1.tgz", "dependencies": { "is-absolute": { "version": "0.1.7", - "from": "is-absolute@>=0.1.7 <0.2.0", + "from": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz", "resolved": "https://registry.npmjs.org/is-absolute/-/is-absolute-0.1.7.tgz", "dependencies": { "is-relative": { "version": "0.1.3", - "from": "is-relative@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz", "resolved": "https://registry.npmjs.org/is-relative/-/is-relative-0.1.3.tgz" } } @@ -14854,27 +14847,27 @@ }, "karma-firefox-launcher": { "version": "0.1.7", - "from": "karma-firefox-launcher@*", + "from": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-0.1.7.tgz", "resolved": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-0.1.7.tgz" }, "karma-jasmine": { "version": "0.1.6", - "from": "karma-jasmine@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-0.1.6.tgz", "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-0.1.6.tgz" }, "karma-junit-reporter": { "version": "0.3.8", - "from": "karma-junit-reporter@*", + "from": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.3.8.tgz", "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-0.3.8.tgz", "dependencies": { "xmlbuilder": { "version": "3.1.0", - "from": "xmlbuilder@3.1.0", + "from": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-3.1.0.tgz", "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-3.1.0.tgz", "dependencies": { "lodash": { "version": "3.10.1", - "from": "lodash@>=3.5.0 <4.0.0", + "from": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" } } @@ -14883,84 +14876,84 @@ }, "karma-ng-scenario": { "version": "0.1.0", - "from": "karma-ng-scenario@*", + "from": "https://registry.npmjs.org/karma-ng-scenario/-/karma-ng-scenario-0.1.0.tgz", "resolved": "https://registry.npmjs.org/karma-ng-scenario/-/karma-ng-scenario-0.1.0.tgz" }, "karma-sauce-launcher": { "version": "0.3.0", - "from": "karma-sauce-launcher@*", + "from": "https://registry.npmjs.org/karma-sauce-launcher/-/karma-sauce-launcher-0.3.0.tgz", "resolved": "https://registry.npmjs.org/karma-sauce-launcher/-/karma-sauce-launcher-0.3.0.tgz", "dependencies": { "q": { "version": "1.4.1", - "from": "q@>=1.4.1 <2.0.0", + "from": "https://registry.npmjs.org/q/-/q-1.4.1.tgz", "resolved": "https://registry.npmjs.org/q/-/q-1.4.1.tgz" }, "sauce-connect-launcher": { "version": "0.13.0", - "from": "sauce-connect-launcher@>=0.13.0 <0.14.0", + "from": "https://registry.npmjs.org/sauce-connect-launcher/-/sauce-connect-launcher-0.13.0.tgz", "resolved": "https://registry.npmjs.org/sauce-connect-launcher/-/sauce-connect-launcher-0.13.0.tgz", "dependencies": { "lodash": { "version": "3.10.1", - "from": "lodash@3.10.1", + "from": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz" }, "async": { "version": "1.4.0", - "from": "async@1.4.0", + "from": "https://registry.npmjs.org/async/-/async-1.4.0.tgz", "resolved": "https://registry.npmjs.org/async/-/async-1.4.0.tgz" }, "adm-zip": { "version": "0.4.7", - "from": "adm-zip@>=0.4.3 <0.5.0", + "from": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz", "resolved": "https://registry.npmjs.org/adm-zip/-/adm-zip-0.4.7.tgz" }, "rimraf": { "version": "2.4.3", - "from": "rimraf@2.4.3", + "from": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.4.3.tgz", "dependencies": { "glob": { "version": "5.0.15", - "from": "glob@>=5.0.14 <6.0.0", + "from": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-5.0.15.tgz", "dependencies": { "inflight": { "version": "1.0.4", - "from": "inflight@>=1.0.4 <2.0.0", + "from": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { "version": "3.0.0", - "from": "minimatch@>=2.0.0 <3.0.0||>=3.0.0 <4.0.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.0.tgz", "dependencies": { "brace-expansion": { "version": "1.1.2", - "from": "brace-expansion@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "dependencies": { "balanced-match": { "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" }, "concat-map": { "version": "0.0.1", - "from": "concat-map@0.0.1", + "from": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" } } @@ -14969,19 +14962,19 @@ }, "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", + "from": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } }, "path-is-absolute": { "version": "1.0.0", - "from": "path-is-absolute@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.0.tgz" } } @@ -14992,41 +14985,41 @@ }, "saucelabs": { "version": "1.0.1", - "from": "saucelabs@>=1.0.1 <2.0.0", + "from": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.0.1.tgz", "resolved": "https://registry.npmjs.org/saucelabs/-/saucelabs-1.0.1.tgz", "dependencies": { "https-proxy-agent": { "version": "1.0.0", - "from": "https-proxy-agent@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-1.0.0.tgz", "dependencies": { "agent-base": { "version": "2.0.1", - "from": "agent-base@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/agent-base/-/agent-base-2.0.1.tgz", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-2.0.1.tgz", "dependencies": { "semver": { "version": "5.0.3", - "from": "semver@>=5.0.1 <5.1.0", + "from": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz", "resolved": "https://registry.npmjs.org/semver/-/semver-5.0.3.tgz" } } }, "debug": { "version": "2.2.0", - "from": "debug@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", "dependencies": { "ms": { "version": "0.7.1", - "from": "ms@0.7.1", + "from": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz" } } }, "extend": { "version": "3.0.0", - "from": "extend@>=3.0.0 <4.0.0", + "from": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.0.tgz" } } @@ -15035,64 +15028,64 @@ }, "wd": { "version": "0.3.12", - "from": "wd@>=0.3.4 <0.4.0", + "from": "https://registry.npmjs.org/wd/-/wd-0.3.12.tgz", "resolved": "https://registry.npmjs.org/wd/-/wd-0.3.12.tgz", "dependencies": { "archiver": { "version": "0.14.4", - "from": "archiver@>=0.14.0 <0.15.0", + "from": "https://registry.npmjs.org/archiver/-/archiver-0.14.4.tgz", "resolved": "https://registry.npmjs.org/archiver/-/archiver-0.14.4.tgz", "dependencies": { "async": { "version": "0.9.2", - "from": "async@>=0.9.0 <0.10.0", + "from": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz" }, "buffer-crc32": { "version": "0.2.5", - "from": "buffer-crc32@>=0.2.1 <0.3.0", + "from": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.5.tgz", "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.5.tgz" }, "glob": { "version": "4.3.5", - "from": "glob@>=4.3.0 <4.4.0", + "from": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", "resolved": "https://registry.npmjs.org/glob/-/glob-4.3.5.tgz", "dependencies": { "inflight": { "version": "1.0.4", - "from": "inflight@>=1.0.4 <2.0.0", + "from": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.4.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" }, "minimatch": { "version": "2.0.10", - "from": "minimatch@>=2.0.1 <3.0.0", + "from": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-2.0.10.tgz", "dependencies": { "brace-expansion": { "version": "1.1.2", - "from": "brace-expansion@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.2.tgz", "dependencies": { "balanced-match": { "version": "0.3.0", - "from": "balanced-match@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.3.0.tgz" }, "concat-map": { "version": "0.0.1", - "from": "concat-map@0.0.1", + "from": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz" } } @@ -15101,12 +15094,12 @@ }, "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <2.0.0", + "from": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } @@ -15115,64 +15108,64 @@ }, "lazystream": { "version": "0.1.0", - "from": "lazystream@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/lazystream/-/lazystream-0.1.0.tgz", "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-0.1.0.tgz" }, "lodash": { "version": "3.2.0", - "from": "lodash@>=3.2.0 <3.3.0", + "from": "https://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.2.0.tgz" }, "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } }, "tar-stream": { "version": "1.1.5", - "from": "tar-stream@>=1.1.0 <1.2.0", + "from": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.1.5.tgz", "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.1.5.tgz", "dependencies": { "bl": { "version": "0.9.4", - "from": "bl@>=0.9.0 <0.10.0", + "from": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz" }, "end-of-stream": { "version": "1.1.0", - "from": "end-of-stream@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.1.0.tgz", "dependencies": { "once": { "version": "1.3.3", - "from": "once@>=1.3.0 <1.4.0", + "from": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "resolved": "https://registry.npmjs.org/once/-/once-1.3.3.tgz", "dependencies": { "wrappy": { "version": "1.0.1", - "from": "wrappy@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz" } } @@ -15181,29 +15174,29 @@ }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <5.0.0", + "from": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } }, "zip-stream": { "version": "0.5.2", - "from": "zip-stream@>=0.5.0 <0.6.0", + "from": "https://registry.npmjs.org/zip-stream/-/zip-stream-0.5.2.tgz", "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-0.5.2.tgz", "dependencies": { "compress-commons": { "version": "0.2.9", - "from": "compress-commons@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/compress-commons/-/compress-commons-0.2.9.tgz", "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-0.2.9.tgz", "dependencies": { "crc32-stream": { "version": "0.3.4", - "from": "crc32-stream@>=0.3.1 <0.4.0", + "from": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-0.3.4.tgz", "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-0.3.4.tgz" }, "node-int64": { "version": "0.3.3", - "from": "node-int64@>=0.3.0 <0.4.0", + "from": "https://registry.npmjs.org/node-int64/-/node-int64-0.3.3.tgz", "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.3.3.tgz" } } @@ -15214,47 +15207,47 @@ }, "async": { "version": "1.0.0", - "from": "async@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/async/-/async-1.0.0.tgz", "resolved": "https://registry.npmjs.org/async/-/async-1.0.0.tgz" }, "lodash": { "version": "3.9.3", - "from": "lodash@>=3.9.3 <3.10.0", + "from": "https://registry.npmjs.org/lodash/-/lodash-3.9.3.tgz", "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.9.3.tgz" }, "request": { "version": "2.55.0", - "from": "request@>=2.55.0 <2.56.0", + "from": "https://registry.npmjs.org/request/-/request-2.55.0.tgz", "resolved": "https://registry.npmjs.org/request/-/request-2.55.0.tgz", "dependencies": { "bl": { "version": "0.9.4", - "from": "bl@>=0.9.0 <0.10.0", + "from": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", "resolved": "https://registry.npmjs.org/bl/-/bl-0.9.4.tgz", "dependencies": { "readable-stream": { "version": "1.0.33", - "from": "readable-stream@>=1.0.26 <1.1.0", + "from": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.33.tgz", "dependencies": { "core-util-is": { "version": "1.0.2", - "from": "core-util-is@>=1.0.0 <1.1.0", + "from": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz" }, "isarray": { "version": "0.0.1", - "from": "isarray@0.0.1", + "from": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz" }, "string_decoder": { "version": "0.10.31", - "from": "string_decoder@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz" }, "inherits": { "version": "2.0.1", - "from": "inherits@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz" } } @@ -15263,242 +15256,242 @@ }, "caseless": { "version": "0.9.0", - "from": "caseless@>=0.9.0 <0.10.0", + "from": "https://registry.npmjs.org/caseless/-/caseless-0.9.0.tgz", "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.9.0.tgz" }, "forever-agent": { "version": "0.6.1", - "from": "forever-agent@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz" }, "form-data": { "version": "0.2.0", - "from": "form-data@>=0.2.0 <0.3.0", + "from": "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz", "resolved": "https://registry.npmjs.org/form-data/-/form-data-0.2.0.tgz", "dependencies": { "async": { "version": "0.9.2", - "from": "async@>=0.9.0 <0.10.0", + "from": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz" } } }, "json-stringify-safe": { "version": "5.0.1", - "from": "json-stringify-safe@>=5.0.0 <5.1.0", + "from": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz" }, "mime-types": { "version": "2.0.14", - "from": "mime-types@>=2.0.1 <2.1.0", + "from": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.0.14.tgz", "dependencies": { "mime-db": { "version": "1.12.0", - "from": "mime-db@>=1.12.0 <1.13.0", + "from": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.12.0.tgz" } } }, "node-uuid": { "version": "1.4.7", - "from": "node-uuid@>=1.4.0 <1.5.0", + "from": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz", "resolved": "https://registry.npmjs.org/node-uuid/-/node-uuid-1.4.7.tgz" }, "qs": { "version": "2.4.2", - "from": "qs@>=2.4.0 <2.5.0", + "from": "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz", "resolved": "https://registry.npmjs.org/qs/-/qs-2.4.2.tgz" }, "tunnel-agent": { "version": "0.4.2", - "from": "tunnel-agent@>=0.4.0 <0.5.0", + "from": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz", "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.4.2.tgz" }, "tough-cookie": { "version": "2.2.1", - "from": "tough-cookie@>=0.12.0", + "from": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.1.tgz", "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.2.1.tgz" }, "http-signature": { "version": "0.10.1", - "from": "http-signature@>=0.10.0 <0.11.0", + "from": "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz", "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-0.10.1.tgz", "dependencies": { "assert-plus": { "version": "0.1.5", - "from": "assert-plus@>=0.1.5 <0.2.0", + "from": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-0.1.5.tgz" }, "asn1": { "version": "0.1.11", - "from": "asn1@0.1.11", + "from": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz", "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.1.11.tgz" }, "ctype": { "version": "0.5.3", - "from": "ctype@0.5.3", + "from": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz", "resolved": "https://registry.npmjs.org/ctype/-/ctype-0.5.3.tgz" } } }, "oauth-sign": { "version": "0.6.0", - "from": "oauth-sign@>=0.6.0 <0.7.0", + "from": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.6.0.tgz", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.6.0.tgz" }, "hawk": { "version": "2.3.1", - "from": "hawk@>=2.3.0 <2.4.0", + "from": "https://registry.npmjs.org/hawk/-/hawk-2.3.1.tgz", "resolved": "https://registry.npmjs.org/hawk/-/hawk-2.3.1.tgz", "dependencies": { "hoek": { "version": "2.16.3", - "from": "hoek@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz", "resolved": "https://registry.npmjs.org/hoek/-/hoek-2.16.3.tgz" }, "boom": { "version": "2.10.1", - "from": "boom@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz", "resolved": "https://registry.npmjs.org/boom/-/boom-2.10.1.tgz" }, "cryptiles": { "version": "2.0.5", - "from": "cryptiles@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz", "resolved": "https://registry.npmjs.org/cryptiles/-/cryptiles-2.0.5.tgz" }, "sntp": { "version": "1.0.9", - "from": "sntp@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz", "resolved": "https://registry.npmjs.org/sntp/-/sntp-1.0.9.tgz" } } }, "aws-sign2": { "version": "0.5.0", - "from": "aws-sign2@>=0.5.0 <0.6.0", + "from": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz", "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.5.0.tgz" }, "stringstream": { "version": "0.0.5", - "from": "stringstream@>=0.0.4 <0.1.0", + "from": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz", "resolved": "https://registry.npmjs.org/stringstream/-/stringstream-0.0.5.tgz" }, "combined-stream": { "version": "0.0.7", - "from": "combined-stream@>=0.0.5 <0.1.0", + "from": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-0.0.7.tgz", "dependencies": { "delayed-stream": { "version": "0.0.5", - "from": "delayed-stream@0.0.5", + "from": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz", "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-0.0.5.tgz" } } }, "isstream": { "version": "0.1.2", - "from": "isstream@>=0.1.1 <0.2.0", + "from": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz" }, "har-validator": { "version": "1.8.0", - "from": "har-validator@>=1.4.0 <2.0.0", + "from": "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz", "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-1.8.0.tgz", "dependencies": { "bluebird": { "version": "2.10.2", - "from": "bluebird@>=2.9.30 <3.0.0", + "from": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz", "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-2.10.2.tgz" }, "chalk": { "version": "1.1.1", - "from": "chalk@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.1.tgz", "dependencies": { "ansi-styles": { "version": "2.1.0", - "from": "ansi-styles@>=2.1.0 <3.0.0", + "from": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.1.0.tgz" }, "escape-string-regexp": { "version": "1.0.4", - "from": "escape-string-regexp@>=1.0.2 <2.0.0", + "from": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.4.tgz" }, "has-ansi": { "version": "2.0.0", - "from": "has-ansi@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", "dependencies": { "ansi-regex": { "version": "2.0.0", - "from": "ansi-regex@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" } } }, "strip-ansi": { "version": "3.0.0", - "from": "strip-ansi@>=3.0.0 <4.0.0", + "from": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.0.tgz", "dependencies": { "ansi-regex": { "version": "2.0.0", - "from": "ansi-regex@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.0.0.tgz" } } }, "supports-color": { "version": "2.0.0", - "from": "supports-color@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz" } } }, "commander": { "version": "2.9.0", - "from": "commander@>=2.8.1 <3.0.0", + "from": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "resolved": "https://registry.npmjs.org/commander/-/commander-2.9.0.tgz", "dependencies": { "graceful-readlink": { "version": "1.0.1", - "from": "graceful-readlink@>=1.0.0", + "from": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz", "resolved": "https://registry.npmjs.org/graceful-readlink/-/graceful-readlink-1.0.1.tgz" } } }, "is-my-json-valid": { "version": "2.12.3", - "from": "is-my-json-valid@>=2.12.0 <3.0.0", + "from": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.3.tgz", "resolved": "https://registry.npmjs.org/is-my-json-valid/-/is-my-json-valid-2.12.3.tgz", "dependencies": { "generate-function": { "version": "2.0.0", - "from": "generate-function@>=2.0.0 <3.0.0", + "from": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz", "resolved": "https://registry.npmjs.org/generate-function/-/generate-function-2.0.0.tgz" }, "generate-object-property": { "version": "1.2.0", - "from": "generate-object-property@>=1.1.0 <2.0.0", + "from": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", "resolved": "https://registry.npmjs.org/generate-object-property/-/generate-object-property-1.2.0.tgz", "dependencies": { "is-property": { "version": "1.0.2", - "from": "is-property@>=1.0.0 <2.0.0", + "from": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz", "resolved": "https://registry.npmjs.org/is-property/-/is-property-1.0.2.tgz" } } }, "jsonpointer": { "version": "2.0.0", - "from": "jsonpointer@2.0.0", + "from": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz", "resolved": "https://registry.npmjs.org/jsonpointer/-/jsonpointer-2.0.0.tgz" }, "xtend": { "version": "4.0.1", - "from": "xtend@>=4.0.0 <5.0.0", + "from": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz" } } @@ -15509,12 +15502,12 @@ }, "underscore.string": { "version": "3.0.3", - "from": "underscore.string@>=3.0.3 <3.1.0", + "from": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.0.3.tgz", "resolved": "https://registry.npmjs.org/underscore.string/-/underscore.string-3.0.3.tgz" }, "vargs": { "version": "0.1.0", - "from": "vargs@>=0.1.0 <0.2.0", + "from": "https://registry.npmjs.org/vargs/-/vargs-0.1.0.tgz", "resolved": "https://registry.npmjs.org/vargs/-/vargs-0.1.0.tgz" } } @@ -15523,7 +15516,7 @@ }, "karma-script-launcher": { "version": "0.1.0", - "from": "karma-script-launcher@*", + "from": "https://registry.npmjs.org/karma-script-launcher/-/karma-script-launcher-0.1.0.tgz", "resolved": "https://registry.npmjs.org/karma-script-launcher/-/karma-script-launcher-0.1.0.tgz" }, "load-grunt-tasks": { diff --git a/package.json b/package.json index 128371fc1dac..b7e3f98aa488 100644 --- a/package.json +++ b/package.json @@ -16,7 +16,8 @@ "scripts": { "preinstall": "node scripts/npm/check-node-modules.js --purge", "postinstall": "node scripts/npm/copy-npm-shrinkwrap.js", - "commit": "git-cz" + "commit": "git-cz", + "test-i18n": "jasmine-node i18n/spec" }, "devDependencies": { "angular-benchpress": "0.x.x", @@ -51,7 +52,7 @@ "gulp-sourcemaps": "^1.2.2", "gulp-uglify": "^1.0.1", "gulp-util": "^3.0.1", - "jasmine-node": "~1.14.5", + "jasmine-node": "^2.0.0", "jasmine-reporters": "~1.0.1", "jshint-stylish": "~1.0.0", "karma": "^0.13.19", From 87f80379eadbacd0756e3e80b9af899a7b5d0f26 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 26 Jan 2016 10:36:37 +0000 Subject: [PATCH 233/354] style(i18n): improve indentation for readability --- i18n/spec/closureI18nExtractorSpec.js | 126 +++++++++++++------------- 1 file changed, 63 insertions(+), 63 deletions(-) diff --git a/i18n/spec/closureI18nExtractorSpec.js b/i18n/spec/closureI18nExtractorSpec.js index 8773e9f0e5ae..2d281ee3ca70 100644 --- a/i18n/spec/closureI18nExtractorSpec.js +++ b/i18n/spec/closureI18nExtractorSpec.js @@ -146,71 +146,71 @@ describe("extractCurrencySymbols", function() { describe("extractDateTimeSymbols", function() { it("should extract date time data", function() { var CONTENT = [ -"goog.i18n.DateTimeSymbols_fr_CA = {", -" ERAS: ['av. J.-C.', 'ap. J.-C.'],", -" ERANAMES: ['avant Jésus-Christ', 'après Jésus-Christ'],", -" NARROWMONTHS: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],", -" STANDALONENARROWMONTHS: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O',", -" 'N', 'D'],", -" MONTHS: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet',", -" 'août', 'septembre', 'octobre', 'novembre', 'décembre'],", -" STANDALONEMONTHS: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',", -" 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],", -" SHORTMONTHS: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.',", -" 'août', 'sept.', 'oct.', 'nov.', 'déc.'],", -" STANDALONESHORTMONTHS: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin',", -" 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],", -" WEEKDAYS: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi',", -" 'samedi'],", -" STANDALONEWEEKDAYS: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi',", -" 'vendredi', 'samedi'],", -" SHORTWEEKDAYS: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],", -" STANDALONESHORTWEEKDAYS: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.',", -" 'sam.'],", -" NARROWWEEKDAYS: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],", -" STANDALONENARROWWEEKDAYS: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],", -" SHORTQUARTERS: ['T1', 'T2', 'T3', 'T4'],", -" QUARTERS: ['1er trimestre', '2e trimestre', '3e trimestre', '4e trimestre'],", -" AMPMS: ['AM', 'PM'],", -" DATEFORMATS: ['EEEE d MMMM y', 'd MMMM y', 'yyyy-MM-dd', 'yy-MM-dd'],", -" TIMEFORMATS: ['HH \\'h\\' mm \\'min\\' ss \\'s\\' zzzz', 'HH:mm:ss z',", -" 'HH:mm:ss', 'HH:mm'],", -" FIRSTDAYOFWEEK: 6,", -" WEEKENDRANGE: [5, 6],", -" FIRSTWEEKCUTOFFDAY: 2", -"};" + "goog.i18n.DateTimeSymbols_fr_CA = {", + " ERAS: ['av. J.-C.', 'ap. J.-C.'],", + " ERANAMES: ['avant Jésus-Christ', 'après Jésus-Christ'],", + " NARROWMONTHS: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O', 'N', 'D'],", + " STANDALONENARROWMONTHS: ['J', 'F', 'M', 'A', 'M', 'J', 'J', 'A', 'S', 'O',", + " 'N', 'D'],", + " MONTHS: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet',", + " 'août', 'septembre', 'octobre', 'novembre', 'décembre'],", + " STANDALONEMONTHS: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin',", + " 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],", + " SHORTMONTHS: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.',", + " 'août', 'sept.', 'oct.', 'nov.', 'déc.'],", + " STANDALONESHORTMONTHS: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin',", + " 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'],", + " WEEKDAYS: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi',", + " 'samedi'],", + " STANDALONEWEEKDAYS: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi',", + " 'vendredi', 'samedi'],", + " SHORTWEEKDAYS: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'],", + " STANDALONESHORTWEEKDAYS: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.',", + " 'sam.'],", + " NARROWWEEKDAYS: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],", + " STANDALONENARROWWEEKDAYS: ['D', 'L', 'M', 'M', 'J', 'V', 'S'],", + " SHORTQUARTERS: ['T1', 'T2', 'T3', 'T4'],", + " QUARTERS: ['1er trimestre', '2e trimestre', '3e trimestre', '4e trimestre'],", + " AMPMS: ['AM', 'PM'],", + " DATEFORMATS: ['EEEE d MMMM y', 'd MMMM y', 'yyyy-MM-dd', 'yy-MM-dd'],", + " TIMEFORMATS: ['HH \\'h\\' mm \\'min\\' ss \\'s\\' zzzz', 'HH:mm:ss z',", + " 'HH:mm:ss', 'HH:mm'],", + " FIRSTDAYOFWEEK: 6,", + " WEEKENDRANGE: [5, 6],", + " FIRSTWEEKCUTOFFDAY: 2", + "};" ].join('\n'); - var localeInfo = {}; - var expectedLocaleInfo = { - fr_CA: { - DATETIME_FORMATS: { - MONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', - 'octobre', 'novembre', 'décembre'], - STANDALONEMONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', - 'août', 'septembre', 'octobre', 'novembre', 'décembre'], - SHORTMONTH: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', - 'nov.', 'déc.'], - DAY: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], - SHORTDAY: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'], - FIRSTDAYOFWEEK: 6, - WEEKENDRANGE: [5, 6], - AMPMS: ['AM', 'PM'], - ERAS: ['av. J.-C.', 'ap. J.-C.'], - ERANAMES: ['avant Jésus-Christ', 'après Jésus-Christ'], - medium: 'yyyy-MM-dd HH:mm:ss', - short: 'yy-MM-dd HH:mm', - fullDate: 'EEEE d MMMM y', - longDate: 'd MMMM y', - mediumDate: 'yyyy-MM-dd', - shortDate: 'yy-MM-dd', - mediumTime: 'HH:mm:ss', - shortTime: 'HH:mm' - } + var localeInfo = {}; + var expectedLocaleInfo = { + fr_CA: { + DATETIME_FORMATS: { + MONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', 'août', 'septembre', + 'octobre', 'novembre', 'décembre'], + STANDALONEMONTH: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', 'juillet', + 'août', 'septembre', 'octobre', 'novembre', 'décembre'], + SHORTMONTH: ['janv.', 'févr.', 'mars', 'avr.', 'mai', 'juin', 'juil.', 'août', 'sept.', 'oct.', + 'nov.', 'déc.'], + DAY: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], + SHORTDAY: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'], + FIRSTDAYOFWEEK: 6, + WEEKENDRANGE: [5, 6], + AMPMS: ['AM', 'PM'], + ERAS: ['av. J.-C.', 'ap. J.-C.'], + ERANAMES: ['avant Jésus-Christ', 'après Jésus-Christ'], + medium: 'yyyy-MM-dd HH:mm:ss', + short: 'yy-MM-dd HH:mm', + fullDate: 'EEEE d MMMM y', + longDate: 'd MMMM y', + mediumDate: 'yyyy-MM-dd', + shortDate: 'yy-MM-dd', + mediumTime: 'HH:mm:ss', + shortTime: 'HH:mm' } - }; - extractDateTimeSymbols(CONTENT, localeInfo); - expect(localeInfo).toEqual(expectedLocaleInfo); - }) + } + }; + extractDateTimeSymbols(CONTENT, localeInfo); + expect(localeInfo).toEqual(expectedLocaleInfo); + }); }); describe("pluralExtractor", function() { From e48666aeafe8aa74991acdc0efa6dc7f982a9e6b Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Tue, 26 Jan 2016 12:16:51 +0000 Subject: [PATCH 234/354] chore(ngLocale): regenerate locales to include original `localeId` Closes #13390 --- src/ngLocale/angular-locale_af-na.js | 1 + src/ngLocale/angular-locale_af-za.js | 1 + src/ngLocale/angular-locale_af.js | 1 + src/ngLocale/angular-locale_agq-cm.js | 1 + src/ngLocale/angular-locale_agq.js | 1 + src/ngLocale/angular-locale_ak-gh.js | 1 + src/ngLocale/angular-locale_ak.js | 1 + src/ngLocale/angular-locale_am-et.js | 1 + src/ngLocale/angular-locale_am.js | 1 + src/ngLocale/angular-locale_ar-001.js | 1 + src/ngLocale/angular-locale_ar-ae.js | 1 + src/ngLocale/angular-locale_ar-bh.js | 1 + src/ngLocale/angular-locale_ar-dj.js | 1 + src/ngLocale/angular-locale_ar-dz.js | 1 + src/ngLocale/angular-locale_ar-eg.js | 1 + src/ngLocale/angular-locale_ar-eh.js | 1 + src/ngLocale/angular-locale_ar-er.js | 1 + src/ngLocale/angular-locale_ar-il.js | 1 + src/ngLocale/angular-locale_ar-iq.js | 1 + src/ngLocale/angular-locale_ar-jo.js | 1 + src/ngLocale/angular-locale_ar-km.js | 1 + src/ngLocale/angular-locale_ar-kw.js | 1 + src/ngLocale/angular-locale_ar-lb.js | 1 + src/ngLocale/angular-locale_ar-ly.js | 1 + src/ngLocale/angular-locale_ar-ma.js | 1 + src/ngLocale/angular-locale_ar-mr.js | 1 + src/ngLocale/angular-locale_ar-om.js | 1 + src/ngLocale/angular-locale_ar-ps.js | 1 + src/ngLocale/angular-locale_ar-qa.js | 1 + src/ngLocale/angular-locale_ar-sa.js | 1 + src/ngLocale/angular-locale_ar-sd.js | 1 + src/ngLocale/angular-locale_ar-so.js | 1 + src/ngLocale/angular-locale_ar-ss.js | 1 + src/ngLocale/angular-locale_ar-sy.js | 1 + src/ngLocale/angular-locale_ar-td.js | 1 + src/ngLocale/angular-locale_ar-tn.js | 1 + src/ngLocale/angular-locale_ar-ye.js | 1 + src/ngLocale/angular-locale_ar.js | 1 + src/ngLocale/angular-locale_as-in.js | 1 + src/ngLocale/angular-locale_as.js | 1 + src/ngLocale/angular-locale_asa-tz.js | 1 + src/ngLocale/angular-locale_asa.js | 1 + src/ngLocale/angular-locale_ast-es.js | 1 + src/ngLocale/angular-locale_ast.js | 1 + src/ngLocale/angular-locale_az-cyrl-az.js | 1 + src/ngLocale/angular-locale_az-cyrl.js | 1 + src/ngLocale/angular-locale_az-latn-az.js | 1 + src/ngLocale/angular-locale_az-latn.js | 1 + src/ngLocale/angular-locale_az.js | 1 + src/ngLocale/angular-locale_bas-cm.js | 1 + src/ngLocale/angular-locale_bas.js | 1 + src/ngLocale/angular-locale_be-by.js | 1 + src/ngLocale/angular-locale_be.js | 1 + src/ngLocale/angular-locale_bem-zm.js | 1 + src/ngLocale/angular-locale_bem.js | 1 + src/ngLocale/angular-locale_bez-tz.js | 1 + src/ngLocale/angular-locale_bez.js | 1 + src/ngLocale/angular-locale_bg-bg.js | 1 + src/ngLocale/angular-locale_bg.js | 1 + src/ngLocale/angular-locale_bm-latn-ml.js | 1 + src/ngLocale/angular-locale_bm-latn.js | 1 + src/ngLocale/angular-locale_bm.js | 1 + src/ngLocale/angular-locale_bn-bd.js | 1 + src/ngLocale/angular-locale_bn-in.js | 1 + src/ngLocale/angular-locale_bn.js | 1 + src/ngLocale/angular-locale_bo-cn.js | 1 + src/ngLocale/angular-locale_bo-in.js | 1 + src/ngLocale/angular-locale_bo.js | 1 + src/ngLocale/angular-locale_br-fr.js | 1 + src/ngLocale/angular-locale_br.js | 1 + src/ngLocale/angular-locale_brx-in.js | 1 + src/ngLocale/angular-locale_brx.js | 1 + src/ngLocale/angular-locale_bs-cyrl-ba.js | 1 + src/ngLocale/angular-locale_bs-cyrl.js | 1 + src/ngLocale/angular-locale_bs-latn-ba.js | 1 + src/ngLocale/angular-locale_bs-latn.js | 1 + src/ngLocale/angular-locale_bs.js | 1 + src/ngLocale/angular-locale_ca-ad.js | 1 + src/ngLocale/angular-locale_ca-es-valencia.js | 1 + src/ngLocale/angular-locale_ca-es.js | 1 + src/ngLocale/angular-locale_ca-fr.js | 1 + src/ngLocale/angular-locale_ca-it.js | 1 + src/ngLocale/angular-locale_ca.js | 1 + src/ngLocale/angular-locale_cgg-ug.js | 1 + src/ngLocale/angular-locale_cgg.js | 1 + src/ngLocale/angular-locale_chr-us.js | 1 + src/ngLocale/angular-locale_chr.js | 1 + src/ngLocale/angular-locale_ckb-arab-iq.js | 1 + src/ngLocale/angular-locale_ckb-arab-ir.js | 1 + src/ngLocale/angular-locale_ckb-arab.js | 1 + src/ngLocale/angular-locale_ckb-iq.js | 1 + src/ngLocale/angular-locale_ckb-ir.js | 1 + src/ngLocale/angular-locale_ckb-latn-iq.js | 1 + src/ngLocale/angular-locale_ckb-latn.js | 1 + src/ngLocale/angular-locale_ckb.js | 1 + src/ngLocale/angular-locale_cs-cz.js | 1 + src/ngLocale/angular-locale_cs.js | 1 + src/ngLocale/angular-locale_cy-gb.js | 1 + src/ngLocale/angular-locale_cy.js | 1 + src/ngLocale/angular-locale_da-dk.js | 1 + src/ngLocale/angular-locale_da-gl.js | 1 + src/ngLocale/angular-locale_da.js | 1 + src/ngLocale/angular-locale_dav-ke.js | 1 + src/ngLocale/angular-locale_dav.js | 1 + src/ngLocale/angular-locale_de-at.js | 1 + src/ngLocale/angular-locale_de-be.js | 1 + src/ngLocale/angular-locale_de-ch.js | 1 + src/ngLocale/angular-locale_de-de.js | 1 + src/ngLocale/angular-locale_de-li.js | 1 + src/ngLocale/angular-locale_de-lu.js | 1 + src/ngLocale/angular-locale_de.js | 1 + src/ngLocale/angular-locale_dje-ne.js | 1 + src/ngLocale/angular-locale_dje.js | 1 + src/ngLocale/angular-locale_dsb-de.js | 1 + src/ngLocale/angular-locale_dsb.js | 1 + src/ngLocale/angular-locale_dua-cm.js | 1 + src/ngLocale/angular-locale_dua.js | 1 + src/ngLocale/angular-locale_dyo-sn.js | 1 + src/ngLocale/angular-locale_dyo.js | 1 + src/ngLocale/angular-locale_dz-bt.js | 1 + src/ngLocale/angular-locale_dz.js | 1 + src/ngLocale/angular-locale_ebu-ke.js | 1 + src/ngLocale/angular-locale_ebu.js | 1 + src/ngLocale/angular-locale_ee-gh.js | 1 + src/ngLocale/angular-locale_ee-tg.js | 1 + src/ngLocale/angular-locale_ee.js | 1 + src/ngLocale/angular-locale_el-cy.js | 1 + src/ngLocale/angular-locale_el-gr.js | 1 + src/ngLocale/angular-locale_el.js | 1 + src/ngLocale/angular-locale_en-001.js | 1 + src/ngLocale/angular-locale_en-150.js | 1 + src/ngLocale/angular-locale_en-ag.js | 1 + src/ngLocale/angular-locale_en-ai.js | 1 + src/ngLocale/angular-locale_en-as.js | 1 + src/ngLocale/angular-locale_en-au.js | 1 + src/ngLocale/angular-locale_en-bb.js | 1 + src/ngLocale/angular-locale_en-be.js | 1 + src/ngLocale/angular-locale_en-bm.js | 1 + src/ngLocale/angular-locale_en-bs.js | 1 + src/ngLocale/angular-locale_en-bw.js | 1 + src/ngLocale/angular-locale_en-bz.js | 1 + src/ngLocale/angular-locale_en-ca.js | 1 + src/ngLocale/angular-locale_en-cc.js | 1 + src/ngLocale/angular-locale_en-ck.js | 1 + src/ngLocale/angular-locale_en-cm.js | 1 + src/ngLocale/angular-locale_en-cx.js | 1 + src/ngLocale/angular-locale_en-dg.js | 1 + src/ngLocale/angular-locale_en-dm.js | 1 + src/ngLocale/angular-locale_en-er.js | 1 + src/ngLocale/angular-locale_en-fj.js | 1 + src/ngLocale/angular-locale_en-fk.js | 1 + src/ngLocale/angular-locale_en-fm.js | 1 + src/ngLocale/angular-locale_en-gb.js | 1 + src/ngLocale/angular-locale_en-gd.js | 1 + src/ngLocale/angular-locale_en-gg.js | 1 + src/ngLocale/angular-locale_en-gh.js | 1 + src/ngLocale/angular-locale_en-gi.js | 1 + src/ngLocale/angular-locale_en-gm.js | 1 + src/ngLocale/angular-locale_en-gu.js | 1 + src/ngLocale/angular-locale_en-gy.js | 1 + src/ngLocale/angular-locale_en-hk.js | 1 + src/ngLocale/angular-locale_en-ie.js | 1 + src/ngLocale/angular-locale_en-im.js | 1 + src/ngLocale/angular-locale_en-in.js | 1 + src/ngLocale/angular-locale_en-io.js | 1 + src/ngLocale/angular-locale_en-iso.js | 1 + src/ngLocale/angular-locale_en-je.js | 1 + src/ngLocale/angular-locale_en-jm.js | 1 + src/ngLocale/angular-locale_en-ke.js | 1 + src/ngLocale/angular-locale_en-ki.js | 1 + src/ngLocale/angular-locale_en-kn.js | 1 + src/ngLocale/angular-locale_en-ky.js | 1 + src/ngLocale/angular-locale_en-lc.js | 1 + src/ngLocale/angular-locale_en-lr.js | 1 + src/ngLocale/angular-locale_en-ls.js | 1 + src/ngLocale/angular-locale_en-mg.js | 1 + src/ngLocale/angular-locale_en-mh.js | 1 + src/ngLocale/angular-locale_en-mo.js | 1 + src/ngLocale/angular-locale_en-mp.js | 1 + src/ngLocale/angular-locale_en-ms.js | 1 + src/ngLocale/angular-locale_en-mt.js | 1 + src/ngLocale/angular-locale_en-mu.js | 1 + src/ngLocale/angular-locale_en-mw.js | 1 + src/ngLocale/angular-locale_en-my.js | 1 + src/ngLocale/angular-locale_en-na.js | 1 + src/ngLocale/angular-locale_en-nf.js | 1 + src/ngLocale/angular-locale_en-ng.js | 1 + src/ngLocale/angular-locale_en-nr.js | 1 + src/ngLocale/angular-locale_en-nu.js | 1 + src/ngLocale/angular-locale_en-nz.js | 1 + src/ngLocale/angular-locale_en-pg.js | 1 + src/ngLocale/angular-locale_en-ph.js | 1 + src/ngLocale/angular-locale_en-pk.js | 1 + src/ngLocale/angular-locale_en-pn.js | 1 + src/ngLocale/angular-locale_en-pr.js | 1 + src/ngLocale/angular-locale_en-pw.js | 1 + src/ngLocale/angular-locale_en-rw.js | 1 + src/ngLocale/angular-locale_en-sb.js | 1 + src/ngLocale/angular-locale_en-sc.js | 1 + src/ngLocale/angular-locale_en-sd.js | 1 + src/ngLocale/angular-locale_en-sg.js | 1 + src/ngLocale/angular-locale_en-sh.js | 1 + src/ngLocale/angular-locale_en-sl.js | 1 + src/ngLocale/angular-locale_en-ss.js | 1 + src/ngLocale/angular-locale_en-sx.js | 1 + src/ngLocale/angular-locale_en-sz.js | 1 + src/ngLocale/angular-locale_en-tc.js | 1 + src/ngLocale/angular-locale_en-tk.js | 1 + src/ngLocale/angular-locale_en-to.js | 1 + src/ngLocale/angular-locale_en-tt.js | 1 + src/ngLocale/angular-locale_en-tv.js | 1 + src/ngLocale/angular-locale_en-tz.js | 1 + src/ngLocale/angular-locale_en-ug.js | 1 + src/ngLocale/angular-locale_en-um.js | 1 + src/ngLocale/angular-locale_en-us.js | 1 + src/ngLocale/angular-locale_en-vc.js | 1 + src/ngLocale/angular-locale_en-vg.js | 1 + src/ngLocale/angular-locale_en-vi.js | 1 + src/ngLocale/angular-locale_en-vu.js | 1 + src/ngLocale/angular-locale_en-ws.js | 1 + src/ngLocale/angular-locale_en-za.js | 1 + src/ngLocale/angular-locale_en-zm.js | 1 + src/ngLocale/angular-locale_en-zw.js | 1 + src/ngLocale/angular-locale_en.js | 1 + src/ngLocale/angular-locale_eo-001.js | 1 + src/ngLocale/angular-locale_eo.js | 1 + src/ngLocale/angular-locale_es-419.js | 1 + src/ngLocale/angular-locale_es-ar.js | 1 + src/ngLocale/angular-locale_es-bo.js | 1 + src/ngLocale/angular-locale_es-cl.js | 1 + src/ngLocale/angular-locale_es-co.js | 1 + src/ngLocale/angular-locale_es-cr.js | 1 + src/ngLocale/angular-locale_es-cu.js | 1 + src/ngLocale/angular-locale_es-do.js | 1 + src/ngLocale/angular-locale_es-ea.js | 1 + src/ngLocale/angular-locale_es-ec.js | 1 + src/ngLocale/angular-locale_es-es.js | 1 + src/ngLocale/angular-locale_es-gq.js | 1 + src/ngLocale/angular-locale_es-gt.js | 1 + src/ngLocale/angular-locale_es-hn.js | 1 + src/ngLocale/angular-locale_es-ic.js | 1 + src/ngLocale/angular-locale_es-mx.js | 1 + src/ngLocale/angular-locale_es-ni.js | 1 + src/ngLocale/angular-locale_es-pa.js | 1 + src/ngLocale/angular-locale_es-pe.js | 1 + src/ngLocale/angular-locale_es-ph.js | 1 + src/ngLocale/angular-locale_es-pr.js | 1 + src/ngLocale/angular-locale_es-py.js | 1 + src/ngLocale/angular-locale_es-sv.js | 1 + src/ngLocale/angular-locale_es-us.js | 1 + src/ngLocale/angular-locale_es-uy.js | 1 + src/ngLocale/angular-locale_es-ve.js | 1 + src/ngLocale/angular-locale_es.js | 1 + src/ngLocale/angular-locale_et-ee.js | 1 + src/ngLocale/angular-locale_et.js | 1 + src/ngLocale/angular-locale_eu-es.js | 1 + src/ngLocale/angular-locale_eu.js | 1 + src/ngLocale/angular-locale_ewo-cm.js | 1 + src/ngLocale/angular-locale_ewo.js | 1 + src/ngLocale/angular-locale_fa-af.js | 1 + src/ngLocale/angular-locale_fa-ir.js | 1 + src/ngLocale/angular-locale_fa.js | 1 + src/ngLocale/angular-locale_ff-cm.js | 1 + src/ngLocale/angular-locale_ff-gn.js | 1 + src/ngLocale/angular-locale_ff-mr.js | 1 + src/ngLocale/angular-locale_ff-sn.js | 1 + src/ngLocale/angular-locale_ff.js | 1 + src/ngLocale/angular-locale_fi-fi.js | 1 + src/ngLocale/angular-locale_fi.js | 1 + src/ngLocale/angular-locale_fil-ph.js | 1 + src/ngLocale/angular-locale_fil.js | 1 + src/ngLocale/angular-locale_fo-fo.js | 1 + src/ngLocale/angular-locale_fo.js | 1 + src/ngLocale/angular-locale_fr-be.js | 1 + src/ngLocale/angular-locale_fr-bf.js | 1 + src/ngLocale/angular-locale_fr-bi.js | 1 + src/ngLocale/angular-locale_fr-bj.js | 1 + src/ngLocale/angular-locale_fr-bl.js | 1 + src/ngLocale/angular-locale_fr-ca.js | 1 + src/ngLocale/angular-locale_fr-cd.js | 1 + src/ngLocale/angular-locale_fr-cf.js | 1 + src/ngLocale/angular-locale_fr-cg.js | 1 + src/ngLocale/angular-locale_fr-ch.js | 1 + src/ngLocale/angular-locale_fr-ci.js | 1 + src/ngLocale/angular-locale_fr-cm.js | 1 + src/ngLocale/angular-locale_fr-dj.js | 1 + src/ngLocale/angular-locale_fr-dz.js | 1 + src/ngLocale/angular-locale_fr-fr.js | 1 + src/ngLocale/angular-locale_fr-ga.js | 1 + src/ngLocale/angular-locale_fr-gf.js | 1 + src/ngLocale/angular-locale_fr-gn.js | 1 + src/ngLocale/angular-locale_fr-gp.js | 1 + src/ngLocale/angular-locale_fr-gq.js | 1 + src/ngLocale/angular-locale_fr-ht.js | 1 + src/ngLocale/angular-locale_fr-km.js | 1 + src/ngLocale/angular-locale_fr-lu.js | 1 + src/ngLocale/angular-locale_fr-ma.js | 1 + src/ngLocale/angular-locale_fr-mc.js | 1 + src/ngLocale/angular-locale_fr-mf.js | 1 + src/ngLocale/angular-locale_fr-mg.js | 1 + src/ngLocale/angular-locale_fr-ml.js | 1 + src/ngLocale/angular-locale_fr-mq.js | 1 + src/ngLocale/angular-locale_fr-mr.js | 1 + src/ngLocale/angular-locale_fr-mu.js | 1 + src/ngLocale/angular-locale_fr-nc.js | 1 + src/ngLocale/angular-locale_fr-ne.js | 1 + src/ngLocale/angular-locale_fr-pf.js | 1 + src/ngLocale/angular-locale_fr-pm.js | 1 + src/ngLocale/angular-locale_fr-re.js | 1 + src/ngLocale/angular-locale_fr-rw.js | 1 + src/ngLocale/angular-locale_fr-sc.js | 1 + src/ngLocale/angular-locale_fr-sn.js | 1 + src/ngLocale/angular-locale_fr-sy.js | 1 + src/ngLocale/angular-locale_fr-td.js | 1 + src/ngLocale/angular-locale_fr-tg.js | 1 + src/ngLocale/angular-locale_fr-tn.js | 1 + src/ngLocale/angular-locale_fr-vu.js | 1 + src/ngLocale/angular-locale_fr-wf.js | 1 + src/ngLocale/angular-locale_fr-yt.js | 1 + src/ngLocale/angular-locale_fr.js | 1 + src/ngLocale/angular-locale_fur-it.js | 1 + src/ngLocale/angular-locale_fur.js | 1 + src/ngLocale/angular-locale_fy-nl.js | 1 + src/ngLocale/angular-locale_fy.js | 1 + src/ngLocale/angular-locale_ga-ie.js | 1 + src/ngLocale/angular-locale_ga.js | 1 + src/ngLocale/angular-locale_gd-gb.js | 1 + src/ngLocale/angular-locale_gd.js | 1 + src/ngLocale/angular-locale_gl-es.js | 1 + src/ngLocale/angular-locale_gl.js | 1 + src/ngLocale/angular-locale_gsw-ch.js | 1 + src/ngLocale/angular-locale_gsw-fr.js | 1 + src/ngLocale/angular-locale_gsw-li.js | 1 + src/ngLocale/angular-locale_gsw.js | 1 + src/ngLocale/angular-locale_gu-in.js | 1 + src/ngLocale/angular-locale_gu.js | 1 + src/ngLocale/angular-locale_guz-ke.js | 1 + src/ngLocale/angular-locale_guz.js | 1 + src/ngLocale/angular-locale_gv-im.js | 1 + src/ngLocale/angular-locale_gv.js | 1 + src/ngLocale/angular-locale_ha-latn-gh.js | 1 + src/ngLocale/angular-locale_ha-latn-ne.js | 1 + src/ngLocale/angular-locale_ha-latn-ng.js | 1 + src/ngLocale/angular-locale_ha-latn.js | 1 + src/ngLocale/angular-locale_ha.js | 1 + src/ngLocale/angular-locale_haw-us.js | 1 + src/ngLocale/angular-locale_haw.js | 1 + src/ngLocale/angular-locale_he-il.js | 1 + src/ngLocale/angular-locale_he.js | 1 + src/ngLocale/angular-locale_hi-in.js | 1 + src/ngLocale/angular-locale_hi.js | 1 + src/ngLocale/angular-locale_hr-ba.js | 1 + src/ngLocale/angular-locale_hr-hr.js | 1 + src/ngLocale/angular-locale_hr.js | 1 + src/ngLocale/angular-locale_hsb-de.js | 1 + src/ngLocale/angular-locale_hsb.js | 1 + src/ngLocale/angular-locale_hu-hu.js | 1 + src/ngLocale/angular-locale_hu.js | 1 + src/ngLocale/angular-locale_hy-am.js | 1 + src/ngLocale/angular-locale_hy.js | 1 + src/ngLocale/angular-locale_id-id.js | 1 + src/ngLocale/angular-locale_id.js | 1 + src/ngLocale/angular-locale_ig-ng.js | 1 + src/ngLocale/angular-locale_ig.js | 1 + src/ngLocale/angular-locale_ii-cn.js | 1 + src/ngLocale/angular-locale_ii.js | 1 + src/ngLocale/angular-locale_in.js | 1 + src/ngLocale/angular-locale_is-is.js | 1 + src/ngLocale/angular-locale_is.js | 1 + src/ngLocale/angular-locale_it-ch.js | 1 + src/ngLocale/angular-locale_it-it.js | 1 + src/ngLocale/angular-locale_it-sm.js | 1 + src/ngLocale/angular-locale_it.js | 1 + src/ngLocale/angular-locale_iw.js | 1 + src/ngLocale/angular-locale_ja-jp.js | 1 + src/ngLocale/angular-locale_ja.js | 1 + src/ngLocale/angular-locale_jgo-cm.js | 1 + src/ngLocale/angular-locale_jgo.js | 1 + src/ngLocale/angular-locale_jmc-tz.js | 1 + src/ngLocale/angular-locale_jmc.js | 1 + src/ngLocale/angular-locale_ka-ge.js | 1 + src/ngLocale/angular-locale_ka.js | 1 + src/ngLocale/angular-locale_kab-dz.js | 1 + src/ngLocale/angular-locale_kab.js | 1 + src/ngLocale/angular-locale_kam-ke.js | 1 + src/ngLocale/angular-locale_kam.js | 1 + src/ngLocale/angular-locale_kde-tz.js | 1 + src/ngLocale/angular-locale_kde.js | 1 + src/ngLocale/angular-locale_kea-cv.js | 1 + src/ngLocale/angular-locale_kea.js | 1 + src/ngLocale/angular-locale_khq-ml.js | 1 + src/ngLocale/angular-locale_khq.js | 1 + src/ngLocale/angular-locale_ki-ke.js | 1 + src/ngLocale/angular-locale_ki.js | 1 + src/ngLocale/angular-locale_kk-cyrl-kz.js | 1 + src/ngLocale/angular-locale_kk-cyrl.js | 1 + src/ngLocale/angular-locale_kk.js | 1 + src/ngLocale/angular-locale_kkj-cm.js | 1 + src/ngLocale/angular-locale_kkj.js | 1 + src/ngLocale/angular-locale_kl-gl.js | 1 + src/ngLocale/angular-locale_kl.js | 1 + src/ngLocale/angular-locale_kln-ke.js | 1 + src/ngLocale/angular-locale_kln.js | 1 + src/ngLocale/angular-locale_km-kh.js | 1 + src/ngLocale/angular-locale_km.js | 1 + src/ngLocale/angular-locale_kn-in.js | 1 + src/ngLocale/angular-locale_kn.js | 1 + src/ngLocale/angular-locale_ko-kp.js | 1 + src/ngLocale/angular-locale_ko-kr.js | 1 + src/ngLocale/angular-locale_ko.js | 1 + src/ngLocale/angular-locale_kok-in.js | 1 + src/ngLocale/angular-locale_kok.js | 1 + src/ngLocale/angular-locale_ks-arab-in.js | 1 + src/ngLocale/angular-locale_ks-arab.js | 1 + src/ngLocale/angular-locale_ks.js | 1 + src/ngLocale/angular-locale_ksb-tz.js | 1 + src/ngLocale/angular-locale_ksb.js | 1 + src/ngLocale/angular-locale_ksf-cm.js | 1 + src/ngLocale/angular-locale_ksf.js | 1 + src/ngLocale/angular-locale_ksh-de.js | 1 + src/ngLocale/angular-locale_ksh.js | 1 + src/ngLocale/angular-locale_kw-gb.js | 1 + src/ngLocale/angular-locale_kw.js | 1 + src/ngLocale/angular-locale_ky-cyrl-kg.js | 1 + src/ngLocale/angular-locale_ky-cyrl.js | 1 + src/ngLocale/angular-locale_ky.js | 1 + src/ngLocale/angular-locale_lag-tz.js | 1 + src/ngLocale/angular-locale_lag.js | 1 + src/ngLocale/angular-locale_lb-lu.js | 1 + src/ngLocale/angular-locale_lb.js | 1 + src/ngLocale/angular-locale_lg-ug.js | 1 + src/ngLocale/angular-locale_lg.js | 1 + src/ngLocale/angular-locale_lkt-us.js | 1 + src/ngLocale/angular-locale_lkt.js | 1 + src/ngLocale/angular-locale_ln-ao.js | 1 + src/ngLocale/angular-locale_ln-cd.js | 1 + src/ngLocale/angular-locale_ln-cf.js | 1 + src/ngLocale/angular-locale_ln-cg.js | 1 + src/ngLocale/angular-locale_ln.js | 1 + src/ngLocale/angular-locale_lo-la.js | 1 + src/ngLocale/angular-locale_lo.js | 1 + src/ngLocale/angular-locale_lt-lt.js | 1 + src/ngLocale/angular-locale_lt.js | 1 + src/ngLocale/angular-locale_lu-cd.js | 1 + src/ngLocale/angular-locale_lu.js | 1 + src/ngLocale/angular-locale_luo-ke.js | 1 + src/ngLocale/angular-locale_luo.js | 1 + src/ngLocale/angular-locale_luy-ke.js | 1 + src/ngLocale/angular-locale_luy.js | 1 + src/ngLocale/angular-locale_lv-lv.js | 1 + src/ngLocale/angular-locale_lv.js | 1 + src/ngLocale/angular-locale_mas-ke.js | 1 + src/ngLocale/angular-locale_mas-tz.js | 1 + src/ngLocale/angular-locale_mas.js | 1 + src/ngLocale/angular-locale_mer-ke.js | 1 + src/ngLocale/angular-locale_mer.js | 1 + src/ngLocale/angular-locale_mfe-mu.js | 1 + src/ngLocale/angular-locale_mfe.js | 1 + src/ngLocale/angular-locale_mg-mg.js | 1 + src/ngLocale/angular-locale_mg.js | 1 + src/ngLocale/angular-locale_mgh-mz.js | 1 + src/ngLocale/angular-locale_mgh.js | 1 + src/ngLocale/angular-locale_mgo-cm.js | 1 + src/ngLocale/angular-locale_mgo.js | 1 + src/ngLocale/angular-locale_mk-mk.js | 1 + src/ngLocale/angular-locale_mk.js | 1 + src/ngLocale/angular-locale_ml-in.js | 1 + src/ngLocale/angular-locale_ml.js | 1 + src/ngLocale/angular-locale_mn-cyrl-mn.js | 1 + src/ngLocale/angular-locale_mn-cyrl.js | 1 + src/ngLocale/angular-locale_mn.js | 1 + src/ngLocale/angular-locale_mr-in.js | 1 + src/ngLocale/angular-locale_mr.js | 1 + src/ngLocale/angular-locale_ms-latn-bn.js | 1 + src/ngLocale/angular-locale_ms-latn-my.js | 1 + src/ngLocale/angular-locale_ms-latn-sg.js | 1 + src/ngLocale/angular-locale_ms-latn.js | 1 + src/ngLocale/angular-locale_ms.js | 1 + src/ngLocale/angular-locale_mt-mt.js | 1 + src/ngLocale/angular-locale_mt.js | 1 + src/ngLocale/angular-locale_mua-cm.js | 1 + src/ngLocale/angular-locale_mua.js | 1 + src/ngLocale/angular-locale_my-mm.js | 1 + src/ngLocale/angular-locale_my.js | 1 + src/ngLocale/angular-locale_naq-na.js | 1 + src/ngLocale/angular-locale_naq.js | 1 + src/ngLocale/angular-locale_nb-no.js | 1 + src/ngLocale/angular-locale_nb-sj.js | 1 + src/ngLocale/angular-locale_nb.js | 1 + src/ngLocale/angular-locale_nd-zw.js | 1 + src/ngLocale/angular-locale_nd.js | 1 + src/ngLocale/angular-locale_ne-in.js | 1 + src/ngLocale/angular-locale_ne-np.js | 1 + src/ngLocale/angular-locale_ne.js | 1 + src/ngLocale/angular-locale_nl-aw.js | 1 + src/ngLocale/angular-locale_nl-be.js | 1 + src/ngLocale/angular-locale_nl-bq.js | 1 + src/ngLocale/angular-locale_nl-cw.js | 1 + src/ngLocale/angular-locale_nl-nl.js | 1 + src/ngLocale/angular-locale_nl-sr.js | 1 + src/ngLocale/angular-locale_nl-sx.js | 1 + src/ngLocale/angular-locale_nl.js | 1 + src/ngLocale/angular-locale_nmg-cm.js | 1 + src/ngLocale/angular-locale_nmg.js | 1 + src/ngLocale/angular-locale_nn-no.js | 1 + src/ngLocale/angular-locale_nn.js | 1 + src/ngLocale/angular-locale_nnh-cm.js | 1 + src/ngLocale/angular-locale_nnh.js | 1 + src/ngLocale/angular-locale_no-no.js | 1 + src/ngLocale/angular-locale_no.js | 1 + src/ngLocale/angular-locale_nus-sd.js | 1 + src/ngLocale/angular-locale_nus.js | 1 + src/ngLocale/angular-locale_nyn-ug.js | 1 + src/ngLocale/angular-locale_nyn.js | 1 + src/ngLocale/angular-locale_om-et.js | 1 + src/ngLocale/angular-locale_om-ke.js | 1 + src/ngLocale/angular-locale_om.js | 1 + src/ngLocale/angular-locale_or-in.js | 1 + src/ngLocale/angular-locale_or.js | 1 + src/ngLocale/angular-locale_os-ge.js | 1 + src/ngLocale/angular-locale_os-ru.js | 1 + src/ngLocale/angular-locale_os.js | 1 + src/ngLocale/angular-locale_pa-arab-pk.js | 1 + src/ngLocale/angular-locale_pa-arab.js | 1 + src/ngLocale/angular-locale_pa-guru-in.js | 1 + src/ngLocale/angular-locale_pa-guru.js | 1 + src/ngLocale/angular-locale_pa.js | 1 + src/ngLocale/angular-locale_pl-pl.js | 1 + src/ngLocale/angular-locale_pl.js | 1 + src/ngLocale/angular-locale_ps-af.js | 1 + src/ngLocale/angular-locale_ps.js | 1 + src/ngLocale/angular-locale_pt-ao.js | 1 + src/ngLocale/angular-locale_pt-br.js | 1 + src/ngLocale/angular-locale_pt-cv.js | 1 + src/ngLocale/angular-locale_pt-gw.js | 1 + src/ngLocale/angular-locale_pt-mo.js | 1 + src/ngLocale/angular-locale_pt-mz.js | 1 + src/ngLocale/angular-locale_pt-pt.js | 1 + src/ngLocale/angular-locale_pt-st.js | 1 + src/ngLocale/angular-locale_pt-tl.js | 1 + src/ngLocale/angular-locale_pt.js | 1 + src/ngLocale/angular-locale_qu-bo.js | 1 + src/ngLocale/angular-locale_qu-ec.js | 1 + src/ngLocale/angular-locale_qu-pe.js | 1 + src/ngLocale/angular-locale_qu.js | 1 + src/ngLocale/angular-locale_rm-ch.js | 1 + src/ngLocale/angular-locale_rm.js | 1 + src/ngLocale/angular-locale_rn-bi.js | 1 + src/ngLocale/angular-locale_rn.js | 1 + src/ngLocale/angular-locale_ro-md.js | 1 + src/ngLocale/angular-locale_ro-ro.js | 1 + src/ngLocale/angular-locale_ro.js | 1 + src/ngLocale/angular-locale_rof-tz.js | 1 + src/ngLocale/angular-locale_rof.js | 1 + src/ngLocale/angular-locale_ru-by.js | 1 + src/ngLocale/angular-locale_ru-kg.js | 1 + src/ngLocale/angular-locale_ru-kz.js | 1 + src/ngLocale/angular-locale_ru-md.js | 1 + src/ngLocale/angular-locale_ru-ru.js | 1 + src/ngLocale/angular-locale_ru-ua.js | 1 + src/ngLocale/angular-locale_ru.js | 1 + src/ngLocale/angular-locale_rw-rw.js | 1 + src/ngLocale/angular-locale_rw.js | 1 + src/ngLocale/angular-locale_rwk-tz.js | 1 + src/ngLocale/angular-locale_rwk.js | 1 + src/ngLocale/angular-locale_sah-ru.js | 1 + src/ngLocale/angular-locale_sah.js | 1 + src/ngLocale/angular-locale_saq-ke.js | 1 + src/ngLocale/angular-locale_saq.js | 1 + src/ngLocale/angular-locale_sbp-tz.js | 1 + src/ngLocale/angular-locale_sbp.js | 1 + src/ngLocale/angular-locale_se-fi.js | 1 + src/ngLocale/angular-locale_se-no.js | 1 + src/ngLocale/angular-locale_se-se.js | 1 + src/ngLocale/angular-locale_se.js | 1 + src/ngLocale/angular-locale_seh-mz.js | 1 + src/ngLocale/angular-locale_seh.js | 1 + src/ngLocale/angular-locale_ses-ml.js | 1 + src/ngLocale/angular-locale_ses.js | 1 + src/ngLocale/angular-locale_sg-cf.js | 1 + src/ngLocale/angular-locale_sg.js | 1 + src/ngLocale/angular-locale_shi-latn-ma.js | 1 + src/ngLocale/angular-locale_shi-latn.js | 1 + src/ngLocale/angular-locale_shi-tfng-ma.js | 1 + src/ngLocale/angular-locale_shi-tfng.js | 1 + src/ngLocale/angular-locale_shi.js | 1 + src/ngLocale/angular-locale_si-lk.js | 1 + src/ngLocale/angular-locale_si.js | 1 + src/ngLocale/angular-locale_sk-sk.js | 1 + src/ngLocale/angular-locale_sk.js | 1 + src/ngLocale/angular-locale_sl-si.js | 1 + src/ngLocale/angular-locale_sl.js | 1 + src/ngLocale/angular-locale_smn-fi.js | 1 + src/ngLocale/angular-locale_smn.js | 1 + src/ngLocale/angular-locale_sn-zw.js | 1 + src/ngLocale/angular-locale_sn.js | 1 + src/ngLocale/angular-locale_so-dj.js | 1 + src/ngLocale/angular-locale_so-et.js | 1 + src/ngLocale/angular-locale_so-ke.js | 1 + src/ngLocale/angular-locale_so-so.js | 1 + src/ngLocale/angular-locale_so.js | 1 + src/ngLocale/angular-locale_sq-al.js | 1 + src/ngLocale/angular-locale_sq-mk.js | 1 + src/ngLocale/angular-locale_sq-xk.js | 1 + src/ngLocale/angular-locale_sq.js | 1 + src/ngLocale/angular-locale_sr-cyrl-ba.js | 1 + src/ngLocale/angular-locale_sr-cyrl-me.js | 1 + src/ngLocale/angular-locale_sr-cyrl-rs.js | 1 + src/ngLocale/angular-locale_sr-cyrl-xk.js | 1 + src/ngLocale/angular-locale_sr-cyrl.js | 1 + src/ngLocale/angular-locale_sr-latn-ba.js | 1 + src/ngLocale/angular-locale_sr-latn-me.js | 1 + src/ngLocale/angular-locale_sr-latn-rs.js | 1 + src/ngLocale/angular-locale_sr-latn-xk.js | 1 + src/ngLocale/angular-locale_sr-latn.js | 1 + src/ngLocale/angular-locale_sr.js | 1 + src/ngLocale/angular-locale_sv-ax.js | 1 + src/ngLocale/angular-locale_sv-fi.js | 1 + src/ngLocale/angular-locale_sv-se.js | 1 + src/ngLocale/angular-locale_sv.js | 1 + src/ngLocale/angular-locale_sw-cd.js | 1 + src/ngLocale/angular-locale_sw-ke.js | 1 + src/ngLocale/angular-locale_sw-tz.js | 1 + src/ngLocale/angular-locale_sw-ug.js | 1 + src/ngLocale/angular-locale_sw.js | 1 + src/ngLocale/angular-locale_ta-in.js | 1 + src/ngLocale/angular-locale_ta-lk.js | 1 + src/ngLocale/angular-locale_ta-my.js | 1 + src/ngLocale/angular-locale_ta-sg.js | 1 + src/ngLocale/angular-locale_ta.js | 1 + src/ngLocale/angular-locale_te-in.js | 1 + src/ngLocale/angular-locale_te.js | 1 + src/ngLocale/angular-locale_teo-ke.js | 1 + src/ngLocale/angular-locale_teo-ug.js | 1 + src/ngLocale/angular-locale_teo.js | 1 + src/ngLocale/angular-locale_th-th.js | 1 + src/ngLocale/angular-locale_th.js | 1 + src/ngLocale/angular-locale_ti-er.js | 1 + src/ngLocale/angular-locale_ti-et.js | 1 + src/ngLocale/angular-locale_ti.js | 1 + src/ngLocale/angular-locale_tl.js | 1 + src/ngLocale/angular-locale_to-to.js | 1 + src/ngLocale/angular-locale_to.js | 1 + src/ngLocale/angular-locale_tr-cy.js | 1 + src/ngLocale/angular-locale_tr-tr.js | 1 + src/ngLocale/angular-locale_tr.js | 1 + src/ngLocale/angular-locale_twq-ne.js | 1 + src/ngLocale/angular-locale_twq.js | 1 + src/ngLocale/angular-locale_tzm-latn-ma.js | 1 + src/ngLocale/angular-locale_tzm-latn.js | 1 + src/ngLocale/angular-locale_tzm.js | 1 + src/ngLocale/angular-locale_ug-arab-cn.js | 1 + src/ngLocale/angular-locale_ug-arab.js | 1 + src/ngLocale/angular-locale_ug.js | 1 + src/ngLocale/angular-locale_uk-ua.js | 1 + src/ngLocale/angular-locale_uk.js | 1 + src/ngLocale/angular-locale_ur-in.js | 1 + src/ngLocale/angular-locale_ur-pk.js | 1 + src/ngLocale/angular-locale_ur.js | 1 + src/ngLocale/angular-locale_uz-arab-af.js | 1 + src/ngLocale/angular-locale_uz-arab.js | 1 + src/ngLocale/angular-locale_uz-cyrl-uz.js | 1 + src/ngLocale/angular-locale_uz-cyrl.js | 1 + src/ngLocale/angular-locale_uz-latn-uz.js | 1 + src/ngLocale/angular-locale_uz-latn.js | 1 + src/ngLocale/angular-locale_uz.js | 1 + src/ngLocale/angular-locale_vai-latn-lr.js | 1 + src/ngLocale/angular-locale_vai-latn.js | 1 + src/ngLocale/angular-locale_vai-vaii-lr.js | 1 + src/ngLocale/angular-locale_vai-vaii.js | 1 + src/ngLocale/angular-locale_vai.js | 1 + src/ngLocale/angular-locale_vi-vn.js | 1 + src/ngLocale/angular-locale_vi.js | 1 + src/ngLocale/angular-locale_vun-tz.js | 1 + src/ngLocale/angular-locale_vun.js | 1 + src/ngLocale/angular-locale_wae-ch.js | 1 + src/ngLocale/angular-locale_wae.js | 1 + src/ngLocale/angular-locale_xog-ug.js | 1 + src/ngLocale/angular-locale_xog.js | 1 + src/ngLocale/angular-locale_yav-cm.js | 1 + src/ngLocale/angular-locale_yav.js | 1 + src/ngLocale/angular-locale_yi-001.js | 1 + src/ngLocale/angular-locale_yi.js | 1 + src/ngLocale/angular-locale_yo-bj.js | 1 + src/ngLocale/angular-locale_yo-ng.js | 1 + src/ngLocale/angular-locale_yo.js | 1 + src/ngLocale/angular-locale_zgh-ma.js | 1 + src/ngLocale/angular-locale_zgh.js | 1 + src/ngLocale/angular-locale_zh-cn.js | 1 + src/ngLocale/angular-locale_zh-hans-cn.js | 1 + src/ngLocale/angular-locale_zh-hans-hk.js | 1 + src/ngLocale/angular-locale_zh-hans-mo.js | 1 + src/ngLocale/angular-locale_zh-hans-sg.js | 1 + src/ngLocale/angular-locale_zh-hans.js | 1 + src/ngLocale/angular-locale_zh-hant-hk.js | 1 + src/ngLocale/angular-locale_zh-hant-mo.js | 1 + src/ngLocale/angular-locale_zh-hant-tw.js | 1 + src/ngLocale/angular-locale_zh-hant.js | 1 + src/ngLocale/angular-locale_zh-hk.js | 1 + src/ngLocale/angular-locale_zh-tw.js | 1 + src/ngLocale/angular-locale_zh.js | 1 + src/ngLocale/angular-locale_zu-za.js | 1 + src/ngLocale/angular-locale_zu.js | 1 + 703 files changed, 703 insertions(+) diff --git a/src/ngLocale/angular-locale_af-na.js b/src/ngLocale/angular-locale_af-na.js index 80d1da82450d..32b9181de69b 100644 --- a/src/ngLocale/angular-locale_af-na.js +++ b/src/ngLocale/angular-locale_af-na.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "af-na", + "localeID": "af_NA", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_af-za.js b/src/ngLocale/angular-locale_af-za.js index 5af98ce200ff..b667ded2794a 100644 --- a/src/ngLocale/angular-locale_af-za.js +++ b/src/ngLocale/angular-locale_af-za.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "af-za", + "localeID": "af_ZA", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_af.js b/src/ngLocale/angular-locale_af.js index 6d7cda4afe22..5c2e7f791116 100644 --- a/src/ngLocale/angular-locale_af.js +++ b/src/ngLocale/angular-locale_af.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "af", + "localeID": "af", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_agq-cm.js b/src/ngLocale/angular-locale_agq-cm.js index ec1fadd41627..102f5b2a33e7 100644 --- a/src/ngLocale/angular-locale_agq-cm.js +++ b/src/ngLocale/angular-locale_agq-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "agq-cm", + "localeID": "agq_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_agq.js b/src/ngLocale/angular-locale_agq.js index 739a5d12caa8..cf57315ff9e4 100644 --- a/src/ngLocale/angular-locale_agq.js +++ b/src/ngLocale/angular-locale_agq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "agq", + "localeID": "agq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ak-gh.js b/src/ngLocale/angular-locale_ak-gh.js index 8a2f352a790b..c58c9a222be7 100644 --- a/src/ngLocale/angular-locale_ak-gh.js +++ b/src/ngLocale/angular-locale_ak-gh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ak-gh", + "localeID": "ak_GH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ak.js b/src/ngLocale/angular-locale_ak.js index f0b39a0cfc5c..1f9a7c3f88ab 100644 --- a/src/ngLocale/angular-locale_ak.js +++ b/src/ngLocale/angular-locale_ak.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ak", + "localeID": "ak", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_am-et.js b/src/ngLocale/angular-locale_am-et.js index fcd9355af1da..7384a08fb7de 100644 --- a/src/ngLocale/angular-locale_am-et.js +++ b/src/ngLocale/angular-locale_am-et.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "am-et", + "localeID": "am_ET", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_am.js b/src/ngLocale/angular-locale_am.js index 995dbfa2e970..4f3fca1aaeb2 100644 --- a/src/ngLocale/angular-locale_am.js +++ b/src/ngLocale/angular-locale_am.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "am", + "localeID": "am", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-001.js b/src/ngLocale/angular-locale_ar-001.js index effd9b374bb6..4da6ab6a5b4c 100644 --- a/src/ngLocale/angular-locale_ar-001.js +++ b/src/ngLocale/angular-locale_ar-001.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-001", + "localeID": "ar_001", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ae.js b/src/ngLocale/angular-locale_ar-ae.js index e364a6fe28f0..a1524dc98d73 100644 --- a/src/ngLocale/angular-locale_ar-ae.js +++ b/src/ngLocale/angular-locale_ar-ae.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ae", + "localeID": "ar_AE", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-bh.js b/src/ngLocale/angular-locale_ar-bh.js index 8e27b34c576e..8b24a4043101 100644 --- a/src/ngLocale/angular-locale_ar-bh.js +++ b/src/ngLocale/angular-locale_ar-bh.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-bh", + "localeID": "ar_BH", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-dj.js b/src/ngLocale/angular-locale_ar-dj.js index acc474e1e139..673aa7e8755d 100644 --- a/src/ngLocale/angular-locale_ar-dj.js +++ b/src/ngLocale/angular-locale_ar-dj.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-dj", + "localeID": "ar_DJ", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-dz.js b/src/ngLocale/angular-locale_ar-dz.js index b0a84c8a4389..037cc995a549 100644 --- a/src/ngLocale/angular-locale_ar-dz.js +++ b/src/ngLocale/angular-locale_ar-dz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-dz", + "localeID": "ar_DZ", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-eg.js b/src/ngLocale/angular-locale_ar-eg.js index bed2e1189d70..07e70071a233 100644 --- a/src/ngLocale/angular-locale_ar-eg.js +++ b/src/ngLocale/angular-locale_ar-eg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-eg", + "localeID": "ar_EG", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-eh.js b/src/ngLocale/angular-locale_ar-eh.js index 9901324b6c6c..a1e4460ccc3d 100644 --- a/src/ngLocale/angular-locale_ar-eh.js +++ b/src/ngLocale/angular-locale_ar-eh.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-eh", + "localeID": "ar_EH", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-er.js b/src/ngLocale/angular-locale_ar-er.js index 277a7beae6a6..edbbccda34f3 100644 --- a/src/ngLocale/angular-locale_ar-er.js +++ b/src/ngLocale/angular-locale_ar-er.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-er", + "localeID": "ar_ER", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-il.js b/src/ngLocale/angular-locale_ar-il.js index 3accb0c3a91c..7c1e4fd7d803 100644 --- a/src/ngLocale/angular-locale_ar-il.js +++ b/src/ngLocale/angular-locale_ar-il.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-il", + "localeID": "ar_IL", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-iq.js b/src/ngLocale/angular-locale_ar-iq.js index f7b1e2d0879c..4c26108f9cb4 100644 --- a/src/ngLocale/angular-locale_ar-iq.js +++ b/src/ngLocale/angular-locale_ar-iq.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-iq", + "localeID": "ar_IQ", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-jo.js b/src/ngLocale/angular-locale_ar-jo.js index 80abb584b01f..8bd5a66b16ec 100644 --- a/src/ngLocale/angular-locale_ar-jo.js +++ b/src/ngLocale/angular-locale_ar-jo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-jo", + "localeID": "ar_JO", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-km.js b/src/ngLocale/angular-locale_ar-km.js index 6081dec92fd5..00d205d3f5fd 100644 --- a/src/ngLocale/angular-locale_ar-km.js +++ b/src/ngLocale/angular-locale_ar-km.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-km", + "localeID": "ar_KM", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-kw.js b/src/ngLocale/angular-locale_ar-kw.js index 0f73d82fed80..c9863118c6ee 100644 --- a/src/ngLocale/angular-locale_ar-kw.js +++ b/src/ngLocale/angular-locale_ar-kw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-kw", + "localeID": "ar_KW", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-lb.js b/src/ngLocale/angular-locale_ar-lb.js index c392373ccb9b..2bb07fc4f27c 100644 --- a/src/ngLocale/angular-locale_ar-lb.js +++ b/src/ngLocale/angular-locale_ar-lb.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-lb", + "localeID": "ar_LB", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ly.js b/src/ngLocale/angular-locale_ar-ly.js index 52472f8fee00..622bde2da6ef 100644 --- a/src/ngLocale/angular-locale_ar-ly.js +++ b/src/ngLocale/angular-locale_ar-ly.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ly", + "localeID": "ar_LY", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ma.js b/src/ngLocale/angular-locale_ar-ma.js index a561ac55a4ed..e00bfd73373f 100644 --- a/src/ngLocale/angular-locale_ar-ma.js +++ b/src/ngLocale/angular-locale_ar-ma.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ma", + "localeID": "ar_MA", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-mr.js b/src/ngLocale/angular-locale_ar-mr.js index fc66912d0d5e..259a617d6fa9 100644 --- a/src/ngLocale/angular-locale_ar-mr.js +++ b/src/ngLocale/angular-locale_ar-mr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-mr", + "localeID": "ar_MR", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-om.js b/src/ngLocale/angular-locale_ar-om.js index 9e25eb590b36..947fe89c6082 100644 --- a/src/ngLocale/angular-locale_ar-om.js +++ b/src/ngLocale/angular-locale_ar-om.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-om", + "localeID": "ar_OM", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ps.js b/src/ngLocale/angular-locale_ar-ps.js index 5acf0c046983..26baca0047d6 100644 --- a/src/ngLocale/angular-locale_ar-ps.js +++ b/src/ngLocale/angular-locale_ar-ps.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ps", + "localeID": "ar_PS", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-qa.js b/src/ngLocale/angular-locale_ar-qa.js index 3f1b315b5dd3..7d9ea6881518 100644 --- a/src/ngLocale/angular-locale_ar-qa.js +++ b/src/ngLocale/angular-locale_ar-qa.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-qa", + "localeID": "ar_QA", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-sa.js b/src/ngLocale/angular-locale_ar-sa.js index 56bc1e5a7bcf..5fb66535789e 100644 --- a/src/ngLocale/angular-locale_ar-sa.js +++ b/src/ngLocale/angular-locale_ar-sa.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-sa", + "localeID": "ar_SA", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-sd.js b/src/ngLocale/angular-locale_ar-sd.js index 090150f2b9f6..e8c6494b012f 100644 --- a/src/ngLocale/angular-locale_ar-sd.js +++ b/src/ngLocale/angular-locale_ar-sd.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-sd", + "localeID": "ar_SD", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-so.js b/src/ngLocale/angular-locale_ar-so.js index 40ab8cb0c360..7ab6a54d2231 100644 --- a/src/ngLocale/angular-locale_ar-so.js +++ b/src/ngLocale/angular-locale_ar-so.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-so", + "localeID": "ar_SO", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ss.js b/src/ngLocale/angular-locale_ar-ss.js index 01af07a398cb..c5afc29c9626 100644 --- a/src/ngLocale/angular-locale_ar-ss.js +++ b/src/ngLocale/angular-locale_ar-ss.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ss", + "localeID": "ar_SS", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-sy.js b/src/ngLocale/angular-locale_ar-sy.js index e2142a322beb..9ddd6addc1e1 100644 --- a/src/ngLocale/angular-locale_ar-sy.js +++ b/src/ngLocale/angular-locale_ar-sy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-sy", + "localeID": "ar_SY", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-td.js b/src/ngLocale/angular-locale_ar-td.js index 643b156c294a..b28152a44429 100644 --- a/src/ngLocale/angular-locale_ar-td.js +++ b/src/ngLocale/angular-locale_ar-td.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-td", + "localeID": "ar_TD", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-tn.js b/src/ngLocale/angular-locale_ar-tn.js index b35079e810b2..eaba50534b33 100644 --- a/src/ngLocale/angular-locale_ar-tn.js +++ b/src/ngLocale/angular-locale_ar-tn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-tn", + "localeID": "ar_TN", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar-ye.js b/src/ngLocale/angular-locale_ar-ye.js index 1e4d5db2b171..b0d8356fb537 100644 --- a/src/ngLocale/angular-locale_ar-ye.js +++ b/src/ngLocale/angular-locale_ar-ye.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar-ye", + "localeID": "ar_YE", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ar.js b/src/ngLocale/angular-locale_ar.js index 1126cef0f6ed..1ac223adbfa1 100644 --- a/src/ngLocale/angular-locale_ar.js +++ b/src/ngLocale/angular-locale_ar.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ar", + "localeID": "ar", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n % 100 >= 3 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 99) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_as-in.js b/src/ngLocale/angular-locale_as-in.js index 69249bc46b47..a7beeabb8f56 100644 --- a/src/ngLocale/angular-locale_as-in.js +++ b/src/ngLocale/angular-locale_as-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "as-in", + "localeID": "as_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_as.js b/src/ngLocale/angular-locale_as.js index 07d1d7444d80..6c4fd512753c 100644 --- a/src/ngLocale/angular-locale_as.js +++ b/src/ngLocale/angular-locale_as.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "as", + "localeID": "as", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_asa-tz.js b/src/ngLocale/angular-locale_asa-tz.js index 9b8f2d710edd..8bff7253fddf 100644 --- a/src/ngLocale/angular-locale_asa-tz.js +++ b/src/ngLocale/angular-locale_asa-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "asa-tz", + "localeID": "asa_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_asa.js b/src/ngLocale/angular-locale_asa.js index ed938388b6d1..c6e4c1780795 100644 --- a/src/ngLocale/angular-locale_asa.js +++ b/src/ngLocale/angular-locale_asa.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "asa", + "localeID": "asa", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ast-es.js b/src/ngLocale/angular-locale_ast-es.js index 2f50733f1f9d..7d429d6e460f 100644 --- a/src/ngLocale/angular-locale_ast-es.js +++ b/src/ngLocale/angular-locale_ast-es.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ast-es", + "localeID": "ast_ES", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ast.js b/src/ngLocale/angular-locale_ast.js index bddf633dd814..38058bc72bc5 100644 --- a/src/ngLocale/angular-locale_ast.js +++ b/src/ngLocale/angular-locale_ast.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ast", + "localeID": "ast", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_az-cyrl-az.js b/src/ngLocale/angular-locale_az-cyrl-az.js index ab41008dfd2c..83075e796ae7 100644 --- a/src/ngLocale/angular-locale_az-cyrl-az.js +++ b/src/ngLocale/angular-locale_az-cyrl-az.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "az-cyrl-az", + "localeID": "az_Cyrl_AZ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_az-cyrl.js b/src/ngLocale/angular-locale_az-cyrl.js index 484d205ebea1..256f4e32437c 100644 --- a/src/ngLocale/angular-locale_az-cyrl.js +++ b/src/ngLocale/angular-locale_az-cyrl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "az-cyrl", + "localeID": "az_Cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_az-latn-az.js b/src/ngLocale/angular-locale_az-latn-az.js index 507ff89a838a..8daf7b1a2e4c 100644 --- a/src/ngLocale/angular-locale_az-latn-az.js +++ b/src/ngLocale/angular-locale_az-latn-az.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "az-latn-az", + "localeID": "az_Latn_AZ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_az-latn.js b/src/ngLocale/angular-locale_az-latn.js index e6447a0a7d72..145c3c3bcf1b 100644 --- a/src/ngLocale/angular-locale_az-latn.js +++ b/src/ngLocale/angular-locale_az-latn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "az-latn", + "localeID": "az_Latn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_az.js b/src/ngLocale/angular-locale_az.js index 00c97d2f2cbd..84791b303f15 100644 --- a/src/ngLocale/angular-locale_az.js +++ b/src/ngLocale/angular-locale_az.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "az", + "localeID": "az", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bas-cm.js b/src/ngLocale/angular-locale_bas-cm.js index 4c960e96ec76..0511efcd7f88 100644 --- a/src/ngLocale/angular-locale_bas-cm.js +++ b/src/ngLocale/angular-locale_bas-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bas-cm", + "localeID": "bas_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bas.js b/src/ngLocale/angular-locale_bas.js index 09b3a8016106..3bdcaedb2aca 100644 --- a/src/ngLocale/angular-locale_bas.js +++ b/src/ngLocale/angular-locale_bas.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bas", + "localeID": "bas", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_be-by.js b/src/ngLocale/angular-locale_be-by.js index ba0bda4b1f4c..dd98e650eee9 100644 --- a/src/ngLocale/angular-locale_be-by.js +++ b/src/ngLocale/angular-locale_be-by.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "be-by", + "localeID": "be_BY", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n % 10 >= 5 && n % 10 <= 9 || n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_be.js b/src/ngLocale/angular-locale_be.js index 4be2662d858c..7f557eb96a41 100644 --- a/src/ngLocale/angular-locale_be.js +++ b/src/ngLocale/angular-locale_be.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "be", + "localeID": "be", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (n % 10 == 0 || n % 10 >= 5 && n % 10 <= 9 || n % 100 >= 11 && n % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bem-zm.js b/src/ngLocale/angular-locale_bem-zm.js index 99a18e9453c4..6881a377fc0f 100644 --- a/src/ngLocale/angular-locale_bem-zm.js +++ b/src/ngLocale/angular-locale_bem-zm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bem-zm", + "localeID": "bem_ZM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bem.js b/src/ngLocale/angular-locale_bem.js index 7dda6c3ded77..8a8229d5e144 100644 --- a/src/ngLocale/angular-locale_bem.js +++ b/src/ngLocale/angular-locale_bem.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bem", + "localeID": "bem", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bez-tz.js b/src/ngLocale/angular-locale_bez-tz.js index a1cf495da350..9e5fa35e2c0f 100644 --- a/src/ngLocale/angular-locale_bez-tz.js +++ b/src/ngLocale/angular-locale_bez-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bez-tz", + "localeID": "bez_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bez.js b/src/ngLocale/angular-locale_bez.js index 5215f57745bb..3788f08efd36 100644 --- a/src/ngLocale/angular-locale_bez.js +++ b/src/ngLocale/angular-locale_bez.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bez", + "localeID": "bez", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bg-bg.js b/src/ngLocale/angular-locale_bg-bg.js index 502e491afd5b..cd8d37dd6069 100644 --- a/src/ngLocale/angular-locale_bg-bg.js +++ b/src/ngLocale/angular-locale_bg-bg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "bg-bg", + "localeID": "bg_BG", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bg.js b/src/ngLocale/angular-locale_bg.js index cb3a47d4a339..2b62eaf05d0b 100644 --- a/src/ngLocale/angular-locale_bg.js +++ b/src/ngLocale/angular-locale_bg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "bg", + "localeID": "bg", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bm-latn-ml.js b/src/ngLocale/angular-locale_bm-latn-ml.js index af8f599ad178..d5d725820c74 100644 --- a/src/ngLocale/angular-locale_bm-latn-ml.js +++ b/src/ngLocale/angular-locale_bm-latn-ml.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bm-latn-ml", + "localeID": "bm_Latn_ML", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bm-latn.js b/src/ngLocale/angular-locale_bm-latn.js index 8166393f59e7..1d2721bd5260 100644 --- a/src/ngLocale/angular-locale_bm-latn.js +++ b/src/ngLocale/angular-locale_bm-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bm-latn", + "localeID": "bm_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bm.js b/src/ngLocale/angular-locale_bm.js index 104470f9fd4c..af07e44bb107 100644 --- a/src/ngLocale/angular-locale_bm.js +++ b/src/ngLocale/angular-locale_bm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bm", + "localeID": "bm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bn-bd.js b/src/ngLocale/angular-locale_bn-bd.js index 656fe8756645..a6009d7d8b6c 100644 --- a/src/ngLocale/angular-locale_bn-bd.js +++ b/src/ngLocale/angular-locale_bn-bd.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "bn-bd", + "localeID": "bn_BD", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bn-in.js b/src/ngLocale/angular-locale_bn-in.js index bb4ba10482e4..021644d4d511 100644 --- a/src/ngLocale/angular-locale_bn-in.js +++ b/src/ngLocale/angular-locale_bn-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "bn-in", + "localeID": "bn_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bn.js b/src/ngLocale/angular-locale_bn.js index c6d2ee68eeab..866471e51f81 100644 --- a/src/ngLocale/angular-locale_bn.js +++ b/src/ngLocale/angular-locale_bn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "bn", + "localeID": "bn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bo-cn.js b/src/ngLocale/angular-locale_bo-cn.js index c65480606093..643db4da76c2 100644 --- a/src/ngLocale/angular-locale_bo-cn.js +++ b/src/ngLocale/angular-locale_bo-cn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bo-cn", + "localeID": "bo_CN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bo-in.js b/src/ngLocale/angular-locale_bo-in.js index 725bc18a89c1..4f1530372808 100644 --- a/src/ngLocale/angular-locale_bo-in.js +++ b/src/ngLocale/angular-locale_bo-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bo-in", + "localeID": "bo_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bo.js b/src/ngLocale/angular-locale_bo.js index d2bc1c04bd3c..75c2a86908dd 100644 --- a/src/ngLocale/angular-locale_bo.js +++ b/src/ngLocale/angular-locale_bo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bo", + "localeID": "bo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_br-fr.js b/src/ngLocale/angular-locale_br-fr.js index d71399030fea..2e1b3465acb9 100644 --- a/src/ngLocale/angular-locale_br-fr.js +++ b/src/ngLocale/angular-locale_br-fr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "br-fr", + "localeID": "br_FR", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) { return PLURAL_CATEGORY.ONE; } if (n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) { return PLURAL_CATEGORY.TWO; } if ((n % 10 >= 3 && n % 10 <= 4 || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) { return PLURAL_CATEGORY.FEW; } if (n != 0 && n % 1000000 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_br.js b/src/ngLocale/angular-locale_br.js index 9b38d48f3a6d..9434aafbc5e6 100644 --- a/src/ngLocale/angular-locale_br.js +++ b/src/ngLocale/angular-locale_br.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "br", + "localeID": "br", "pluralCat": function(n, opt_precision) { if (n % 10 == 1 && n % 100 != 11 && n % 100 != 71 && n % 100 != 91) { return PLURAL_CATEGORY.ONE; } if (n % 10 == 2 && n % 100 != 12 && n % 100 != 72 && n % 100 != 92) { return PLURAL_CATEGORY.TWO; } if ((n % 10 >= 3 && n % 10 <= 4 || n % 10 == 9) && (n % 100 < 10 || n % 100 > 19) && (n % 100 < 70 || n % 100 > 79) && (n % 100 < 90 || n % 100 > 99)) { return PLURAL_CATEGORY.FEW; } if (n != 0 && n % 1000000 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_brx-in.js b/src/ngLocale/angular-locale_brx-in.js index 9c01fb3de0fc..a0417d138c29 100644 --- a/src/ngLocale/angular-locale_brx-in.js +++ b/src/ngLocale/angular-locale_brx-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "brx-in", + "localeID": "brx_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_brx.js b/src/ngLocale/angular-locale_brx.js index 11b71d6f7a3b..b909ab27db45 100644 --- a/src/ngLocale/angular-locale_brx.js +++ b/src/ngLocale/angular-locale_brx.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "brx", + "localeID": "brx", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bs-cyrl-ba.js b/src/ngLocale/angular-locale_bs-cyrl-ba.js index 1ac2c0813c50..45e4450d75c1 100644 --- a/src/ngLocale/angular-locale_bs-cyrl-ba.js +++ b/src/ngLocale/angular-locale_bs-cyrl-ba.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bs-cyrl-ba", + "localeID": "bs_Cyrl_BA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bs-cyrl.js b/src/ngLocale/angular-locale_bs-cyrl.js index ccff6570b07a..0f0cdf228feb 100644 --- a/src/ngLocale/angular-locale_bs-cyrl.js +++ b/src/ngLocale/angular-locale_bs-cyrl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bs-cyrl", + "localeID": "bs_Cyrl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bs-latn-ba.js b/src/ngLocale/angular-locale_bs-latn-ba.js index f7d98ca1575e..0a819c99d068 100644 --- a/src/ngLocale/angular-locale_bs-latn-ba.js +++ b/src/ngLocale/angular-locale_bs-latn-ba.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bs-latn-ba", + "localeID": "bs_Latn_BA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bs-latn.js b/src/ngLocale/angular-locale_bs-latn.js index 39ae125803e0..404daf8d71e3 100644 --- a/src/ngLocale/angular-locale_bs-latn.js +++ b/src/ngLocale/angular-locale_bs-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bs-latn", + "localeID": "bs_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_bs.js b/src/ngLocale/angular-locale_bs.js index 9493ee9ea431..e1f4cd1fd5a4 100644 --- a/src/ngLocale/angular-locale_bs.js +++ b/src/ngLocale/angular-locale_bs.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "bs", + "localeID": "bs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca-ad.js b/src/ngLocale/angular-locale_ca-ad.js index dbb0dd549f04..122482841735 100644 --- a/src/ngLocale/angular-locale_ca-ad.js +++ b/src/ngLocale/angular-locale_ca-ad.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca-ad", + "localeID": "ca_AD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca-es-valencia.js b/src/ngLocale/angular-locale_ca-es-valencia.js index 53a24d7f62cf..388980e96f0e 100644 --- a/src/ngLocale/angular-locale_ca-es-valencia.js +++ b/src/ngLocale/angular-locale_ca-es-valencia.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca-es-valencia", + "localeID": "ca_ES_VALENCIA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca-es.js b/src/ngLocale/angular-locale_ca-es.js index dfa8c6e4b09c..85a01a6d342f 100644 --- a/src/ngLocale/angular-locale_ca-es.js +++ b/src/ngLocale/angular-locale_ca-es.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca-es", + "localeID": "ca_ES", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca-fr.js b/src/ngLocale/angular-locale_ca-fr.js index 3319f026008d..d7b15e6e95b1 100644 --- a/src/ngLocale/angular-locale_ca-fr.js +++ b/src/ngLocale/angular-locale_ca-fr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca-fr", + "localeID": "ca_FR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca-it.js b/src/ngLocale/angular-locale_ca-it.js index c06e8dfdb422..72cb38424de6 100644 --- a/src/ngLocale/angular-locale_ca-it.js +++ b/src/ngLocale/angular-locale_ca-it.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca-it", + "localeID": "ca_IT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ca.js b/src/ngLocale/angular-locale_ca.js index 7bda2992dac8..2fcc4afea304 100644 --- a/src/ngLocale/angular-locale_ca.js +++ b/src/ngLocale/angular-locale_ca.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ca", + "localeID": "ca", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cgg-ug.js b/src/ngLocale/angular-locale_cgg-ug.js index 18249ee8ac89..ce47a8d44440 100644 --- a/src/ngLocale/angular-locale_cgg-ug.js +++ b/src/ngLocale/angular-locale_cgg-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "cgg-ug", + "localeID": "cgg_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cgg.js b/src/ngLocale/angular-locale_cgg.js index c6637a0d3897..86e8630d6578 100644 --- a/src/ngLocale/angular-locale_cgg.js +++ b/src/ngLocale/angular-locale_cgg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "cgg", + "localeID": "cgg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_chr-us.js b/src/ngLocale/angular-locale_chr-us.js index 717a2438da2c..1445824c804d 100644 --- a/src/ngLocale/angular-locale_chr-us.js +++ b/src/ngLocale/angular-locale_chr-us.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "chr-us", + "localeID": "chr_US", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_chr.js b/src/ngLocale/angular-locale_chr.js index 23f4d6eab498..61030c4e12a3 100644 --- a/src/ngLocale/angular-locale_chr.js +++ b/src/ngLocale/angular-locale_chr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "chr", + "localeID": "chr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-arab-iq.js b/src/ngLocale/angular-locale_ckb-arab-iq.js index e54149a08f59..bc6cf63da7a9 100644 --- a/src/ngLocale/angular-locale_ckb-arab-iq.js +++ b/src/ngLocale/angular-locale_ckb-arab-iq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-arab-iq", + "localeID": "ckb_Arab_IQ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-arab-ir.js b/src/ngLocale/angular-locale_ckb-arab-ir.js index c794b4665d15..9a83d4a38c6b 100644 --- a/src/ngLocale/angular-locale_ckb-arab-ir.js +++ b/src/ngLocale/angular-locale_ckb-arab-ir.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-arab-ir", + "localeID": "ckb_Arab_IR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-arab.js b/src/ngLocale/angular-locale_ckb-arab.js index 50186a3c2037..6f4f7a84262d 100644 --- a/src/ngLocale/angular-locale_ckb-arab.js +++ b/src/ngLocale/angular-locale_ckb-arab.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-arab", + "localeID": "ckb_Arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-iq.js b/src/ngLocale/angular-locale_ckb-iq.js index f64ba8f1e2e5..07f32c0ab860 100644 --- a/src/ngLocale/angular-locale_ckb-iq.js +++ b/src/ngLocale/angular-locale_ckb-iq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-iq", + "localeID": "ckb_IQ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-ir.js b/src/ngLocale/angular-locale_ckb-ir.js index f1274fc41b3e..03dced5e37ad 100644 --- a/src/ngLocale/angular-locale_ckb-ir.js +++ b/src/ngLocale/angular-locale_ckb-ir.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-ir", + "localeID": "ckb_IR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-latn-iq.js b/src/ngLocale/angular-locale_ckb-latn-iq.js index fd0f83498896..07eaee8cd7f4 100644 --- a/src/ngLocale/angular-locale_ckb-latn-iq.js +++ b/src/ngLocale/angular-locale_ckb-latn-iq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-latn-iq", + "localeID": "ckb_Latn_IQ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb-latn.js b/src/ngLocale/angular-locale_ckb-latn.js index f5779174ed1b..26f961f61147 100644 --- a/src/ngLocale/angular-locale_ckb-latn.js +++ b/src/ngLocale/angular-locale_ckb-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb-latn", + "localeID": "ckb_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ckb.js b/src/ngLocale/angular-locale_ckb.js index 6b1ca8989c5e..47f879e1ce8c 100644 --- a/src/ngLocale/angular-locale_ckb.js +++ b/src/ngLocale/angular-locale_ckb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ckb", + "localeID": "ckb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cs-cz.js b/src/ngLocale/angular-locale_cs-cz.js index 7a00f917d0c5..237ee3af4754 100644 --- a/src/ngLocale/angular-locale_cs-cz.js +++ b/src/ngLocale/angular-locale_cs-cz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "cs-cz", + "localeID": "cs_CZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cs.js b/src/ngLocale/angular-locale_cs.js index ece3304694b6..5be6dafbce67 100644 --- a/src/ngLocale/angular-locale_cs.js +++ b/src/ngLocale/angular-locale_cs.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "cs", + "localeID": "cs", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cy-gb.js b/src/ngLocale/angular-locale_cy-gb.js index a4ddd70c93bf..d0074f88afb1 100644 --- a/src/ngLocale/angular-locale_cy-gb.js +++ b/src/ngLocale/angular-locale_cy-gb.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "cy-gb", + "localeID": "cy_GB", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == 3) { return PLURAL_CATEGORY.FEW; } if (n == 6) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_cy.js b/src/ngLocale/angular-locale_cy.js index 151efb45094a..ca37d810e26d 100644 --- a/src/ngLocale/angular-locale_cy.js +++ b/src/ngLocale/angular-locale_cy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "cy", + "localeID": "cy", "pluralCat": function(n, opt_precision) { if (n == 0) { return PLURAL_CATEGORY.ZERO; } if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n == 3) { return PLURAL_CATEGORY.FEW; } if (n == 6) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_da-dk.js b/src/ngLocale/angular-locale_da-dk.js index 0067ecc5d3bb..f0ef36f25e1f 100644 --- a/src/ngLocale/angular-locale_da-dk.js +++ b/src/ngLocale/angular-locale_da-dk.js @@ -150,6 +150,7 @@ $provide.value("$locale", { ] }, "id": "da-dk", + "localeID": "da_DK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_da-gl.js b/src/ngLocale/angular-locale_da-gl.js index 1068a2bc5934..f1329d022afc 100644 --- a/src/ngLocale/angular-locale_da-gl.js +++ b/src/ngLocale/angular-locale_da-gl.js @@ -150,6 +150,7 @@ $provide.value("$locale", { ] }, "id": "da-gl", + "localeID": "da_GL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_da.js b/src/ngLocale/angular-locale_da.js index dfb3dd47c602..5297d984c4b8 100644 --- a/src/ngLocale/angular-locale_da.js +++ b/src/ngLocale/angular-locale_da.js @@ -150,6 +150,7 @@ $provide.value("$locale", { ] }, "id": "da", + "localeID": "da", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (n == 1 || wt.t != 0 && (i == 0 || i == 1)) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dav-ke.js b/src/ngLocale/angular-locale_dav-ke.js index b40cf85b29d3..45111814f007 100644 --- a/src/ngLocale/angular-locale_dav-ke.js +++ b/src/ngLocale/angular-locale_dav-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dav-ke", + "localeID": "dav_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dav.js b/src/ngLocale/angular-locale_dav.js index 1ba29994441c..642c1fea34d6 100644 --- a/src/ngLocale/angular-locale_dav.js +++ b/src/ngLocale/angular-locale_dav.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dav", + "localeID": "dav", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-at.js b/src/ngLocale/angular-locale_de-at.js index dcf2b6d0cdbf..22f83e4989e7 100644 --- a/src/ngLocale/angular-locale_de-at.js +++ b/src/ngLocale/angular-locale_de-at.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-at", + "localeID": "de_AT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-be.js b/src/ngLocale/angular-locale_de-be.js index f2b031cf031d..0b519bd0c00e 100644 --- a/src/ngLocale/angular-locale_de-be.js +++ b/src/ngLocale/angular-locale_de-be.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-be", + "localeID": "de_BE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-ch.js b/src/ngLocale/angular-locale_de-ch.js index 9b9841ac7118..14554f9600ac 100644 --- a/src/ngLocale/angular-locale_de-ch.js +++ b/src/ngLocale/angular-locale_de-ch.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-ch", + "localeID": "de_CH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-de.js b/src/ngLocale/angular-locale_de-de.js index 6b267bf1bd4d..52273122b01b 100644 --- a/src/ngLocale/angular-locale_de-de.js +++ b/src/ngLocale/angular-locale_de-de.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-de", + "localeID": "de_DE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-li.js b/src/ngLocale/angular-locale_de-li.js index 12c2b10796a0..fa93e9d1fb4b 100644 --- a/src/ngLocale/angular-locale_de-li.js +++ b/src/ngLocale/angular-locale_de-li.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-li", + "localeID": "de_LI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de-lu.js b/src/ngLocale/angular-locale_de-lu.js index 2fad59f58c5a..2bca130fb6c6 100644 --- a/src/ngLocale/angular-locale_de-lu.js +++ b/src/ngLocale/angular-locale_de-lu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de-lu", + "localeID": "de_LU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_de.js b/src/ngLocale/angular-locale_de.js index efe64980bcbb..cc69b3af55c6 100644 --- a/src/ngLocale/angular-locale_de.js +++ b/src/ngLocale/angular-locale_de.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "de", + "localeID": "de", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dje-ne.js b/src/ngLocale/angular-locale_dje-ne.js index 15038826b2d0..468c85593641 100644 --- a/src/ngLocale/angular-locale_dje-ne.js +++ b/src/ngLocale/angular-locale_dje-ne.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dje-ne", + "localeID": "dje_NE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dje.js b/src/ngLocale/angular-locale_dje.js index b1bf7ddd58ec..6b1f122045d5 100644 --- a/src/ngLocale/angular-locale_dje.js +++ b/src/ngLocale/angular-locale_dje.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dje", + "localeID": "dje", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dsb-de.js b/src/ngLocale/angular-locale_dsb-de.js index ec5c523de7d8..43e3c7e77d73 100644 --- a/src/ngLocale/angular-locale_dsb-de.js +++ b/src/ngLocale/angular-locale_dsb-de.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dsb-de", + "localeID": "dsb_DE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dsb.js b/src/ngLocale/angular-locale_dsb.js index 423b1720ffa5..01137dad808a 100644 --- a/src/ngLocale/angular-locale_dsb.js +++ b/src/ngLocale/angular-locale_dsb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dsb", + "localeID": "dsb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dua-cm.js b/src/ngLocale/angular-locale_dua-cm.js index 3dbe4758e92b..eacb47f0d65d 100644 --- a/src/ngLocale/angular-locale_dua-cm.js +++ b/src/ngLocale/angular-locale_dua-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dua-cm", + "localeID": "dua_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dua.js b/src/ngLocale/angular-locale_dua.js index 2ac8e09fd5d9..cf31aef64816 100644 --- a/src/ngLocale/angular-locale_dua.js +++ b/src/ngLocale/angular-locale_dua.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dua", + "localeID": "dua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dyo-sn.js b/src/ngLocale/angular-locale_dyo-sn.js index e670343d2c2d..2e1c1fc2428e 100644 --- a/src/ngLocale/angular-locale_dyo-sn.js +++ b/src/ngLocale/angular-locale_dyo-sn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dyo-sn", + "localeID": "dyo_SN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dyo.js b/src/ngLocale/angular-locale_dyo.js index 6af387ce9ffb..7978c73dda6d 100644 --- a/src/ngLocale/angular-locale_dyo.js +++ b/src/ngLocale/angular-locale_dyo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dyo", + "localeID": "dyo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dz-bt.js b/src/ngLocale/angular-locale_dz-bt.js index ba60d7fdd759..58d59efda77e 100644 --- a/src/ngLocale/angular-locale_dz-bt.js +++ b/src/ngLocale/angular-locale_dz-bt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dz-bt", + "localeID": "dz_BT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_dz.js b/src/ngLocale/angular-locale_dz.js index 847856a55424..d1c2cc8009ae 100644 --- a/src/ngLocale/angular-locale_dz.js +++ b/src/ngLocale/angular-locale_dz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "dz", + "localeID": "dz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ebu-ke.js b/src/ngLocale/angular-locale_ebu-ke.js index d200e493e416..28b3a8942eb2 100644 --- a/src/ngLocale/angular-locale_ebu-ke.js +++ b/src/ngLocale/angular-locale_ebu-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ebu-ke", + "localeID": "ebu_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ebu.js b/src/ngLocale/angular-locale_ebu.js index e462b368850f..3ccd0863ce76 100644 --- a/src/ngLocale/angular-locale_ebu.js +++ b/src/ngLocale/angular-locale_ebu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ebu", + "localeID": "ebu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ee-gh.js b/src/ngLocale/angular-locale_ee-gh.js index c866c316d85e..d89ffc657f41 100644 --- a/src/ngLocale/angular-locale_ee-gh.js +++ b/src/ngLocale/angular-locale_ee-gh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ee-gh", + "localeID": "ee_GH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ee-tg.js b/src/ngLocale/angular-locale_ee-tg.js index 8894b2f7f4f9..4fbc3775985f 100644 --- a/src/ngLocale/angular-locale_ee-tg.js +++ b/src/ngLocale/angular-locale_ee-tg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ee-tg", + "localeID": "ee_TG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ee.js b/src/ngLocale/angular-locale_ee.js index aee6d1b51b3e..dbd4d3c5b737 100644 --- a/src/ngLocale/angular-locale_ee.js +++ b/src/ngLocale/angular-locale_ee.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ee", + "localeID": "ee", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_el-cy.js b/src/ngLocale/angular-locale_el-cy.js index 355620dcdcfc..41b44d3e7cb3 100644 --- a/src/ngLocale/angular-locale_el-cy.js +++ b/src/ngLocale/angular-locale_el-cy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "el-cy", + "localeID": "el_CY", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_el-gr.js b/src/ngLocale/angular-locale_el-gr.js index 6933bf33f5f4..775d3fb79a06 100644 --- a/src/ngLocale/angular-locale_el-gr.js +++ b/src/ngLocale/angular-locale_el-gr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "el-gr", + "localeID": "el_GR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_el.js b/src/ngLocale/angular-locale_el.js index 9e657d987c7c..0cfa77572888 100644 --- a/src/ngLocale/angular-locale_el.js +++ b/src/ngLocale/angular-locale_el.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "el", + "localeID": "el", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-001.js b/src/ngLocale/angular-locale_en-001.js index 58af1f6f1b45..568867f6db7f 100644 --- a/src/ngLocale/angular-locale_en-001.js +++ b/src/ngLocale/angular-locale_en-001.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-001", + "localeID": "en_001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-150.js b/src/ngLocale/angular-locale_en-150.js index a478280ccd0a..0768eb85a274 100644 --- a/src/ngLocale/angular-locale_en-150.js +++ b/src/ngLocale/angular-locale_en-150.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-150", + "localeID": "en_150", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ag.js b/src/ngLocale/angular-locale_en-ag.js index b898f319b884..756d6f220dcd 100644 --- a/src/ngLocale/angular-locale_en-ag.js +++ b/src/ngLocale/angular-locale_en-ag.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ag", + "localeID": "en_AG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ai.js b/src/ngLocale/angular-locale_en-ai.js index 2855239fa38c..b400589adb28 100644 --- a/src/ngLocale/angular-locale_en-ai.js +++ b/src/ngLocale/angular-locale_en-ai.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ai", + "localeID": "en_AI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-as.js b/src/ngLocale/angular-locale_en-as.js index 087080996ad7..4939e01165c0 100644 --- a/src/ngLocale/angular-locale_en-as.js +++ b/src/ngLocale/angular-locale_en-as.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-as", + "localeID": "en_AS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-au.js b/src/ngLocale/angular-locale_en-au.js index 613be46980cf..7414041a3203 100644 --- a/src/ngLocale/angular-locale_en-au.js +++ b/src/ngLocale/angular-locale_en-au.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-au", + "localeID": "en_AU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-bb.js b/src/ngLocale/angular-locale_en-bb.js index c64f323f2975..c1fba3a43b9e 100644 --- a/src/ngLocale/angular-locale_en-bb.js +++ b/src/ngLocale/angular-locale_en-bb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-bb", + "localeID": "en_BB", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-be.js b/src/ngLocale/angular-locale_en-be.js index 52b76b450204..6fe24e0c6379 100644 --- a/src/ngLocale/angular-locale_en-be.js +++ b/src/ngLocale/angular-locale_en-be.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-be", + "localeID": "en_BE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-bm.js b/src/ngLocale/angular-locale_en-bm.js index a184706fdf19..67d117f1130a 100644 --- a/src/ngLocale/angular-locale_en-bm.js +++ b/src/ngLocale/angular-locale_en-bm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-bm", + "localeID": "en_BM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-bs.js b/src/ngLocale/angular-locale_en-bs.js index 56a916500798..c60b8d8758e5 100644 --- a/src/ngLocale/angular-locale_en-bs.js +++ b/src/ngLocale/angular-locale_en-bs.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-bs", + "localeID": "en_BS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-bw.js b/src/ngLocale/angular-locale_en-bw.js index 79e95d5b7311..6ecf7889bd20 100644 --- a/src/ngLocale/angular-locale_en-bw.js +++ b/src/ngLocale/angular-locale_en-bw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-bw", + "localeID": "en_BW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-bz.js b/src/ngLocale/angular-locale_en-bz.js index 768eaa06410f..3f7379cee6ab 100644 --- a/src/ngLocale/angular-locale_en-bz.js +++ b/src/ngLocale/angular-locale_en-bz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-bz", + "localeID": "en_BZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ca.js b/src/ngLocale/angular-locale_en-ca.js index d520c5f905d3..0904d0d8b285 100644 --- a/src/ngLocale/angular-locale_en-ca.js +++ b/src/ngLocale/angular-locale_en-ca.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ca", + "localeID": "en_CA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-cc.js b/src/ngLocale/angular-locale_en-cc.js index 8b7e739ff5be..f83123e7ad86 100644 --- a/src/ngLocale/angular-locale_en-cc.js +++ b/src/ngLocale/angular-locale_en-cc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-cc", + "localeID": "en_CC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ck.js b/src/ngLocale/angular-locale_en-ck.js index 4078f732411e..e374bab82b1e 100644 --- a/src/ngLocale/angular-locale_en-ck.js +++ b/src/ngLocale/angular-locale_en-ck.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ck", + "localeID": "en_CK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-cm.js b/src/ngLocale/angular-locale_en-cm.js index 140ea8c46bbc..775d9986c269 100644 --- a/src/ngLocale/angular-locale_en-cm.js +++ b/src/ngLocale/angular-locale_en-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-cm", + "localeID": "en_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-cx.js b/src/ngLocale/angular-locale_en-cx.js index 788e8549d5b9..6b98f3ce32fc 100644 --- a/src/ngLocale/angular-locale_en-cx.js +++ b/src/ngLocale/angular-locale_en-cx.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-cx", + "localeID": "en_CX", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-dg.js b/src/ngLocale/angular-locale_en-dg.js index 19728fd4b812..336471065350 100644 --- a/src/ngLocale/angular-locale_en-dg.js +++ b/src/ngLocale/angular-locale_en-dg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-dg", + "localeID": "en_DG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-dm.js b/src/ngLocale/angular-locale_en-dm.js index 9651e021693b..9461a315dd55 100644 --- a/src/ngLocale/angular-locale_en-dm.js +++ b/src/ngLocale/angular-locale_en-dm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-dm", + "localeID": "en_DM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-er.js b/src/ngLocale/angular-locale_en-er.js index f2f81de0752b..4a1296c52770 100644 --- a/src/ngLocale/angular-locale_en-er.js +++ b/src/ngLocale/angular-locale_en-er.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-er", + "localeID": "en_ER", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-fj.js b/src/ngLocale/angular-locale_en-fj.js index e046ad69005c..5bf426bc9c66 100644 --- a/src/ngLocale/angular-locale_en-fj.js +++ b/src/ngLocale/angular-locale_en-fj.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-fj", + "localeID": "en_FJ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-fk.js b/src/ngLocale/angular-locale_en-fk.js index 263c553d950d..ffb381812f2d 100644 --- a/src/ngLocale/angular-locale_en-fk.js +++ b/src/ngLocale/angular-locale_en-fk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-fk", + "localeID": "en_FK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-fm.js b/src/ngLocale/angular-locale_en-fm.js index 666949e5cb1f..33e0e81b9208 100644 --- a/src/ngLocale/angular-locale_en-fm.js +++ b/src/ngLocale/angular-locale_en-fm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-fm", + "localeID": "en_FM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gb.js b/src/ngLocale/angular-locale_en-gb.js index 7c3c76a3bf84..a88c82048661 100644 --- a/src/ngLocale/angular-locale_en-gb.js +++ b/src/ngLocale/angular-locale_en-gb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gb", + "localeID": "en_GB", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gd.js b/src/ngLocale/angular-locale_en-gd.js index 0d32b77f1fb7..1afb4c746ee5 100644 --- a/src/ngLocale/angular-locale_en-gd.js +++ b/src/ngLocale/angular-locale_en-gd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gd", + "localeID": "en_GD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gg.js b/src/ngLocale/angular-locale_en-gg.js index 11f8e65f4e28..973cbc5beae7 100644 --- a/src/ngLocale/angular-locale_en-gg.js +++ b/src/ngLocale/angular-locale_en-gg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gg", + "localeID": "en_GG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gh.js b/src/ngLocale/angular-locale_en-gh.js index 0566373952f6..cc33fe0f17a5 100644 --- a/src/ngLocale/angular-locale_en-gh.js +++ b/src/ngLocale/angular-locale_en-gh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gh", + "localeID": "en_GH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gi.js b/src/ngLocale/angular-locale_en-gi.js index 026978f868ac..97c4823289e8 100644 --- a/src/ngLocale/angular-locale_en-gi.js +++ b/src/ngLocale/angular-locale_en-gi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gi", + "localeID": "en_GI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gm.js b/src/ngLocale/angular-locale_en-gm.js index b05b4bb737e0..e982df38382f 100644 --- a/src/ngLocale/angular-locale_en-gm.js +++ b/src/ngLocale/angular-locale_en-gm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gm", + "localeID": "en_GM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gu.js b/src/ngLocale/angular-locale_en-gu.js index b43a512a04a1..d11933bd3870 100644 --- a/src/ngLocale/angular-locale_en-gu.js +++ b/src/ngLocale/angular-locale_en-gu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gu", + "localeID": "en_GU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-gy.js b/src/ngLocale/angular-locale_en-gy.js index 5e0f4c6f54bc..d3d543e89f5f 100644 --- a/src/ngLocale/angular-locale_en-gy.js +++ b/src/ngLocale/angular-locale_en-gy.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-gy", + "localeID": "en_GY", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-hk.js b/src/ngLocale/angular-locale_en-hk.js index a05d2b66fa9f..f366c1a905b2 100644 --- a/src/ngLocale/angular-locale_en-hk.js +++ b/src/ngLocale/angular-locale_en-hk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-hk", + "localeID": "en_HK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ie.js b/src/ngLocale/angular-locale_en-ie.js index 8aa3124a5e1a..9c79dd4cab06 100644 --- a/src/ngLocale/angular-locale_en-ie.js +++ b/src/ngLocale/angular-locale_en-ie.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ie", + "localeID": "en_IE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-im.js b/src/ngLocale/angular-locale_en-im.js index e1c974d74ed2..c81583b40a30 100644 --- a/src/ngLocale/angular-locale_en-im.js +++ b/src/ngLocale/angular-locale_en-im.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-im", + "localeID": "en_IM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-in.js b/src/ngLocale/angular-locale_en-in.js index 70a4901f5555..617f6bf5f7e7 100644 --- a/src/ngLocale/angular-locale_en-in.js +++ b/src/ngLocale/angular-locale_en-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-in", + "localeID": "en_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-io.js b/src/ngLocale/angular-locale_en-io.js index 1be5126fb0f4..692527958553 100644 --- a/src/ngLocale/angular-locale_en-io.js +++ b/src/ngLocale/angular-locale_en-io.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-io", + "localeID": "en_IO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-iso.js b/src/ngLocale/angular-locale_en-iso.js index 789baeeec307..a29709301f61 100644 --- a/src/ngLocale/angular-locale_en-iso.js +++ b/src/ngLocale/angular-locale_en-iso.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-iso", + "localeID": "en_ISO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-je.js b/src/ngLocale/angular-locale_en-je.js index 2c671f90504c..1186c5c7dfd8 100644 --- a/src/ngLocale/angular-locale_en-je.js +++ b/src/ngLocale/angular-locale_en-je.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-je", + "localeID": "en_JE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-jm.js b/src/ngLocale/angular-locale_en-jm.js index 4872f208b98d..174002b6396b 100644 --- a/src/ngLocale/angular-locale_en-jm.js +++ b/src/ngLocale/angular-locale_en-jm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-jm", + "localeID": "en_JM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ke.js b/src/ngLocale/angular-locale_en-ke.js index 1484cf088c6b..3af38b412214 100644 --- a/src/ngLocale/angular-locale_en-ke.js +++ b/src/ngLocale/angular-locale_en-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ke", + "localeID": "en_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ki.js b/src/ngLocale/angular-locale_en-ki.js index 7a66024ea248..2fe2ef3920be 100644 --- a/src/ngLocale/angular-locale_en-ki.js +++ b/src/ngLocale/angular-locale_en-ki.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ki", + "localeID": "en_KI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-kn.js b/src/ngLocale/angular-locale_en-kn.js index d4f9604bc46e..09101c94ab5b 100644 --- a/src/ngLocale/angular-locale_en-kn.js +++ b/src/ngLocale/angular-locale_en-kn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-kn", + "localeID": "en_KN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ky.js b/src/ngLocale/angular-locale_en-ky.js index 520d36f18073..1d7d454575f7 100644 --- a/src/ngLocale/angular-locale_en-ky.js +++ b/src/ngLocale/angular-locale_en-ky.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ky", + "localeID": "en_KY", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-lc.js b/src/ngLocale/angular-locale_en-lc.js index eb6e7b3ca34c..5a82bd01a71b 100644 --- a/src/ngLocale/angular-locale_en-lc.js +++ b/src/ngLocale/angular-locale_en-lc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-lc", + "localeID": "en_LC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-lr.js b/src/ngLocale/angular-locale_en-lr.js index e81d83be322c..ade846bebccf 100644 --- a/src/ngLocale/angular-locale_en-lr.js +++ b/src/ngLocale/angular-locale_en-lr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-lr", + "localeID": "en_LR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ls.js b/src/ngLocale/angular-locale_en-ls.js index 47444e9c1306..cd8e927bdee8 100644 --- a/src/ngLocale/angular-locale_en-ls.js +++ b/src/ngLocale/angular-locale_en-ls.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ls", + "localeID": "en_LS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mg.js b/src/ngLocale/angular-locale_en-mg.js index d185b6d1d182..23a37d87b299 100644 --- a/src/ngLocale/angular-locale_en-mg.js +++ b/src/ngLocale/angular-locale_en-mg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mg", + "localeID": "en_MG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mh.js b/src/ngLocale/angular-locale_en-mh.js index f53d501ab141..8c068a5ca19b 100644 --- a/src/ngLocale/angular-locale_en-mh.js +++ b/src/ngLocale/angular-locale_en-mh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mh", + "localeID": "en_MH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mo.js b/src/ngLocale/angular-locale_en-mo.js index a32f530dccb7..d24c8b3f365d 100644 --- a/src/ngLocale/angular-locale_en-mo.js +++ b/src/ngLocale/angular-locale_en-mo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mo", + "localeID": "en_MO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mp.js b/src/ngLocale/angular-locale_en-mp.js index d60eaefb4e1a..ff8b6b49b1cc 100644 --- a/src/ngLocale/angular-locale_en-mp.js +++ b/src/ngLocale/angular-locale_en-mp.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mp", + "localeID": "en_MP", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ms.js b/src/ngLocale/angular-locale_en-ms.js index d249fa78bcd6..7c44e8fdb01c 100644 --- a/src/ngLocale/angular-locale_en-ms.js +++ b/src/ngLocale/angular-locale_en-ms.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ms", + "localeID": "en_MS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mt.js b/src/ngLocale/angular-locale_en-mt.js index bc70e7490e11..63c4255d457c 100644 --- a/src/ngLocale/angular-locale_en-mt.js +++ b/src/ngLocale/angular-locale_en-mt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mt", + "localeID": "en_MT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mu.js b/src/ngLocale/angular-locale_en-mu.js index c19fe0272eea..5ededb9bb0bc 100644 --- a/src/ngLocale/angular-locale_en-mu.js +++ b/src/ngLocale/angular-locale_en-mu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mu", + "localeID": "en_MU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-mw.js b/src/ngLocale/angular-locale_en-mw.js index 536a4f92e68a..ed6801258b41 100644 --- a/src/ngLocale/angular-locale_en-mw.js +++ b/src/ngLocale/angular-locale_en-mw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-mw", + "localeID": "en_MW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-my.js b/src/ngLocale/angular-locale_en-my.js index 10b0c556ba5b..ae1315b8d6de 100644 --- a/src/ngLocale/angular-locale_en-my.js +++ b/src/ngLocale/angular-locale_en-my.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-my", + "localeID": "en_MY", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-na.js b/src/ngLocale/angular-locale_en-na.js index 5d176de299cb..d7240f38f7d3 100644 --- a/src/ngLocale/angular-locale_en-na.js +++ b/src/ngLocale/angular-locale_en-na.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-na", + "localeID": "en_NA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-nf.js b/src/ngLocale/angular-locale_en-nf.js index cef712fc9f14..d23850700207 100644 --- a/src/ngLocale/angular-locale_en-nf.js +++ b/src/ngLocale/angular-locale_en-nf.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-nf", + "localeID": "en_NF", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ng.js b/src/ngLocale/angular-locale_en-ng.js index f487f70dc639..a6e01a58df4a 100644 --- a/src/ngLocale/angular-locale_en-ng.js +++ b/src/ngLocale/angular-locale_en-ng.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ng", + "localeID": "en_NG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-nr.js b/src/ngLocale/angular-locale_en-nr.js index cd4a4e7f7dfb..43ccef72dd1f 100644 --- a/src/ngLocale/angular-locale_en-nr.js +++ b/src/ngLocale/angular-locale_en-nr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-nr", + "localeID": "en_NR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-nu.js b/src/ngLocale/angular-locale_en-nu.js index 587504dee9ee..cf38b2961036 100644 --- a/src/ngLocale/angular-locale_en-nu.js +++ b/src/ngLocale/angular-locale_en-nu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-nu", + "localeID": "en_NU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-nz.js b/src/ngLocale/angular-locale_en-nz.js index 23aab49bf5d1..ed8882d5004b 100644 --- a/src/ngLocale/angular-locale_en-nz.js +++ b/src/ngLocale/angular-locale_en-nz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-nz", + "localeID": "en_NZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-pg.js b/src/ngLocale/angular-locale_en-pg.js index 3054dc24a5cf..2d1f0f2cf08d 100644 --- a/src/ngLocale/angular-locale_en-pg.js +++ b/src/ngLocale/angular-locale_en-pg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-pg", + "localeID": "en_PG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ph.js b/src/ngLocale/angular-locale_en-ph.js index 4bb74af12bd8..d0de5aa22e4e 100644 --- a/src/ngLocale/angular-locale_en-ph.js +++ b/src/ngLocale/angular-locale_en-ph.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ph", + "localeID": "en_PH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-pk.js b/src/ngLocale/angular-locale_en-pk.js index 7521d1749f85..8b29fb59b092 100644 --- a/src/ngLocale/angular-locale_en-pk.js +++ b/src/ngLocale/angular-locale_en-pk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-pk", + "localeID": "en_PK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-pn.js b/src/ngLocale/angular-locale_en-pn.js index 594868d90d0a..ea48b8c96607 100644 --- a/src/ngLocale/angular-locale_en-pn.js +++ b/src/ngLocale/angular-locale_en-pn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-pn", + "localeID": "en_PN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-pr.js b/src/ngLocale/angular-locale_en-pr.js index 532f6f2cf857..0afbf6777773 100644 --- a/src/ngLocale/angular-locale_en-pr.js +++ b/src/ngLocale/angular-locale_en-pr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-pr", + "localeID": "en_PR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-pw.js b/src/ngLocale/angular-locale_en-pw.js index 4b7cd8ec9f34..b8ae5913e1e8 100644 --- a/src/ngLocale/angular-locale_en-pw.js +++ b/src/ngLocale/angular-locale_en-pw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-pw", + "localeID": "en_PW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-rw.js b/src/ngLocale/angular-locale_en-rw.js index 447e2c4e0075..f61e44f8cd92 100644 --- a/src/ngLocale/angular-locale_en-rw.js +++ b/src/ngLocale/angular-locale_en-rw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-rw", + "localeID": "en_RW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sb.js b/src/ngLocale/angular-locale_en-sb.js index c77cbfd4d8c0..86078c711987 100644 --- a/src/ngLocale/angular-locale_en-sb.js +++ b/src/ngLocale/angular-locale_en-sb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sb", + "localeID": "en_SB", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sc.js b/src/ngLocale/angular-locale_en-sc.js index 7614581e8ef7..2a568dcef43c 100644 --- a/src/ngLocale/angular-locale_en-sc.js +++ b/src/ngLocale/angular-locale_en-sc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sc", + "localeID": "en_SC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sd.js b/src/ngLocale/angular-locale_en-sd.js index d4ad1293eb40..661129d3a0b9 100644 --- a/src/ngLocale/angular-locale_en-sd.js +++ b/src/ngLocale/angular-locale_en-sd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sd", + "localeID": "en_SD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sg.js b/src/ngLocale/angular-locale_en-sg.js index 62001d1fc28c..d27b9b29158e 100644 --- a/src/ngLocale/angular-locale_en-sg.js +++ b/src/ngLocale/angular-locale_en-sg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sg", + "localeID": "en_SG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sh.js b/src/ngLocale/angular-locale_en-sh.js index 641521b12271..14d81f99be94 100644 --- a/src/ngLocale/angular-locale_en-sh.js +++ b/src/ngLocale/angular-locale_en-sh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sh", + "localeID": "en_SH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sl.js b/src/ngLocale/angular-locale_en-sl.js index 2f6238b2e40d..752d458c75f7 100644 --- a/src/ngLocale/angular-locale_en-sl.js +++ b/src/ngLocale/angular-locale_en-sl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sl", + "localeID": "en_SL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ss.js b/src/ngLocale/angular-locale_en-ss.js index c83ef5c4b72a..691fa9594bd3 100644 --- a/src/ngLocale/angular-locale_en-ss.js +++ b/src/ngLocale/angular-locale_en-ss.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ss", + "localeID": "en_SS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sx.js b/src/ngLocale/angular-locale_en-sx.js index b5bc05ddf062..dc3610a48bdd 100644 --- a/src/ngLocale/angular-locale_en-sx.js +++ b/src/ngLocale/angular-locale_en-sx.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sx", + "localeID": "en_SX", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-sz.js b/src/ngLocale/angular-locale_en-sz.js index d1d2162c5fdf..502409cf0de9 100644 --- a/src/ngLocale/angular-locale_en-sz.js +++ b/src/ngLocale/angular-locale_en-sz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-sz", + "localeID": "en_SZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-tc.js b/src/ngLocale/angular-locale_en-tc.js index afe27ce80960..f9a8a67b6895 100644 --- a/src/ngLocale/angular-locale_en-tc.js +++ b/src/ngLocale/angular-locale_en-tc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-tc", + "localeID": "en_TC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-tk.js b/src/ngLocale/angular-locale_en-tk.js index e68270712b2d..0180bdd5d52c 100644 --- a/src/ngLocale/angular-locale_en-tk.js +++ b/src/ngLocale/angular-locale_en-tk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-tk", + "localeID": "en_TK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-to.js b/src/ngLocale/angular-locale_en-to.js index 370bf68fe1f6..34890a7ac283 100644 --- a/src/ngLocale/angular-locale_en-to.js +++ b/src/ngLocale/angular-locale_en-to.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-to", + "localeID": "en_TO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-tt.js b/src/ngLocale/angular-locale_en-tt.js index 71df1e5fbaec..f26144044706 100644 --- a/src/ngLocale/angular-locale_en-tt.js +++ b/src/ngLocale/angular-locale_en-tt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-tt", + "localeID": "en_TT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-tv.js b/src/ngLocale/angular-locale_en-tv.js index 73ac8f10c29c..9726bbe8f754 100644 --- a/src/ngLocale/angular-locale_en-tv.js +++ b/src/ngLocale/angular-locale_en-tv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-tv", + "localeID": "en_TV", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-tz.js b/src/ngLocale/angular-locale_en-tz.js index 41f749e6d208..d6ae6b97461f 100644 --- a/src/ngLocale/angular-locale_en-tz.js +++ b/src/ngLocale/angular-locale_en-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-tz", + "localeID": "en_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ug.js b/src/ngLocale/angular-locale_en-ug.js index 7ed86b1f061c..da8b4338ff95 100644 --- a/src/ngLocale/angular-locale_en-ug.js +++ b/src/ngLocale/angular-locale_en-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ug", + "localeID": "en_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-um.js b/src/ngLocale/angular-locale_en-um.js index 654673c23228..5c47c05e8c1a 100644 --- a/src/ngLocale/angular-locale_en-um.js +++ b/src/ngLocale/angular-locale_en-um.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-um", + "localeID": "en_UM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-us.js b/src/ngLocale/angular-locale_en-us.js index a6111650a45d..515632a64e12 100644 --- a/src/ngLocale/angular-locale_en-us.js +++ b/src/ngLocale/angular-locale_en-us.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-us", + "localeID": "en_US", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-vc.js b/src/ngLocale/angular-locale_en-vc.js index 99bc8b97a993..3e1d2f6c0a38 100644 --- a/src/ngLocale/angular-locale_en-vc.js +++ b/src/ngLocale/angular-locale_en-vc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-vc", + "localeID": "en_VC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-vg.js b/src/ngLocale/angular-locale_en-vg.js index b7da3ce4ea15..64fc92047b51 100644 --- a/src/ngLocale/angular-locale_en-vg.js +++ b/src/ngLocale/angular-locale_en-vg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-vg", + "localeID": "en_VG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-vi.js b/src/ngLocale/angular-locale_en-vi.js index b871c2858e68..47ecf3ab14a5 100644 --- a/src/ngLocale/angular-locale_en-vi.js +++ b/src/ngLocale/angular-locale_en-vi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-vi", + "localeID": "en_VI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-vu.js b/src/ngLocale/angular-locale_en-vu.js index e7ea96a1f93c..61bf223e605b 100644 --- a/src/ngLocale/angular-locale_en-vu.js +++ b/src/ngLocale/angular-locale_en-vu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-vu", + "localeID": "en_VU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-ws.js b/src/ngLocale/angular-locale_en-ws.js index 1f39ff65a36a..89b3a130505a 100644 --- a/src/ngLocale/angular-locale_en-ws.js +++ b/src/ngLocale/angular-locale_en-ws.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-ws", + "localeID": "en_WS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-za.js b/src/ngLocale/angular-locale_en-za.js index 2803dae84d55..65ce4d7b43b9 100644 --- a/src/ngLocale/angular-locale_en-za.js +++ b/src/ngLocale/angular-locale_en-za.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-za", + "localeID": "en_ZA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-zm.js b/src/ngLocale/angular-locale_en-zm.js index 350fb719f381..0b5d5fc54e83 100644 --- a/src/ngLocale/angular-locale_en-zm.js +++ b/src/ngLocale/angular-locale_en-zm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-zm", + "localeID": "en_ZM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en-zw.js b/src/ngLocale/angular-locale_en-zw.js index 6f9923f7ec35..2f81e30eedd1 100644 --- a/src/ngLocale/angular-locale_en-zw.js +++ b/src/ngLocale/angular-locale_en-zw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en-zw", + "localeID": "en_ZW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_en.js b/src/ngLocale/angular-locale_en.js index 44ce04a48ae2..f794bab8bd20 100644 --- a/src/ngLocale/angular-locale_en.js +++ b/src/ngLocale/angular-locale_en.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "en", + "localeID": "en", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_eo-001.js b/src/ngLocale/angular-locale_eo-001.js index 5a910e4f98bb..53fb0f7d5620 100644 --- a/src/ngLocale/angular-locale_eo-001.js +++ b/src/ngLocale/angular-locale_eo-001.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "eo-001", + "localeID": "eo_001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_eo.js b/src/ngLocale/angular-locale_eo.js index 57f73853b07e..7ca8adea15ce 100644 --- a/src/ngLocale/angular-locale_eo.js +++ b/src/ngLocale/angular-locale_eo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "eo", + "localeID": "eo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-419.js b/src/ngLocale/angular-locale_es-419.js index 56b28ad1bf04..ed247e73263a 100644 --- a/src/ngLocale/angular-locale_es-419.js +++ b/src/ngLocale/angular-locale_es-419.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-419", + "localeID": "es_419", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ar.js b/src/ngLocale/angular-locale_es-ar.js index b8c4f73d3990..55b28c9eb5ef 100644 --- a/src/ngLocale/angular-locale_es-ar.js +++ b/src/ngLocale/angular-locale_es-ar.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ar", + "localeID": "es_AR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-bo.js b/src/ngLocale/angular-locale_es-bo.js index c31f01ea363c..27bb9516278f 100644 --- a/src/ngLocale/angular-locale_es-bo.js +++ b/src/ngLocale/angular-locale_es-bo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-bo", + "localeID": "es_BO", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-cl.js b/src/ngLocale/angular-locale_es-cl.js index 13c8e0a87119..f253f6f0afb3 100644 --- a/src/ngLocale/angular-locale_es-cl.js +++ b/src/ngLocale/angular-locale_es-cl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-cl", + "localeID": "es_CL", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-co.js b/src/ngLocale/angular-locale_es-co.js index a37e6f3b8bdf..740be11a040f 100644 --- a/src/ngLocale/angular-locale_es-co.js +++ b/src/ngLocale/angular-locale_es-co.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-co", + "localeID": "es_CO", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-cr.js b/src/ngLocale/angular-locale_es-cr.js index 3921419e77cb..2e0920b92f8e 100644 --- a/src/ngLocale/angular-locale_es-cr.js +++ b/src/ngLocale/angular-locale_es-cr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-cr", + "localeID": "es_CR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-cu.js b/src/ngLocale/angular-locale_es-cu.js index db9de3d8dad7..c2323a9ac43d 100644 --- a/src/ngLocale/angular-locale_es-cu.js +++ b/src/ngLocale/angular-locale_es-cu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-cu", + "localeID": "es_CU", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-do.js b/src/ngLocale/angular-locale_es-do.js index f6e60118a728..d2a79854a242 100644 --- a/src/ngLocale/angular-locale_es-do.js +++ b/src/ngLocale/angular-locale_es-do.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-do", + "localeID": "es_DO", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ea.js b/src/ngLocale/angular-locale_es-ea.js index 64ce7ba75769..59fb667d97f9 100644 --- a/src/ngLocale/angular-locale_es-ea.js +++ b/src/ngLocale/angular-locale_es-ea.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ea", + "localeID": "es_EA", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ec.js b/src/ngLocale/angular-locale_es-ec.js index 21119ae1dce9..065905195715 100644 --- a/src/ngLocale/angular-locale_es-ec.js +++ b/src/ngLocale/angular-locale_es-ec.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ec", + "localeID": "es_EC", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-es.js b/src/ngLocale/angular-locale_es-es.js index 6049f010f729..454bbd669fb4 100644 --- a/src/ngLocale/angular-locale_es-es.js +++ b/src/ngLocale/angular-locale_es-es.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-es", + "localeID": "es_ES", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-gq.js b/src/ngLocale/angular-locale_es-gq.js index 6d8d8f50e31e..a21f08a4d1af 100644 --- a/src/ngLocale/angular-locale_es-gq.js +++ b/src/ngLocale/angular-locale_es-gq.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-gq", + "localeID": "es_GQ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-gt.js b/src/ngLocale/angular-locale_es-gt.js index 7c5452704c0f..69e65c16ec33 100644 --- a/src/ngLocale/angular-locale_es-gt.js +++ b/src/ngLocale/angular-locale_es-gt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-gt", + "localeID": "es_GT", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-hn.js b/src/ngLocale/angular-locale_es-hn.js index c2f2443ff432..6b88ccc52852 100644 --- a/src/ngLocale/angular-locale_es-hn.js +++ b/src/ngLocale/angular-locale_es-hn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-hn", + "localeID": "es_HN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ic.js b/src/ngLocale/angular-locale_es-ic.js index 4a53381089d4..0b665f08842b 100644 --- a/src/ngLocale/angular-locale_es-ic.js +++ b/src/ngLocale/angular-locale_es-ic.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ic", + "localeID": "es_IC", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-mx.js b/src/ngLocale/angular-locale_es-mx.js index 810f13502f33..508c94952d52 100644 --- a/src/ngLocale/angular-locale_es-mx.js +++ b/src/ngLocale/angular-locale_es-mx.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-mx", + "localeID": "es_MX", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ni.js b/src/ngLocale/angular-locale_es-ni.js index 9432fa3aab24..2e05e6c9a557 100644 --- a/src/ngLocale/angular-locale_es-ni.js +++ b/src/ngLocale/angular-locale_es-ni.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ni", + "localeID": "es_NI", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-pa.js b/src/ngLocale/angular-locale_es-pa.js index ea67481e04ad..d633bdda400e 100644 --- a/src/ngLocale/angular-locale_es-pa.js +++ b/src/ngLocale/angular-locale_es-pa.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-pa", + "localeID": "es_PA", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-pe.js b/src/ngLocale/angular-locale_es-pe.js index 59f032de1621..bf10aba0d992 100644 --- a/src/ngLocale/angular-locale_es-pe.js +++ b/src/ngLocale/angular-locale_es-pe.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-pe", + "localeID": "es_PE", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ph.js b/src/ngLocale/angular-locale_es-ph.js index 65b6e7d0e412..23ad6dc342c4 100644 --- a/src/ngLocale/angular-locale_es-ph.js +++ b/src/ngLocale/angular-locale_es-ph.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ph", + "localeID": "es_PH", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-pr.js b/src/ngLocale/angular-locale_es-pr.js index ec2c89d7a4ec..bb4f7b894854 100644 --- a/src/ngLocale/angular-locale_es-pr.js +++ b/src/ngLocale/angular-locale_es-pr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-pr", + "localeID": "es_PR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-py.js b/src/ngLocale/angular-locale_es-py.js index de7d25cfa7c7..4f93e8429c5a 100644 --- a/src/ngLocale/angular-locale_es-py.js +++ b/src/ngLocale/angular-locale_es-py.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-py", + "localeID": "es_PY", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-sv.js b/src/ngLocale/angular-locale_es-sv.js index 7878a6e6c1a4..c9140566bbf7 100644 --- a/src/ngLocale/angular-locale_es-sv.js +++ b/src/ngLocale/angular-locale_es-sv.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-sv", + "localeID": "es_SV", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-us.js b/src/ngLocale/angular-locale_es-us.js index 76243e82e679..8af9e0abc2a2 100644 --- a/src/ngLocale/angular-locale_es-us.js +++ b/src/ngLocale/angular-locale_es-us.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-us", + "localeID": "es_US", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-uy.js b/src/ngLocale/angular-locale_es-uy.js index d3ed1f336054..0aea1b77d19e 100644 --- a/src/ngLocale/angular-locale_es-uy.js +++ b/src/ngLocale/angular-locale_es-uy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-uy", + "localeID": "es_UY", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es-ve.js b/src/ngLocale/angular-locale_es-ve.js index e30a4806fb8b..f53ce5f69eb2 100644 --- a/src/ngLocale/angular-locale_es-ve.js +++ b/src/ngLocale/angular-locale_es-ve.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es-ve", + "localeID": "es_VE", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_es.js b/src/ngLocale/angular-locale_es.js index 88656217e110..07c4d2abcec4 100644 --- a/src/ngLocale/angular-locale_es.js +++ b/src/ngLocale/angular-locale_es.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "es", + "localeID": "es", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_et-ee.js b/src/ngLocale/angular-locale_et-ee.js index 0f583b624751..d891b9dfb5bb 100644 --- a/src/ngLocale/angular-locale_et-ee.js +++ b/src/ngLocale/angular-locale_et-ee.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "et-ee", + "localeID": "et_EE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_et.js b/src/ngLocale/angular-locale_et.js index a0889c4b2113..3c545d804b78 100644 --- a/src/ngLocale/angular-locale_et.js +++ b/src/ngLocale/angular-locale_et.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "et", + "localeID": "et", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_eu-es.js b/src/ngLocale/angular-locale_eu-es.js index 31ce4b24d758..1f27109eaa36 100644 --- a/src/ngLocale/angular-locale_eu-es.js +++ b/src/ngLocale/angular-locale_eu-es.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "eu-es", + "localeID": "eu_ES", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_eu.js b/src/ngLocale/angular-locale_eu.js index de7e9a8d112b..c1ea375c095d 100644 --- a/src/ngLocale/angular-locale_eu.js +++ b/src/ngLocale/angular-locale_eu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "eu", + "localeID": "eu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ewo-cm.js b/src/ngLocale/angular-locale_ewo-cm.js index fc146d2bbb21..70c6fef0430c 100644 --- a/src/ngLocale/angular-locale_ewo-cm.js +++ b/src/ngLocale/angular-locale_ewo-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ewo-cm", + "localeID": "ewo_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ewo.js b/src/ngLocale/angular-locale_ewo.js index c58b6874bd75..f036bd887762 100644 --- a/src/ngLocale/angular-locale_ewo.js +++ b/src/ngLocale/angular-locale_ewo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ewo", + "localeID": "ewo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fa-af.js b/src/ngLocale/angular-locale_fa-af.js index fb79f835be16..a231b3c5881e 100644 --- a/src/ngLocale/angular-locale_fa-af.js +++ b/src/ngLocale/angular-locale_fa-af.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fa-af", + "localeID": "fa_AF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fa-ir.js b/src/ngLocale/angular-locale_fa-ir.js index 09762735d6fb..01d13ad9318c 100644 --- a/src/ngLocale/angular-locale_fa-ir.js +++ b/src/ngLocale/angular-locale_fa-ir.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fa-ir", + "localeID": "fa_IR", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fa.js b/src/ngLocale/angular-locale_fa.js index 14137793eb3b..bc2762387141 100644 --- a/src/ngLocale/angular-locale_fa.js +++ b/src/ngLocale/angular-locale_fa.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fa", + "localeID": "fa", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ff-cm.js b/src/ngLocale/angular-locale_ff-cm.js index 0b6b149613e6..fc81b6e0b70f 100644 --- a/src/ngLocale/angular-locale_ff-cm.js +++ b/src/ngLocale/angular-locale_ff-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ff-cm", + "localeID": "ff_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ff-gn.js b/src/ngLocale/angular-locale_ff-gn.js index a4aba55a554d..f88c63e70c18 100644 --- a/src/ngLocale/angular-locale_ff-gn.js +++ b/src/ngLocale/angular-locale_ff-gn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ff-gn", + "localeID": "ff_GN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ff-mr.js b/src/ngLocale/angular-locale_ff-mr.js index 6bf4ca949c8b..841316e2dfe0 100644 --- a/src/ngLocale/angular-locale_ff-mr.js +++ b/src/ngLocale/angular-locale_ff-mr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ff-mr", + "localeID": "ff_MR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ff-sn.js b/src/ngLocale/angular-locale_ff-sn.js index 9ef723a44384..de6849ea83c2 100644 --- a/src/ngLocale/angular-locale_ff-sn.js +++ b/src/ngLocale/angular-locale_ff-sn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ff-sn", + "localeID": "ff_SN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ff.js b/src/ngLocale/angular-locale_ff.js index e9c190b5811a..da4684f766d0 100644 --- a/src/ngLocale/angular-locale_ff.js +++ b/src/ngLocale/angular-locale_ff.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ff", + "localeID": "ff", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fi-fi.js b/src/ngLocale/angular-locale_fi-fi.js index 4b1b3a1166ae..c3e6a46c5c5e 100644 --- a/src/ngLocale/angular-locale_fi-fi.js +++ b/src/ngLocale/angular-locale_fi-fi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fi-fi", + "localeID": "fi_FI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fi.js b/src/ngLocale/angular-locale_fi.js index 6dce6d182cc4..f10f66e4ccfc 100644 --- a/src/ngLocale/angular-locale_fi.js +++ b/src/ngLocale/angular-locale_fi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fi", + "localeID": "fi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fil-ph.js b/src/ngLocale/angular-locale_fil-ph.js index 5db5b3fe7380..2d222db09cfb 100644 --- a/src/ngLocale/angular-locale_fil-ph.js +++ b/src/ngLocale/angular-locale_fil-ph.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fil-ph", + "localeID": "fil_PH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fil.js b/src/ngLocale/angular-locale_fil.js index ccaf1b728c3a..b7e3074e9b92 100644 --- a/src/ngLocale/angular-locale_fil.js +++ b/src/ngLocale/angular-locale_fil.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fil", + "localeID": "fil", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fo-fo.js b/src/ngLocale/angular-locale_fo-fo.js index d78eb41ad4ce..ef42c7ab71c8 100644 --- a/src/ngLocale/angular-locale_fo-fo.js +++ b/src/ngLocale/angular-locale_fo-fo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fo-fo", + "localeID": "fo_FO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fo.js b/src/ngLocale/angular-locale_fo.js index 9848c047d68d..9d83231e7496 100644 --- a/src/ngLocale/angular-locale_fo.js +++ b/src/ngLocale/angular-locale_fo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fo", + "localeID": "fo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-be.js b/src/ngLocale/angular-locale_fr-be.js index 5987be7d5fb8..a8d99bbbe7e8 100644 --- a/src/ngLocale/angular-locale_fr-be.js +++ b/src/ngLocale/angular-locale_fr-be.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-be", + "localeID": "fr_BE", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-bf.js b/src/ngLocale/angular-locale_fr-bf.js index 8103fe715cf5..6e336975c5ff 100644 --- a/src/ngLocale/angular-locale_fr-bf.js +++ b/src/ngLocale/angular-locale_fr-bf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-bf", + "localeID": "fr_BF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-bi.js b/src/ngLocale/angular-locale_fr-bi.js index 55feea98d854..52bb8fc5a287 100644 --- a/src/ngLocale/angular-locale_fr-bi.js +++ b/src/ngLocale/angular-locale_fr-bi.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-bi", + "localeID": "fr_BI", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-bj.js b/src/ngLocale/angular-locale_fr-bj.js index 021f64c5b856..19ee68637531 100644 --- a/src/ngLocale/angular-locale_fr-bj.js +++ b/src/ngLocale/angular-locale_fr-bj.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-bj", + "localeID": "fr_BJ", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-bl.js b/src/ngLocale/angular-locale_fr-bl.js index aa3f191e1e31..415d9caa6486 100644 --- a/src/ngLocale/angular-locale_fr-bl.js +++ b/src/ngLocale/angular-locale_fr-bl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-bl", + "localeID": "fr_BL", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ca.js b/src/ngLocale/angular-locale_fr-ca.js index 4f67be324e9b..4f1327d89aaa 100644 --- a/src/ngLocale/angular-locale_fr-ca.js +++ b/src/ngLocale/angular-locale_fr-ca.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ca", + "localeID": "fr_CA", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-cd.js b/src/ngLocale/angular-locale_fr-cd.js index 365bb24e7bd4..5a920e657986 100644 --- a/src/ngLocale/angular-locale_fr-cd.js +++ b/src/ngLocale/angular-locale_fr-cd.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-cd", + "localeID": "fr_CD", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-cf.js b/src/ngLocale/angular-locale_fr-cf.js index 42a0d3037422..e76a32b8f0f2 100644 --- a/src/ngLocale/angular-locale_fr-cf.js +++ b/src/ngLocale/angular-locale_fr-cf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-cf", + "localeID": "fr_CF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-cg.js b/src/ngLocale/angular-locale_fr-cg.js index 94d974025157..3b4ee67820e2 100644 --- a/src/ngLocale/angular-locale_fr-cg.js +++ b/src/ngLocale/angular-locale_fr-cg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-cg", + "localeID": "fr_CG", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ch.js b/src/ngLocale/angular-locale_fr-ch.js index 760aa7179f2a..df05fe9bd693 100644 --- a/src/ngLocale/angular-locale_fr-ch.js +++ b/src/ngLocale/angular-locale_fr-ch.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ch", + "localeID": "fr_CH", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ci.js b/src/ngLocale/angular-locale_fr-ci.js index f0b365beae74..032a6ff77b7c 100644 --- a/src/ngLocale/angular-locale_fr-ci.js +++ b/src/ngLocale/angular-locale_fr-ci.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ci", + "localeID": "fr_CI", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-cm.js b/src/ngLocale/angular-locale_fr-cm.js index 36cb07816c96..74d3d1b9af1e 100644 --- a/src/ngLocale/angular-locale_fr-cm.js +++ b/src/ngLocale/angular-locale_fr-cm.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-cm", + "localeID": "fr_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-dj.js b/src/ngLocale/angular-locale_fr-dj.js index 4b89de489087..471c1e7cdc6f 100644 --- a/src/ngLocale/angular-locale_fr-dj.js +++ b/src/ngLocale/angular-locale_fr-dj.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-dj", + "localeID": "fr_DJ", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-dz.js b/src/ngLocale/angular-locale_fr-dz.js index 36c55e8f3627..c7f4956c0f10 100644 --- a/src/ngLocale/angular-locale_fr-dz.js +++ b/src/ngLocale/angular-locale_fr-dz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-dz", + "localeID": "fr_DZ", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-fr.js b/src/ngLocale/angular-locale_fr-fr.js index 745a956bb3f8..b910e03f1a58 100644 --- a/src/ngLocale/angular-locale_fr-fr.js +++ b/src/ngLocale/angular-locale_fr-fr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-fr", + "localeID": "fr_FR", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ga.js b/src/ngLocale/angular-locale_fr-ga.js index e40838a72ea7..1d4a5a755ba1 100644 --- a/src/ngLocale/angular-locale_fr-ga.js +++ b/src/ngLocale/angular-locale_fr-ga.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ga", + "localeID": "fr_GA", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-gf.js b/src/ngLocale/angular-locale_fr-gf.js index 293c4615f4e6..d1dc69b0ffd1 100644 --- a/src/ngLocale/angular-locale_fr-gf.js +++ b/src/ngLocale/angular-locale_fr-gf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-gf", + "localeID": "fr_GF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-gn.js b/src/ngLocale/angular-locale_fr-gn.js index 754a4bed273c..062e0f4b0b39 100644 --- a/src/ngLocale/angular-locale_fr-gn.js +++ b/src/ngLocale/angular-locale_fr-gn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-gn", + "localeID": "fr_GN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-gp.js b/src/ngLocale/angular-locale_fr-gp.js index 2225a96f0d5a..d0a9b0691261 100644 --- a/src/ngLocale/angular-locale_fr-gp.js +++ b/src/ngLocale/angular-locale_fr-gp.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-gp", + "localeID": "fr_GP", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-gq.js b/src/ngLocale/angular-locale_fr-gq.js index e08042e70eb3..47a105a91517 100644 --- a/src/ngLocale/angular-locale_fr-gq.js +++ b/src/ngLocale/angular-locale_fr-gq.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-gq", + "localeID": "fr_GQ", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ht.js b/src/ngLocale/angular-locale_fr-ht.js index 46c3c880d7ef..7b3de3deeb2f 100644 --- a/src/ngLocale/angular-locale_fr-ht.js +++ b/src/ngLocale/angular-locale_fr-ht.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ht", + "localeID": "fr_HT", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-km.js b/src/ngLocale/angular-locale_fr-km.js index f070814fd3a3..3e2880eacba7 100644 --- a/src/ngLocale/angular-locale_fr-km.js +++ b/src/ngLocale/angular-locale_fr-km.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-km", + "localeID": "fr_KM", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-lu.js b/src/ngLocale/angular-locale_fr-lu.js index 0e9706f0b459..7dd9fa4b3f94 100644 --- a/src/ngLocale/angular-locale_fr-lu.js +++ b/src/ngLocale/angular-locale_fr-lu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-lu", + "localeID": "fr_LU", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ma.js b/src/ngLocale/angular-locale_fr-ma.js index c6a49495943f..bc69704103f3 100644 --- a/src/ngLocale/angular-locale_fr-ma.js +++ b/src/ngLocale/angular-locale_fr-ma.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ma", + "localeID": "fr_MA", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mc.js b/src/ngLocale/angular-locale_fr-mc.js index 3ccac7c90cc5..db81a80a0426 100644 --- a/src/ngLocale/angular-locale_fr-mc.js +++ b/src/ngLocale/angular-locale_fr-mc.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mc", + "localeID": "fr_MC", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mf.js b/src/ngLocale/angular-locale_fr-mf.js index 2e8bad8eab24..ff06ac7ad126 100644 --- a/src/ngLocale/angular-locale_fr-mf.js +++ b/src/ngLocale/angular-locale_fr-mf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mf", + "localeID": "fr_MF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mg.js b/src/ngLocale/angular-locale_fr-mg.js index 917809152f26..1c40fe5b479e 100644 --- a/src/ngLocale/angular-locale_fr-mg.js +++ b/src/ngLocale/angular-locale_fr-mg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mg", + "localeID": "fr_MG", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ml.js b/src/ngLocale/angular-locale_fr-ml.js index 6286a6a691b9..1cead4c4f7c0 100644 --- a/src/ngLocale/angular-locale_fr-ml.js +++ b/src/ngLocale/angular-locale_fr-ml.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ml", + "localeID": "fr_ML", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mq.js b/src/ngLocale/angular-locale_fr-mq.js index d52eb5aab098..120873b3351f 100644 --- a/src/ngLocale/angular-locale_fr-mq.js +++ b/src/ngLocale/angular-locale_fr-mq.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mq", + "localeID": "fr_MQ", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mr.js b/src/ngLocale/angular-locale_fr-mr.js index 2239bb6282d8..e2077a6dfe84 100644 --- a/src/ngLocale/angular-locale_fr-mr.js +++ b/src/ngLocale/angular-locale_fr-mr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mr", + "localeID": "fr_MR", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-mu.js b/src/ngLocale/angular-locale_fr-mu.js index 2f7098cb175c..49d3369d8448 100644 --- a/src/ngLocale/angular-locale_fr-mu.js +++ b/src/ngLocale/angular-locale_fr-mu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-mu", + "localeID": "fr_MU", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-nc.js b/src/ngLocale/angular-locale_fr-nc.js index 2e8a78a23fc5..c24e82a6e3f3 100644 --- a/src/ngLocale/angular-locale_fr-nc.js +++ b/src/ngLocale/angular-locale_fr-nc.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-nc", + "localeID": "fr_NC", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-ne.js b/src/ngLocale/angular-locale_fr-ne.js index 58b5be2718f8..0b605a24cf6b 100644 --- a/src/ngLocale/angular-locale_fr-ne.js +++ b/src/ngLocale/angular-locale_fr-ne.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-ne", + "localeID": "fr_NE", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-pf.js b/src/ngLocale/angular-locale_fr-pf.js index 31dbe931a3cb..6ff4bcc033f1 100644 --- a/src/ngLocale/angular-locale_fr-pf.js +++ b/src/ngLocale/angular-locale_fr-pf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-pf", + "localeID": "fr_PF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-pm.js b/src/ngLocale/angular-locale_fr-pm.js index 1eed8394ff32..4b715dcb44cf 100644 --- a/src/ngLocale/angular-locale_fr-pm.js +++ b/src/ngLocale/angular-locale_fr-pm.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-pm", + "localeID": "fr_PM", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-re.js b/src/ngLocale/angular-locale_fr-re.js index e41f73f5e1f4..d25850cba9f2 100644 --- a/src/ngLocale/angular-locale_fr-re.js +++ b/src/ngLocale/angular-locale_fr-re.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-re", + "localeID": "fr_RE", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-rw.js b/src/ngLocale/angular-locale_fr-rw.js index 51efd851aef1..1ecd2a07e015 100644 --- a/src/ngLocale/angular-locale_fr-rw.js +++ b/src/ngLocale/angular-locale_fr-rw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-rw", + "localeID": "fr_RW", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-sc.js b/src/ngLocale/angular-locale_fr-sc.js index 8d111d75ed05..4cbc7148b7bb 100644 --- a/src/ngLocale/angular-locale_fr-sc.js +++ b/src/ngLocale/angular-locale_fr-sc.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-sc", + "localeID": "fr_SC", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-sn.js b/src/ngLocale/angular-locale_fr-sn.js index 8e16b66772c4..89ba8ede153b 100644 --- a/src/ngLocale/angular-locale_fr-sn.js +++ b/src/ngLocale/angular-locale_fr-sn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-sn", + "localeID": "fr_SN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-sy.js b/src/ngLocale/angular-locale_fr-sy.js index 6d17286d81ef..d5517079dc51 100644 --- a/src/ngLocale/angular-locale_fr-sy.js +++ b/src/ngLocale/angular-locale_fr-sy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-sy", + "localeID": "fr_SY", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-td.js b/src/ngLocale/angular-locale_fr-td.js index 5894a24ea1d0..09753eaaf099 100644 --- a/src/ngLocale/angular-locale_fr-td.js +++ b/src/ngLocale/angular-locale_fr-td.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-td", + "localeID": "fr_TD", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-tg.js b/src/ngLocale/angular-locale_fr-tg.js index 4465cba188c6..ae0123f81fc2 100644 --- a/src/ngLocale/angular-locale_fr-tg.js +++ b/src/ngLocale/angular-locale_fr-tg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-tg", + "localeID": "fr_TG", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-tn.js b/src/ngLocale/angular-locale_fr-tn.js index 8734028c9b7a..0dec1f1b8b00 100644 --- a/src/ngLocale/angular-locale_fr-tn.js +++ b/src/ngLocale/angular-locale_fr-tn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-tn", + "localeID": "fr_TN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-vu.js b/src/ngLocale/angular-locale_fr-vu.js index 4c1115f1202e..6553fe4bcf4e 100644 --- a/src/ngLocale/angular-locale_fr-vu.js +++ b/src/ngLocale/angular-locale_fr-vu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-vu", + "localeID": "fr_VU", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-wf.js b/src/ngLocale/angular-locale_fr-wf.js index 0be4ba0d71b4..3b4d376b4450 100644 --- a/src/ngLocale/angular-locale_fr-wf.js +++ b/src/ngLocale/angular-locale_fr-wf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-wf", + "localeID": "fr_WF", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr-yt.js b/src/ngLocale/angular-locale_fr-yt.js index 71ba7730a3dd..e4651cd403fa 100644 --- a/src/ngLocale/angular-locale_fr-yt.js +++ b/src/ngLocale/angular-locale_fr-yt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr-yt", + "localeID": "fr_YT", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fr.js b/src/ngLocale/angular-locale_fr.js index 3a8210755535..895c9ac40535 100644 --- a/src/ngLocale/angular-locale_fr.js +++ b/src/ngLocale/angular-locale_fr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "fr", + "localeID": "fr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fur-it.js b/src/ngLocale/angular-locale_fur-it.js index 50c2beb6a9be..4b5472cc0bf6 100644 --- a/src/ngLocale/angular-locale_fur-it.js +++ b/src/ngLocale/angular-locale_fur-it.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fur-it", + "localeID": "fur_IT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fur.js b/src/ngLocale/angular-locale_fur.js index 021c790940fe..f25f4409ceb3 100644 --- a/src/ngLocale/angular-locale_fur.js +++ b/src/ngLocale/angular-locale_fur.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fur", + "localeID": "fur", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fy-nl.js b/src/ngLocale/angular-locale_fy-nl.js index acec2bb8bba4..8b6214ee723a 100644 --- a/src/ngLocale/angular-locale_fy-nl.js +++ b/src/ngLocale/angular-locale_fy-nl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fy-nl", + "localeID": "fy_NL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_fy.js b/src/ngLocale/angular-locale_fy.js index fdd59af50ff5..06169fc5c8db 100644 --- a/src/ngLocale/angular-locale_fy.js +++ b/src/ngLocale/angular-locale_fy.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "fy", + "localeID": "fy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ga-ie.js b/src/ngLocale/angular-locale_ga-ie.js index 6fddcc218ede..13b91b7d2cc6 100644 --- a/src/ngLocale/angular-locale_ga-ie.js +++ b/src/ngLocale/angular-locale_ga-ie.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ga-ie", + "localeID": "ga_IE", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n >= 3 && n <= 6) { return PLURAL_CATEGORY.FEW; } if (n >= 7 && n <= 10) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ga.js b/src/ngLocale/angular-locale_ga.js index 874903572ece..6aa830ada73f 100644 --- a/src/ngLocale/angular-locale_ga.js +++ b/src/ngLocale/angular-locale_ga.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ga", + "localeID": "ga", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 2) { return PLURAL_CATEGORY.TWO; } if (n >= 3 && n <= 6) { return PLURAL_CATEGORY.FEW; } if (n >= 7 && n <= 10) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gd-gb.js b/src/ngLocale/angular-locale_gd-gb.js index 110a04a31fad..732788c04f49 100644 --- a/src/ngLocale/angular-locale_gd-gb.js +++ b/src/ngLocale/angular-locale_gd-gb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gd-gb", + "localeID": "gd_GB", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gd.js b/src/ngLocale/angular-locale_gd.js index c699c252fcc8..e44083e77a12 100644 --- a/src/ngLocale/angular-locale_gd.js +++ b/src/ngLocale/angular-locale_gd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gd", + "localeID": "gd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gl-es.js b/src/ngLocale/angular-locale_gl-es.js index 4369b4054123..9c68a404e9a1 100644 --- a/src/ngLocale/angular-locale_gl-es.js +++ b/src/ngLocale/angular-locale_gl-es.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gl-es", + "localeID": "gl_ES", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gl.js b/src/ngLocale/angular-locale_gl.js index 5adb5ffd0979..966ef01c6fce 100644 --- a/src/ngLocale/angular-locale_gl.js +++ b/src/ngLocale/angular-locale_gl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gl", + "localeID": "gl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gsw-ch.js b/src/ngLocale/angular-locale_gsw-ch.js index b102ac3abe5a..bc494c8159cb 100644 --- a/src/ngLocale/angular-locale_gsw-ch.js +++ b/src/ngLocale/angular-locale_gsw-ch.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gsw-ch", + "localeID": "gsw_CH", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gsw-fr.js b/src/ngLocale/angular-locale_gsw-fr.js index d7cdad767f87..253ae2940e7c 100644 --- a/src/ngLocale/angular-locale_gsw-fr.js +++ b/src/ngLocale/angular-locale_gsw-fr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gsw-fr", + "localeID": "gsw_FR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gsw-li.js b/src/ngLocale/angular-locale_gsw-li.js index 4ecc5d239aa5..615fafd0e35f 100644 --- a/src/ngLocale/angular-locale_gsw-li.js +++ b/src/ngLocale/angular-locale_gsw-li.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gsw-li", + "localeID": "gsw_LI", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gsw.js b/src/ngLocale/angular-locale_gsw.js index 80587f8c3e81..13c517def80b 100644 --- a/src/ngLocale/angular-locale_gsw.js +++ b/src/ngLocale/angular-locale_gsw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gsw", + "localeID": "gsw", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gu-in.js b/src/ngLocale/angular-locale_gu-in.js index 9f9573bb848f..ecc7a448cbcd 100644 --- a/src/ngLocale/angular-locale_gu-in.js +++ b/src/ngLocale/angular-locale_gu-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gu-in", + "localeID": "gu_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gu.js b/src/ngLocale/angular-locale_gu.js index 4040e619ae3f..3804acd3988d 100644 --- a/src/ngLocale/angular-locale_gu.js +++ b/src/ngLocale/angular-locale_gu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "gu", + "localeID": "gu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_guz-ke.js b/src/ngLocale/angular-locale_guz-ke.js index 229a20b45d16..67ed8c6a420b 100644 --- a/src/ngLocale/angular-locale_guz-ke.js +++ b/src/ngLocale/angular-locale_guz-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "guz-ke", + "localeID": "guz_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_guz.js b/src/ngLocale/angular-locale_guz.js index 29bb03b85379..8c2b1e699599 100644 --- a/src/ngLocale/angular-locale_guz.js +++ b/src/ngLocale/angular-locale_guz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "guz", + "localeID": "guz", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gv-im.js b/src/ngLocale/angular-locale_gv-im.js index e93bb558b5cc..9c38f7aa4e45 100644 --- a/src/ngLocale/angular-locale_gv-im.js +++ b/src/ngLocale/angular-locale_gv-im.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gv-im", + "localeID": "gv_IM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_gv.js b/src/ngLocale/angular-locale_gv.js index 64ca090d2628..fefc641f3976 100644 --- a/src/ngLocale/angular-locale_gv.js +++ b/src/ngLocale/angular-locale_gv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "gv", + "localeID": "gv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ha-latn-gh.js b/src/ngLocale/angular-locale_ha-latn-gh.js index 25339eed2b2b..61edae72f96e 100644 --- a/src/ngLocale/angular-locale_ha-latn-gh.js +++ b/src/ngLocale/angular-locale_ha-latn-gh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ha-latn-gh", + "localeID": "ha_Latn_GH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ha-latn-ne.js b/src/ngLocale/angular-locale_ha-latn-ne.js index 64e90e84bfe0..05debb8a1fda 100644 --- a/src/ngLocale/angular-locale_ha-latn-ne.js +++ b/src/ngLocale/angular-locale_ha-latn-ne.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ha-latn-ne", + "localeID": "ha_Latn_NE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ha-latn-ng.js b/src/ngLocale/angular-locale_ha-latn-ng.js index d78f8c6e1a9b..283970893b10 100644 --- a/src/ngLocale/angular-locale_ha-latn-ng.js +++ b/src/ngLocale/angular-locale_ha-latn-ng.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ha-latn-ng", + "localeID": "ha_Latn_NG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ha-latn.js b/src/ngLocale/angular-locale_ha-latn.js index 13140e67f431..92666a20869e 100644 --- a/src/ngLocale/angular-locale_ha-latn.js +++ b/src/ngLocale/angular-locale_ha-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ha-latn", + "localeID": "ha_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ha.js b/src/ngLocale/angular-locale_ha.js index 92c83e3f521b..1550a07093c8 100644 --- a/src/ngLocale/angular-locale_ha.js +++ b/src/ngLocale/angular-locale_ha.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ha", + "localeID": "ha", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_haw-us.js b/src/ngLocale/angular-locale_haw-us.js index 8712114661e7..2dab59b50c3e 100644 --- a/src/ngLocale/angular-locale_haw-us.js +++ b/src/ngLocale/angular-locale_haw-us.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "haw-us", + "localeID": "haw_US", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_haw.js b/src/ngLocale/angular-locale_haw.js index 4191fa741863..c1cd77e66954 100644 --- a/src/ngLocale/angular-locale_haw.js +++ b/src/ngLocale/angular-locale_haw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "haw", + "localeID": "haw", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_he-il.js b/src/ngLocale/angular-locale_he-il.js index 471c2a2f4efa..df764adb0601 100644 --- a/src/ngLocale/angular-locale_he-il.js +++ b/src/ngLocale/angular-locale_he-il.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "he-il", + "localeID": "he_IL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_he.js b/src/ngLocale/angular-locale_he.js index 6e4d1063423e..9978dc778599 100644 --- a/src/ngLocale/angular-locale_he.js +++ b/src/ngLocale/angular-locale_he.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "he", + "localeID": "he", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hi-in.js b/src/ngLocale/angular-locale_hi-in.js index 291d8a52a2ba..f6117003b90f 100644 --- a/src/ngLocale/angular-locale_hi-in.js +++ b/src/ngLocale/angular-locale_hi-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hi-in", + "localeID": "hi_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hi.js b/src/ngLocale/angular-locale_hi.js index 69e07f3b19d7..246678f13819 100644 --- a/src/ngLocale/angular-locale_hi.js +++ b/src/ngLocale/angular-locale_hi.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hi", + "localeID": "hi", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hr-ba.js b/src/ngLocale/angular-locale_hr-ba.js index 501147dbb842..a01047fd3681 100644 --- a/src/ngLocale/angular-locale_hr-ba.js +++ b/src/ngLocale/angular-locale_hr-ba.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "hr-ba", + "localeID": "hr_BA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hr-hr.js b/src/ngLocale/angular-locale_hr-hr.js index 6a3a3ff3e1a5..31f0059a0d17 100644 --- a/src/ngLocale/angular-locale_hr-hr.js +++ b/src/ngLocale/angular-locale_hr-hr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "hr-hr", + "localeID": "hr_HR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hr.js b/src/ngLocale/angular-locale_hr.js index f52a8635939f..d56c77064bad 100644 --- a/src/ngLocale/angular-locale_hr.js +++ b/src/ngLocale/angular-locale_hr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "hr", + "localeID": "hr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hsb-de.js b/src/ngLocale/angular-locale_hsb-de.js index 1c119bb343dc..5e5ff8dd85e1 100644 --- a/src/ngLocale/angular-locale_hsb-de.js +++ b/src/ngLocale/angular-locale_hsb-de.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "hsb-de", + "localeID": "hsb_DE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hsb.js b/src/ngLocale/angular-locale_hsb.js index fd82f0e463a1..513d701038af 100644 --- a/src/ngLocale/angular-locale_hsb.js +++ b/src/ngLocale/angular-locale_hsb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "hsb", + "localeID": "hsb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hu-hu.js b/src/ngLocale/angular-locale_hu-hu.js index eff9442469a0..9d0bd6da96fc 100644 --- a/src/ngLocale/angular-locale_hu-hu.js +++ b/src/ngLocale/angular-locale_hu-hu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hu-hu", + "localeID": "hu_HU", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hu.js b/src/ngLocale/angular-locale_hu.js index 97db7db6f1d7..6fe1ec1e5a84 100644 --- a/src/ngLocale/angular-locale_hu.js +++ b/src/ngLocale/angular-locale_hu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hu", + "localeID": "hu", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hy-am.js b/src/ngLocale/angular-locale_hy-am.js index f7e9371cc6ea..a11f55a7c53d 100644 --- a/src/ngLocale/angular-locale_hy-am.js +++ b/src/ngLocale/angular-locale_hy-am.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hy-am", + "localeID": "hy_AM", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_hy.js b/src/ngLocale/angular-locale_hy.js index 5f8682e8c584..8e493394bc27 100644 --- a/src/ngLocale/angular-locale_hy.js +++ b/src/ngLocale/angular-locale_hy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "hy", + "localeID": "hy", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || i == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_id-id.js b/src/ngLocale/angular-locale_id-id.js index d58841e81092..021ede1712a0 100644 --- a/src/ngLocale/angular-locale_id-id.js +++ b/src/ngLocale/angular-locale_id-id.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "id-id", + "localeID": "id_ID", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_id.js b/src/ngLocale/angular-locale_id.js index da8bc785e8b1..09a2c51b8c1b 100644 --- a/src/ngLocale/angular-locale_id.js +++ b/src/ngLocale/angular-locale_id.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "id", + "localeID": "id", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ig-ng.js b/src/ngLocale/angular-locale_ig-ng.js index 758d791dc1af..c6691f9f2f0e 100644 --- a/src/ngLocale/angular-locale_ig-ng.js +++ b/src/ngLocale/angular-locale_ig-ng.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ig-ng", + "localeID": "ig_NG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ig.js b/src/ngLocale/angular-locale_ig.js index e126c753df9a..040376f64cef 100644 --- a/src/ngLocale/angular-locale_ig.js +++ b/src/ngLocale/angular-locale_ig.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ig", + "localeID": "ig", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ii-cn.js b/src/ngLocale/angular-locale_ii-cn.js index 9ff0ede251f2..a4d6c3b965f0 100644 --- a/src/ngLocale/angular-locale_ii-cn.js +++ b/src/ngLocale/angular-locale_ii-cn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ii-cn", + "localeID": "ii_CN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ii.js b/src/ngLocale/angular-locale_ii.js index b9440d60f093..3929d885ecc0 100644 --- a/src/ngLocale/angular-locale_ii.js +++ b/src/ngLocale/angular-locale_ii.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ii", + "localeID": "ii", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_in.js b/src/ngLocale/angular-locale_in.js index ff0eefedb9dc..44bb3c9d5803 100644 --- a/src/ngLocale/angular-locale_in.js +++ b/src/ngLocale/angular-locale_in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "in", + "localeID": "in", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_is-is.js b/src/ngLocale/angular-locale_is-is.js index cb7c17dc0ee7..a8266d1e811f 100644 --- a/src/ngLocale/angular-locale_is-is.js +++ b/src/ngLocale/angular-locale_is-is.js @@ -150,6 +150,7 @@ $provide.value("$locale", { ] }, "id": "is-is", + "localeID": "is_IS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (wt.t == 0 && i % 10 == 1 && i % 100 != 11 || wt.t != 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_is.js b/src/ngLocale/angular-locale_is.js index 01187493cf13..8a602c2f71ef 100644 --- a/src/ngLocale/angular-locale_is.js +++ b/src/ngLocale/angular-locale_is.js @@ -150,6 +150,7 @@ $provide.value("$locale", { ] }, "id": "is", + "localeID": "is", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); var wt = getWT(vf.v, vf.f); if (wt.t == 0 && i % 10 == 1 && i % 100 != 11 || wt.t != 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_it-ch.js b/src/ngLocale/angular-locale_it-ch.js index 415f16a5c68c..7c82748731d6 100644 --- a/src/ngLocale/angular-locale_it-ch.js +++ b/src/ngLocale/angular-locale_it-ch.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "it-ch", + "localeID": "it_CH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_it-it.js b/src/ngLocale/angular-locale_it-it.js index 0b9386992ee8..cc68abeaeeed 100644 --- a/src/ngLocale/angular-locale_it-it.js +++ b/src/ngLocale/angular-locale_it-it.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "it-it", + "localeID": "it_IT", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_it-sm.js b/src/ngLocale/angular-locale_it-sm.js index a56bacfde995..49fe7c19ce4a 100644 --- a/src/ngLocale/angular-locale_it-sm.js +++ b/src/ngLocale/angular-locale_it-sm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "it-sm", + "localeID": "it_SM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_it.js b/src/ngLocale/angular-locale_it.js index 6b1a78e5d837..9b6a662ff89e 100644 --- a/src/ngLocale/angular-locale_it.js +++ b/src/ngLocale/angular-locale_it.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "it", + "localeID": "it", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_iw.js b/src/ngLocale/angular-locale_iw.js index a6de60881886..d4e5cfa4dd46 100644 --- a/src/ngLocale/angular-locale_iw.js +++ b/src/ngLocale/angular-locale_iw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "iw", + "localeID": "iw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i == 2 && vf.v == 0) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && (n < 0 || n > 10) && n % 10 == 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ja-jp.js b/src/ngLocale/angular-locale_ja-jp.js index f93a71587e72..daaede0dbc5c 100644 --- a/src/ngLocale/angular-locale_ja-jp.js +++ b/src/ngLocale/angular-locale_ja-jp.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ja-jp", + "localeID": "ja_JP", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ja.js b/src/ngLocale/angular-locale_ja.js index 3e9306ccf0b5..f528314eca7e 100644 --- a/src/ngLocale/angular-locale_ja.js +++ b/src/ngLocale/angular-locale_ja.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ja", + "localeID": "ja", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_jgo-cm.js b/src/ngLocale/angular-locale_jgo-cm.js index c8269e7b2d39..0365a68587e1 100644 --- a/src/ngLocale/angular-locale_jgo-cm.js +++ b/src/ngLocale/angular-locale_jgo-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "jgo-cm", + "localeID": "jgo_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_jgo.js b/src/ngLocale/angular-locale_jgo.js index c079125bd918..a50b9b83864c 100644 --- a/src/ngLocale/angular-locale_jgo.js +++ b/src/ngLocale/angular-locale_jgo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "jgo", + "localeID": "jgo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_jmc-tz.js b/src/ngLocale/angular-locale_jmc-tz.js index 61ebbcadb89c..d8b9a397b91d 100644 --- a/src/ngLocale/angular-locale_jmc-tz.js +++ b/src/ngLocale/angular-locale_jmc-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "jmc-tz", + "localeID": "jmc_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_jmc.js b/src/ngLocale/angular-locale_jmc.js index 877638e75abc..f081fdddb2ce 100644 --- a/src/ngLocale/angular-locale_jmc.js +++ b/src/ngLocale/angular-locale_jmc.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "jmc", + "localeID": "jmc", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ka-ge.js b/src/ngLocale/angular-locale_ka-ge.js index afe52b88c3e5..24894affac08 100644 --- a/src/ngLocale/angular-locale_ka-ge.js +++ b/src/ngLocale/angular-locale_ka-ge.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ka-ge", + "localeID": "ka_GE", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ka.js b/src/ngLocale/angular-locale_ka.js index 70a4755a737b..f70ade8ef323 100644 --- a/src/ngLocale/angular-locale_ka.js +++ b/src/ngLocale/angular-locale_ka.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ka", + "localeID": "ka", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kab-dz.js b/src/ngLocale/angular-locale_kab-dz.js index ff98f4d4d5d8..feb24360458f 100644 --- a/src/ngLocale/angular-locale_kab-dz.js +++ b/src/ngLocale/angular-locale_kab-dz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kab-dz", + "localeID": "kab_DZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kab.js b/src/ngLocale/angular-locale_kab.js index f478973486e9..0c07e7250943 100644 --- a/src/ngLocale/angular-locale_kab.js +++ b/src/ngLocale/angular-locale_kab.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kab", + "localeID": "kab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kam-ke.js b/src/ngLocale/angular-locale_kam-ke.js index 340fc96654fa..4b8adc5fe38c 100644 --- a/src/ngLocale/angular-locale_kam-ke.js +++ b/src/ngLocale/angular-locale_kam-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kam-ke", + "localeID": "kam_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kam.js b/src/ngLocale/angular-locale_kam.js index ee358a3f70b7..ad16d674cda8 100644 --- a/src/ngLocale/angular-locale_kam.js +++ b/src/ngLocale/angular-locale_kam.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kam", + "localeID": "kam", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kde-tz.js b/src/ngLocale/angular-locale_kde-tz.js index 547dd5270989..2a0de5b281d2 100644 --- a/src/ngLocale/angular-locale_kde-tz.js +++ b/src/ngLocale/angular-locale_kde-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kde-tz", + "localeID": "kde_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kde.js b/src/ngLocale/angular-locale_kde.js index 9694c677b387..184e0308686d 100644 --- a/src/ngLocale/angular-locale_kde.js +++ b/src/ngLocale/angular-locale_kde.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kde", + "localeID": "kde", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kea-cv.js b/src/ngLocale/angular-locale_kea-cv.js index c1a7e50571ec..e396a697913e 100644 --- a/src/ngLocale/angular-locale_kea-cv.js +++ b/src/ngLocale/angular-locale_kea-cv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kea-cv", + "localeID": "kea_CV", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kea.js b/src/ngLocale/angular-locale_kea.js index 014c08d6cae4..7bd3cab369e3 100644 --- a/src/ngLocale/angular-locale_kea.js +++ b/src/ngLocale/angular-locale_kea.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kea", + "localeID": "kea", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_khq-ml.js b/src/ngLocale/angular-locale_khq-ml.js index d5eea1aa3345..5ec71480ef5b 100644 --- a/src/ngLocale/angular-locale_khq-ml.js +++ b/src/ngLocale/angular-locale_khq-ml.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "khq-ml", + "localeID": "khq_ML", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_khq.js b/src/ngLocale/angular-locale_khq.js index 5527f1334366..8035933cf0e8 100644 --- a/src/ngLocale/angular-locale_khq.js +++ b/src/ngLocale/angular-locale_khq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "khq", + "localeID": "khq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ki-ke.js b/src/ngLocale/angular-locale_ki-ke.js index 5f3bcf34ca6e..b04976372ac8 100644 --- a/src/ngLocale/angular-locale_ki-ke.js +++ b/src/ngLocale/angular-locale_ki-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ki-ke", + "localeID": "ki_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ki.js b/src/ngLocale/angular-locale_ki.js index f4bf20d18ee5..f79a4579a341 100644 --- a/src/ngLocale/angular-locale_ki.js +++ b/src/ngLocale/angular-locale_ki.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ki", + "localeID": "ki", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kk-cyrl-kz.js b/src/ngLocale/angular-locale_kk-cyrl-kz.js index 7dd9bb33b928..20738da11499 100644 --- a/src/ngLocale/angular-locale_kk-cyrl-kz.js +++ b/src/ngLocale/angular-locale_kk-cyrl-kz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "kk-cyrl-kz", + "localeID": "kk_Cyrl_KZ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kk-cyrl.js b/src/ngLocale/angular-locale_kk-cyrl.js index 6524301d195b..f716820c3554 100644 --- a/src/ngLocale/angular-locale_kk-cyrl.js +++ b/src/ngLocale/angular-locale_kk-cyrl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "kk-cyrl", + "localeID": "kk_Cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kk.js b/src/ngLocale/angular-locale_kk.js index efe0291cf0c3..976d500fb857 100644 --- a/src/ngLocale/angular-locale_kk.js +++ b/src/ngLocale/angular-locale_kk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "kk", + "localeID": "kk", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kkj-cm.js b/src/ngLocale/angular-locale_kkj-cm.js index 5ba8a1fc76b6..9247110a61e6 100644 --- a/src/ngLocale/angular-locale_kkj-cm.js +++ b/src/ngLocale/angular-locale_kkj-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kkj-cm", + "localeID": "kkj_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kkj.js b/src/ngLocale/angular-locale_kkj.js index 56b7cecb45c2..247c7aaf3eda 100644 --- a/src/ngLocale/angular-locale_kkj.js +++ b/src/ngLocale/angular-locale_kkj.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kkj", + "localeID": "kkj", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kl-gl.js b/src/ngLocale/angular-locale_kl-gl.js index eb4b01f78b2d..bf1c87e8d0c3 100644 --- a/src/ngLocale/angular-locale_kl-gl.js +++ b/src/ngLocale/angular-locale_kl-gl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kl-gl", + "localeID": "kl_GL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kl.js b/src/ngLocale/angular-locale_kl.js index 7d1ecdf440d8..96d128597d35 100644 --- a/src/ngLocale/angular-locale_kl.js +++ b/src/ngLocale/angular-locale_kl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kl", + "localeID": "kl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kln-ke.js b/src/ngLocale/angular-locale_kln-ke.js index 74f99554f07c..69f61796f6d1 100644 --- a/src/ngLocale/angular-locale_kln-ke.js +++ b/src/ngLocale/angular-locale_kln-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kln-ke", + "localeID": "kln_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kln.js b/src/ngLocale/angular-locale_kln.js index 072e28ffa1a5..5362331d5526 100644 --- a/src/ngLocale/angular-locale_kln.js +++ b/src/ngLocale/angular-locale_kln.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kln", + "localeID": "kln", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_km-kh.js b/src/ngLocale/angular-locale_km-kh.js index d84691c31c84..185486b0c352 100644 --- a/src/ngLocale/angular-locale_km-kh.js +++ b/src/ngLocale/angular-locale_km-kh.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "km-kh", + "localeID": "km_KH", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_km.js b/src/ngLocale/angular-locale_km.js index ddeb756e2201..42914542b3d4 100644 --- a/src/ngLocale/angular-locale_km.js +++ b/src/ngLocale/angular-locale_km.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "km", + "localeID": "km", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kn-in.js b/src/ngLocale/angular-locale_kn-in.js index 740b6b811d04..372dd63545f6 100644 --- a/src/ngLocale/angular-locale_kn-in.js +++ b/src/ngLocale/angular-locale_kn-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "kn-in", + "localeID": "kn_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kn.js b/src/ngLocale/angular-locale_kn.js index 04a2651d82d3..266795616543 100644 --- a/src/ngLocale/angular-locale_kn.js +++ b/src/ngLocale/angular-locale_kn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "kn", + "localeID": "kn", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ko-kp.js b/src/ngLocale/angular-locale_ko-kp.js index 5a7ad847a845..2763f7b2f103 100644 --- a/src/ngLocale/angular-locale_ko-kp.js +++ b/src/ngLocale/angular-locale_ko-kp.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ko-kp", + "localeID": "ko_KP", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ko-kr.js b/src/ngLocale/angular-locale_ko-kr.js index 39af6df7f7fa..016c52308a5a 100644 --- a/src/ngLocale/angular-locale_ko-kr.js +++ b/src/ngLocale/angular-locale_ko-kr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ko-kr", + "localeID": "ko_KR", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ko.js b/src/ngLocale/angular-locale_ko.js index 593abbe2e571..d3ff9ee57587 100644 --- a/src/ngLocale/angular-locale_ko.js +++ b/src/ngLocale/angular-locale_ko.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ko", + "localeID": "ko", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kok-in.js b/src/ngLocale/angular-locale_kok-in.js index f48823ed5c9d..abfcd60dbd14 100644 --- a/src/ngLocale/angular-locale_kok-in.js +++ b/src/ngLocale/angular-locale_kok-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kok-in", + "localeID": "kok_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kok.js b/src/ngLocale/angular-locale_kok.js index 15505c95149f..4a59d032a071 100644 --- a/src/ngLocale/angular-locale_kok.js +++ b/src/ngLocale/angular-locale_kok.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kok", + "localeID": "kok", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ks-arab-in.js b/src/ngLocale/angular-locale_ks-arab-in.js index 954f2d0b389d..0ab04e6d6ec6 100644 --- a/src/ngLocale/angular-locale_ks-arab-in.js +++ b/src/ngLocale/angular-locale_ks-arab-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ks-arab-in", + "localeID": "ks_Arab_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ks-arab.js b/src/ngLocale/angular-locale_ks-arab.js index 7d6f211fb0cb..b1d807bd1a51 100644 --- a/src/ngLocale/angular-locale_ks-arab.js +++ b/src/ngLocale/angular-locale_ks-arab.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ks-arab", + "localeID": "ks_Arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ks.js b/src/ngLocale/angular-locale_ks.js index 5e9de026dc71..7c64c70b6a37 100644 --- a/src/ngLocale/angular-locale_ks.js +++ b/src/ngLocale/angular-locale_ks.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ks", + "localeID": "ks", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksb-tz.js b/src/ngLocale/angular-locale_ksb-tz.js index 6927d58420b3..8082838a5838 100644 --- a/src/ngLocale/angular-locale_ksb-tz.js +++ b/src/ngLocale/angular-locale_ksb-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksb-tz", + "localeID": "ksb_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksb.js b/src/ngLocale/angular-locale_ksb.js index 457fe2d8d823..796a29860522 100644 --- a/src/ngLocale/angular-locale_ksb.js +++ b/src/ngLocale/angular-locale_ksb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksb", + "localeID": "ksb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksf-cm.js b/src/ngLocale/angular-locale_ksf-cm.js index d7ea7edb121f..459b8505384f 100644 --- a/src/ngLocale/angular-locale_ksf-cm.js +++ b/src/ngLocale/angular-locale_ksf-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksf-cm", + "localeID": "ksf_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksf.js b/src/ngLocale/angular-locale_ksf.js index e84c9dd64f09..36e62a8d062f 100644 --- a/src/ngLocale/angular-locale_ksf.js +++ b/src/ngLocale/angular-locale_ksf.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksf", + "localeID": "ksf", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksh-de.js b/src/ngLocale/angular-locale_ksh-de.js index f2e138b66b40..793b20a02ac1 100644 --- a/src/ngLocale/angular-locale_ksh-de.js +++ b/src/ngLocale/angular-locale_ksh-de.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksh-de", + "localeID": "ksh_DE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ksh.js b/src/ngLocale/angular-locale_ksh.js index d4bf1699fe92..312fbee71808 100644 --- a/src/ngLocale/angular-locale_ksh.js +++ b/src/ngLocale/angular-locale_ksh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ksh", + "localeID": "ksh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kw-gb.js b/src/ngLocale/angular-locale_kw-gb.js index 2a95376ccbe0..46a8c1031a64 100644 --- a/src/ngLocale/angular-locale_kw-gb.js +++ b/src/ngLocale/angular-locale_kw-gb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kw-gb", + "localeID": "kw_GB", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_kw.js b/src/ngLocale/angular-locale_kw.js index 5be45e290945..d6a128b885ea 100644 --- a/src/ngLocale/angular-locale_kw.js +++ b/src/ngLocale/angular-locale_kw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "kw", + "localeID": "kw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ky-cyrl-kg.js b/src/ngLocale/angular-locale_ky-cyrl-kg.js index 784c2d16d132..31b8ace4987a 100644 --- a/src/ngLocale/angular-locale_ky-cyrl-kg.js +++ b/src/ngLocale/angular-locale_ky-cyrl-kg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ky-cyrl-kg", + "localeID": "ky_Cyrl_KG", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ky-cyrl.js b/src/ngLocale/angular-locale_ky-cyrl.js index 073cfbbcfc46..a3c9123469fa 100644 --- a/src/ngLocale/angular-locale_ky-cyrl.js +++ b/src/ngLocale/angular-locale_ky-cyrl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ky-cyrl", + "localeID": "ky_Cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ky.js b/src/ngLocale/angular-locale_ky.js index f012d22aad2b..bba5e7a84324 100644 --- a/src/ngLocale/angular-locale_ky.js +++ b/src/ngLocale/angular-locale_ky.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ky", + "localeID": "ky", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lag-tz.js b/src/ngLocale/angular-locale_lag-tz.js index 20a8682ef36f..016705cc70c8 100644 --- a/src/ngLocale/angular-locale_lag-tz.js +++ b/src/ngLocale/angular-locale_lag-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lag-tz", + "localeID": "lag_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lag.js b/src/ngLocale/angular-locale_lag.js index 3b8bb4fa7813..db5682f97b05 100644 --- a/src/ngLocale/angular-locale_lag.js +++ b/src/ngLocale/angular-locale_lag.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lag", + "localeID": "lag", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lb-lu.js b/src/ngLocale/angular-locale_lb-lu.js index e05f59cfed47..a55c1f0302d6 100644 --- a/src/ngLocale/angular-locale_lb-lu.js +++ b/src/ngLocale/angular-locale_lb-lu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lb-lu", + "localeID": "lb_LU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lb.js b/src/ngLocale/angular-locale_lb.js index 8734cc3ec7f1..92fd0f938fac 100644 --- a/src/ngLocale/angular-locale_lb.js +++ b/src/ngLocale/angular-locale_lb.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lb", + "localeID": "lb", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lg-ug.js b/src/ngLocale/angular-locale_lg-ug.js index ac345cd6872d..6e884f33aaa1 100644 --- a/src/ngLocale/angular-locale_lg-ug.js +++ b/src/ngLocale/angular-locale_lg-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lg-ug", + "localeID": "lg_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lg.js b/src/ngLocale/angular-locale_lg.js index 61e1c20db1b0..dd566144571e 100644 --- a/src/ngLocale/angular-locale_lg.js +++ b/src/ngLocale/angular-locale_lg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lg", + "localeID": "lg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lkt-us.js b/src/ngLocale/angular-locale_lkt-us.js index c59db627073b..8f0f754fa98a 100644 --- a/src/ngLocale/angular-locale_lkt-us.js +++ b/src/ngLocale/angular-locale_lkt-us.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lkt-us", + "localeID": "lkt_US", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lkt.js b/src/ngLocale/angular-locale_lkt.js index e65494a6fd03..7b66c440e414 100644 --- a/src/ngLocale/angular-locale_lkt.js +++ b/src/ngLocale/angular-locale_lkt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lkt", + "localeID": "lkt", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ln-ao.js b/src/ngLocale/angular-locale_ln-ao.js index 9d01b1c90a05..a3bc1090f4f9 100644 --- a/src/ngLocale/angular-locale_ln-ao.js +++ b/src/ngLocale/angular-locale_ln-ao.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ln-ao", + "localeID": "ln_AO", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ln-cd.js b/src/ngLocale/angular-locale_ln-cd.js index d7ad31d17b46..d46aa944f3fd 100644 --- a/src/ngLocale/angular-locale_ln-cd.js +++ b/src/ngLocale/angular-locale_ln-cd.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ln-cd", + "localeID": "ln_CD", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ln-cf.js b/src/ngLocale/angular-locale_ln-cf.js index b2b8535cad5c..8a2d99978e7d 100644 --- a/src/ngLocale/angular-locale_ln-cf.js +++ b/src/ngLocale/angular-locale_ln-cf.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ln-cf", + "localeID": "ln_CF", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ln-cg.js b/src/ngLocale/angular-locale_ln-cg.js index 92ba0b5b3e9b..fd47f4abbe50 100644 --- a/src/ngLocale/angular-locale_ln-cg.js +++ b/src/ngLocale/angular-locale_ln-cg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ln-cg", + "localeID": "ln_CG", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ln.js b/src/ngLocale/angular-locale_ln.js index 05facff8c651..63ad366ed60f 100644 --- a/src/ngLocale/angular-locale_ln.js +++ b/src/ngLocale/angular-locale_ln.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ln", + "localeID": "ln", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lo-la.js b/src/ngLocale/angular-locale_lo-la.js index 08e5daa0dbf4..170926984645 100644 --- a/src/ngLocale/angular-locale_lo-la.js +++ b/src/ngLocale/angular-locale_lo-la.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "lo-la", + "localeID": "lo_LA", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lo.js b/src/ngLocale/angular-locale_lo.js index 99c438792368..9d273937dd96 100644 --- a/src/ngLocale/angular-locale_lo.js +++ b/src/ngLocale/angular-locale_lo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "lo", + "localeID": "lo", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lt-lt.js b/src/ngLocale/angular-locale_lt-lt.js index 491a184b0a32..cd4d0e9a0ab6 100644 --- a/src/ngLocale/angular-locale_lt-lt.js +++ b/src/ngLocale/angular-locale_lt-lt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lt-lt", + "localeID": "lt_LT", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } if (vf.f != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lt.js b/src/ngLocale/angular-locale_lt.js index 54222b2737d5..24cb315031a5 100644 --- a/src/ngLocale/angular-locale_lt.js +++ b/src/ngLocale/angular-locale_lt.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lt", + "localeID": "lt", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 1 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.ONE; } if (n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) { return PLURAL_CATEGORY.FEW; } if (vf.f != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lu-cd.js b/src/ngLocale/angular-locale_lu-cd.js index de0abaea1233..a274e9d81b0a 100644 --- a/src/ngLocale/angular-locale_lu-cd.js +++ b/src/ngLocale/angular-locale_lu-cd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lu-cd", + "localeID": "lu_CD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lu.js b/src/ngLocale/angular-locale_lu.js index 864e73860090..efbfd6a87c27 100644 --- a/src/ngLocale/angular-locale_lu.js +++ b/src/ngLocale/angular-locale_lu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lu", + "localeID": "lu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_luo-ke.js b/src/ngLocale/angular-locale_luo-ke.js index 96396b354919..2bb386fd7a4f 100644 --- a/src/ngLocale/angular-locale_luo-ke.js +++ b/src/ngLocale/angular-locale_luo-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "luo-ke", + "localeID": "luo_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_luo.js b/src/ngLocale/angular-locale_luo.js index cda811a6a18f..8ca950bc0de9 100644 --- a/src/ngLocale/angular-locale_luo.js +++ b/src/ngLocale/angular-locale_luo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "luo", + "localeID": "luo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_luy-ke.js b/src/ngLocale/angular-locale_luy-ke.js index 96cfd849691b..7747423698fe 100644 --- a/src/ngLocale/angular-locale_luy-ke.js +++ b/src/ngLocale/angular-locale_luy-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "luy-ke", + "localeID": "luy_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_luy.js b/src/ngLocale/angular-locale_luy.js index 8c6406e34e14..23a74ab0c900 100644 --- a/src/ngLocale/angular-locale_luy.js +++ b/src/ngLocale/angular-locale_luy.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "luy", + "localeID": "luy", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lv-lv.js b/src/ngLocale/angular-locale_lv-lv.js index 733588cdc6dc..55d42b4a720b 100644 --- a/src/ngLocale/angular-locale_lv-lv.js +++ b/src/ngLocale/angular-locale_lv-lv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lv-lv", + "localeID": "lv_LV", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 || vf.v == 2 && vf.f % 100 >= 11 && vf.f % 100 <= 19) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11 || vf.v == 2 && vf.f % 10 == 1 && vf.f % 100 != 11 || vf.v != 2 && vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_lv.js b/src/ngLocale/angular-locale_lv.js index 574c73ced27b..5394baf52adb 100644 --- a/src/ngLocale/angular-locale_lv.js +++ b/src/ngLocale/angular-locale_lv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "lv", + "localeID": "lv", "pluralCat": function(n, opt_precision) { var vf = getVF(n, opt_precision); if (n % 10 == 0 || n % 100 >= 11 && n % 100 <= 19 || vf.v == 2 && vf.f % 100 >= 11 && vf.f % 100 <= 19) { return PLURAL_CATEGORY.ZERO; } if (n % 10 == 1 && n % 100 != 11 || vf.v == 2 && vf.f % 10 == 1 && vf.f % 100 != 11 || vf.v != 2 && vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mas-ke.js b/src/ngLocale/angular-locale_mas-ke.js index 1a05ccf1c684..4b5be4125a15 100644 --- a/src/ngLocale/angular-locale_mas-ke.js +++ b/src/ngLocale/angular-locale_mas-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mas-ke", + "localeID": "mas_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mas-tz.js b/src/ngLocale/angular-locale_mas-tz.js index 555c9ced0c44..bf88154c0a23 100644 --- a/src/ngLocale/angular-locale_mas-tz.js +++ b/src/ngLocale/angular-locale_mas-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mas-tz", + "localeID": "mas_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mas.js b/src/ngLocale/angular-locale_mas.js index 3f46d8b76856..a1557f56d649 100644 --- a/src/ngLocale/angular-locale_mas.js +++ b/src/ngLocale/angular-locale_mas.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mas", + "localeID": "mas", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mer-ke.js b/src/ngLocale/angular-locale_mer-ke.js index 3f4960dee88f..a4eda25eacd1 100644 --- a/src/ngLocale/angular-locale_mer-ke.js +++ b/src/ngLocale/angular-locale_mer-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mer-ke", + "localeID": "mer_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mer.js b/src/ngLocale/angular-locale_mer.js index 4b658b5600e4..6cc84a0fab02 100644 --- a/src/ngLocale/angular-locale_mer.js +++ b/src/ngLocale/angular-locale_mer.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mer", + "localeID": "mer", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mfe-mu.js b/src/ngLocale/angular-locale_mfe-mu.js index ae9e8d82f1bf..55ef1ff257a7 100644 --- a/src/ngLocale/angular-locale_mfe-mu.js +++ b/src/ngLocale/angular-locale_mfe-mu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mfe-mu", + "localeID": "mfe_MU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mfe.js b/src/ngLocale/angular-locale_mfe.js index 5578bcce76f5..e48e27bd39b0 100644 --- a/src/ngLocale/angular-locale_mfe.js +++ b/src/ngLocale/angular-locale_mfe.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mfe", + "localeID": "mfe", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mg-mg.js b/src/ngLocale/angular-locale_mg-mg.js index 425c85fac52e..1bb99a0ed968 100644 --- a/src/ngLocale/angular-locale_mg-mg.js +++ b/src/ngLocale/angular-locale_mg-mg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mg-mg", + "localeID": "mg_MG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mg.js b/src/ngLocale/angular-locale_mg.js index 64c69dda0c41..5c27790303cf 100644 --- a/src/ngLocale/angular-locale_mg.js +++ b/src/ngLocale/angular-locale_mg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mg", + "localeID": "mg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mgh-mz.js b/src/ngLocale/angular-locale_mgh-mz.js index b75b9d81cb80..f883d1ce3941 100644 --- a/src/ngLocale/angular-locale_mgh-mz.js +++ b/src/ngLocale/angular-locale_mgh-mz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mgh-mz", + "localeID": "mgh_MZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mgh.js b/src/ngLocale/angular-locale_mgh.js index cefa7dbf17a7..e35cb07c0949 100644 --- a/src/ngLocale/angular-locale_mgh.js +++ b/src/ngLocale/angular-locale_mgh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mgh", + "localeID": "mgh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mgo-cm.js b/src/ngLocale/angular-locale_mgo-cm.js index ef41badcc926..d1dc4f678df3 100644 --- a/src/ngLocale/angular-locale_mgo-cm.js +++ b/src/ngLocale/angular-locale_mgo-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mgo-cm", + "localeID": "mgo_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mgo.js b/src/ngLocale/angular-locale_mgo.js index 9f0d50882c9c..23ab0b1e5433 100644 --- a/src/ngLocale/angular-locale_mgo.js +++ b/src/ngLocale/angular-locale_mgo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mgo", + "localeID": "mgo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mk-mk.js b/src/ngLocale/angular-locale_mk-mk.js index 6bda8ef30599..1eb4837499cc 100644 --- a/src/ngLocale/angular-locale_mk-mk.js +++ b/src/ngLocale/angular-locale_mk-mk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mk-mk", + "localeID": "mk_MK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 || vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mk.js b/src/ngLocale/angular-locale_mk.js index c8145fa61667..81b07fd966e1 100644 --- a/src/ngLocale/angular-locale_mk.js +++ b/src/ngLocale/angular-locale_mk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mk", + "localeID": "mk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 || vf.f % 10 == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ml-in.js b/src/ngLocale/angular-locale_ml-in.js index e3f23631343b..e160fa916e98 100644 --- a/src/ngLocale/angular-locale_ml-in.js +++ b/src/ngLocale/angular-locale_ml-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ml-in", + "localeID": "ml_IN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ml.js b/src/ngLocale/angular-locale_ml.js index e7a3fd4d01fb..1e2bcc88387c 100644 --- a/src/ngLocale/angular-locale_ml.js +++ b/src/ngLocale/angular-locale_ml.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ml", + "localeID": "ml", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mn-cyrl-mn.js b/src/ngLocale/angular-locale_mn-cyrl-mn.js index a49572945229..8863207705ba 100644 --- a/src/ngLocale/angular-locale_mn-cyrl-mn.js +++ b/src/ngLocale/angular-locale_mn-cyrl-mn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mn-cyrl-mn", + "localeID": "mn_Cyrl_MN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mn-cyrl.js b/src/ngLocale/angular-locale_mn-cyrl.js index 41a2166a8540..6b29e4e93613 100644 --- a/src/ngLocale/angular-locale_mn-cyrl.js +++ b/src/ngLocale/angular-locale_mn-cyrl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mn-cyrl", + "localeID": "mn_Cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mn.js b/src/ngLocale/angular-locale_mn.js index c29b23a70735..05f44fc6cd45 100644 --- a/src/ngLocale/angular-locale_mn.js +++ b/src/ngLocale/angular-locale_mn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mn", + "localeID": "mn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mr-in.js b/src/ngLocale/angular-locale_mr-in.js index 6987709bbb37..d184dd6cc410 100644 --- a/src/ngLocale/angular-locale_mr-in.js +++ b/src/ngLocale/angular-locale_mr-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mr-in", + "localeID": "mr_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mr.js b/src/ngLocale/angular-locale_mr.js index 95489e794600..868b0d0e36bb 100644 --- a/src/ngLocale/angular-locale_mr.js +++ b/src/ngLocale/angular-locale_mr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mr", + "localeID": "mr", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ms-latn-bn.js b/src/ngLocale/angular-locale_ms-latn-bn.js index 8194f4ddfb52..05e662d22d1a 100644 --- a/src/ngLocale/angular-locale_ms-latn-bn.js +++ b/src/ngLocale/angular-locale_ms-latn-bn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ms-latn-bn", + "localeID": "ms_Latn_BN", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ms-latn-my.js b/src/ngLocale/angular-locale_ms-latn-my.js index 24c1a2378e64..b55fbdaac7ea 100644 --- a/src/ngLocale/angular-locale_ms-latn-my.js +++ b/src/ngLocale/angular-locale_ms-latn-my.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ms-latn-my", + "localeID": "ms_Latn_MY", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ms-latn-sg.js b/src/ngLocale/angular-locale_ms-latn-sg.js index 65e9d3b8e597..74c1c3069c77 100644 --- a/src/ngLocale/angular-locale_ms-latn-sg.js +++ b/src/ngLocale/angular-locale_ms-latn-sg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ms-latn-sg", + "localeID": "ms_Latn_SG", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ms-latn.js b/src/ngLocale/angular-locale_ms-latn.js index fdecd0f49f9e..43a31025bd1f 100644 --- a/src/ngLocale/angular-locale_ms-latn.js +++ b/src/ngLocale/angular-locale_ms-latn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ms-latn", + "localeID": "ms_Latn", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ms.js b/src/ngLocale/angular-locale_ms.js index 37e14a6bf1ff..14b9b40b0683 100644 --- a/src/ngLocale/angular-locale_ms.js +++ b/src/ngLocale/angular-locale_ms.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ms", + "localeID": "ms", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mt-mt.js b/src/ngLocale/angular-locale_mt-mt.js index 6377ee69ec7d..bb1e89d8e841 100644 --- a/src/ngLocale/angular-locale_mt-mt.js +++ b/src/ngLocale/angular-locale_mt-mt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mt-mt", + "localeID": "mt_MT", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mt.js b/src/ngLocale/angular-locale_mt.js index 17ffdf79f0bb..48da84e96d69 100644 --- a/src/ngLocale/angular-locale_mt.js +++ b/src/ngLocale/angular-locale_mt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "mt", + "localeID": "mt", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } if (n == 0 || n % 100 >= 2 && n % 100 <= 10) { return PLURAL_CATEGORY.FEW; } if (n % 100 >= 11 && n % 100 <= 19) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mua-cm.js b/src/ngLocale/angular-locale_mua-cm.js index ef4142a54473..2584507a3fee 100644 --- a/src/ngLocale/angular-locale_mua-cm.js +++ b/src/ngLocale/angular-locale_mua-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mua-cm", + "localeID": "mua_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_mua.js b/src/ngLocale/angular-locale_mua.js index 3aa7d673cff3..3035de87ea1f 100644 --- a/src/ngLocale/angular-locale_mua.js +++ b/src/ngLocale/angular-locale_mua.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "mua", + "localeID": "mua", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_my-mm.js b/src/ngLocale/angular-locale_my-mm.js index 560eb6111595..f39a9d1b06fa 100644 --- a/src/ngLocale/angular-locale_my-mm.js +++ b/src/ngLocale/angular-locale_my-mm.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "my-mm", + "localeID": "my_MM", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_my.js b/src/ngLocale/angular-locale_my.js index ad609dba463f..610432e6796e 100644 --- a/src/ngLocale/angular-locale_my.js +++ b/src/ngLocale/angular-locale_my.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "my", + "localeID": "my", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_naq-na.js b/src/ngLocale/angular-locale_naq-na.js index 55ccfa94dfe0..89b0ae42f196 100644 --- a/src/ngLocale/angular-locale_naq-na.js +++ b/src/ngLocale/angular-locale_naq-na.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "naq-na", + "localeID": "naq_NA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_naq.js b/src/ngLocale/angular-locale_naq.js index ee3ae873709d..e4297ea4c877 100644 --- a/src/ngLocale/angular-locale_naq.js +++ b/src/ngLocale/angular-locale_naq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "naq", + "localeID": "naq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nb-no.js b/src/ngLocale/angular-locale_nb-no.js index b6fd1312cf61..5c3c749ee267 100644 --- a/src/ngLocale/angular-locale_nb-no.js +++ b/src/ngLocale/angular-locale_nb-no.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "nb-no", + "localeID": "nb_NO", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nb-sj.js b/src/ngLocale/angular-locale_nb-sj.js index 92d048b0a12e..76df065bdcc5 100644 --- a/src/ngLocale/angular-locale_nb-sj.js +++ b/src/ngLocale/angular-locale_nb-sj.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "nb-sj", + "localeID": "nb_SJ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nb.js b/src/ngLocale/angular-locale_nb.js index 54fe1f0c567c..3edcbba68932 100644 --- a/src/ngLocale/angular-locale_nb.js +++ b/src/ngLocale/angular-locale_nb.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "nb", + "localeID": "nb", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nd-zw.js b/src/ngLocale/angular-locale_nd-zw.js index 89d2ff89aa30..701e00bb3973 100644 --- a/src/ngLocale/angular-locale_nd-zw.js +++ b/src/ngLocale/angular-locale_nd-zw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nd-zw", + "localeID": "nd_ZW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nd.js b/src/ngLocale/angular-locale_nd.js index 63dd61fdc333..5faebec5b394 100644 --- a/src/ngLocale/angular-locale_nd.js +++ b/src/ngLocale/angular-locale_nd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nd", + "localeID": "nd", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ne-in.js b/src/ngLocale/angular-locale_ne-in.js index f827eb7cd4a2..a672c6d4a079 100644 --- a/src/ngLocale/angular-locale_ne-in.js +++ b/src/ngLocale/angular-locale_ne-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ne-in", + "localeID": "ne_IN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ne-np.js b/src/ngLocale/angular-locale_ne-np.js index 5e7b5737659d..2f241a74cdf2 100644 --- a/src/ngLocale/angular-locale_ne-np.js +++ b/src/ngLocale/angular-locale_ne-np.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ne-np", + "localeID": "ne_NP", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ne.js b/src/ngLocale/angular-locale_ne.js index 26ab63e1e93e..59b8ac0457c2 100644 --- a/src/ngLocale/angular-locale_ne.js +++ b/src/ngLocale/angular-locale_ne.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ne", + "localeID": "ne", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-aw.js b/src/ngLocale/angular-locale_nl-aw.js index 3f3ab3fd162c..711340e3e5d8 100644 --- a/src/ngLocale/angular-locale_nl-aw.js +++ b/src/ngLocale/angular-locale_nl-aw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-aw", + "localeID": "nl_AW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-be.js b/src/ngLocale/angular-locale_nl-be.js index 5ec84e3d40c4..505cffecc226 100644 --- a/src/ngLocale/angular-locale_nl-be.js +++ b/src/ngLocale/angular-locale_nl-be.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-be", + "localeID": "nl_BE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-bq.js b/src/ngLocale/angular-locale_nl-bq.js index 4d1ca2504a45..28eb5a840135 100644 --- a/src/ngLocale/angular-locale_nl-bq.js +++ b/src/ngLocale/angular-locale_nl-bq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-bq", + "localeID": "nl_BQ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-cw.js b/src/ngLocale/angular-locale_nl-cw.js index 0966a86bbd29..77aca674fdf0 100644 --- a/src/ngLocale/angular-locale_nl-cw.js +++ b/src/ngLocale/angular-locale_nl-cw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-cw", + "localeID": "nl_CW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-nl.js b/src/ngLocale/angular-locale_nl-nl.js index ff59e65ac3b1..0eb3e7c37240 100644 --- a/src/ngLocale/angular-locale_nl-nl.js +++ b/src/ngLocale/angular-locale_nl-nl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-nl", + "localeID": "nl_NL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-sr.js b/src/ngLocale/angular-locale_nl-sr.js index 49e5c7bcd354..98984fe24221 100644 --- a/src/ngLocale/angular-locale_nl-sr.js +++ b/src/ngLocale/angular-locale_nl-sr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-sr", + "localeID": "nl_SR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl-sx.js b/src/ngLocale/angular-locale_nl-sx.js index 9234decf7c71..264e9a0cfbb9 100644 --- a/src/ngLocale/angular-locale_nl-sx.js +++ b/src/ngLocale/angular-locale_nl-sx.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl-sx", + "localeID": "nl_SX", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nl.js b/src/ngLocale/angular-locale_nl.js index 8b0bc820cc0d..4f6311b26e92 100644 --- a/src/ngLocale/angular-locale_nl.js +++ b/src/ngLocale/angular-locale_nl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nl", + "localeID": "nl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nmg-cm.js b/src/ngLocale/angular-locale_nmg-cm.js index f77a235c0518..518ef7c89707 100644 --- a/src/ngLocale/angular-locale_nmg-cm.js +++ b/src/ngLocale/angular-locale_nmg-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nmg-cm", + "localeID": "nmg_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nmg.js b/src/ngLocale/angular-locale_nmg.js index 73588a8e9071..254572516dac 100644 --- a/src/ngLocale/angular-locale_nmg.js +++ b/src/ngLocale/angular-locale_nmg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nmg", + "localeID": "nmg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nn-no.js b/src/ngLocale/angular-locale_nn-no.js index 05da031f81de..15370bc072af 100644 --- a/src/ngLocale/angular-locale_nn-no.js +++ b/src/ngLocale/angular-locale_nn-no.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nn-no", + "localeID": "nn_NO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nn.js b/src/ngLocale/angular-locale_nn.js index 50d242215ad8..2ca6886b29d3 100644 --- a/src/ngLocale/angular-locale_nn.js +++ b/src/ngLocale/angular-locale_nn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nn", + "localeID": "nn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nnh-cm.js b/src/ngLocale/angular-locale_nnh-cm.js index 1236df95fbfa..549ae5bce38e 100644 --- a/src/ngLocale/angular-locale_nnh-cm.js +++ b/src/ngLocale/angular-locale_nnh-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nnh-cm", + "localeID": "nnh_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nnh.js b/src/ngLocale/angular-locale_nnh.js index 631bbdc6e43f..6552c81e5c65 100644 --- a/src/ngLocale/angular-locale_nnh.js +++ b/src/ngLocale/angular-locale_nnh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nnh", + "localeID": "nnh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_no-no.js b/src/ngLocale/angular-locale_no-no.js index ccc662b0ee04..89e161d421a6 100644 --- a/src/ngLocale/angular-locale_no-no.js +++ b/src/ngLocale/angular-locale_no-no.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "no-no", + "localeID": "no_NO", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_no.js b/src/ngLocale/angular-locale_no.js index 07585f4b5788..d9dd6a3f4f8b 100644 --- a/src/ngLocale/angular-locale_no.js +++ b/src/ngLocale/angular-locale_no.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "no", + "localeID": "no", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nus-sd.js b/src/ngLocale/angular-locale_nus-sd.js index 64f90a4bd332..4c19d632f2b6 100644 --- a/src/ngLocale/angular-locale_nus-sd.js +++ b/src/ngLocale/angular-locale_nus-sd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nus-sd", + "localeID": "nus_SD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nus.js b/src/ngLocale/angular-locale_nus.js index 9588182ce884..24c8efdf9afc 100644 --- a/src/ngLocale/angular-locale_nus.js +++ b/src/ngLocale/angular-locale_nus.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nus", + "localeID": "nus", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nyn-ug.js b/src/ngLocale/angular-locale_nyn-ug.js index 1cde06938cfa..0d02342c355c 100644 --- a/src/ngLocale/angular-locale_nyn-ug.js +++ b/src/ngLocale/angular-locale_nyn-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nyn-ug", + "localeID": "nyn_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_nyn.js b/src/ngLocale/angular-locale_nyn.js index 31cf2bcbcca6..ffeed0825e59 100644 --- a/src/ngLocale/angular-locale_nyn.js +++ b/src/ngLocale/angular-locale_nyn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "nyn", + "localeID": "nyn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_om-et.js b/src/ngLocale/angular-locale_om-et.js index b6e63b053277..83ab18d8e698 100644 --- a/src/ngLocale/angular-locale_om-et.js +++ b/src/ngLocale/angular-locale_om-et.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "om-et", + "localeID": "om_ET", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_om-ke.js b/src/ngLocale/angular-locale_om-ke.js index d23f6a66419e..0d74a9a39820 100644 --- a/src/ngLocale/angular-locale_om-ke.js +++ b/src/ngLocale/angular-locale_om-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "om-ke", + "localeID": "om_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_om.js b/src/ngLocale/angular-locale_om.js index 24fb7e6f0401..46083873b450 100644 --- a/src/ngLocale/angular-locale_om.js +++ b/src/ngLocale/angular-locale_om.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "om", + "localeID": "om", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_or-in.js b/src/ngLocale/angular-locale_or-in.js index b972437f9d51..1e560908e9ba 100644 --- a/src/ngLocale/angular-locale_or-in.js +++ b/src/ngLocale/angular-locale_or-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "or-in", + "localeID": "or_IN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_or.js b/src/ngLocale/angular-locale_or.js index 82edfb9d262e..9e4623524bc7 100644 --- a/src/ngLocale/angular-locale_or.js +++ b/src/ngLocale/angular-locale_or.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "or", + "localeID": "or", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_os-ge.js b/src/ngLocale/angular-locale_os-ge.js index 17841ea9269b..45f56341a5b1 100644 --- a/src/ngLocale/angular-locale_os-ge.js +++ b/src/ngLocale/angular-locale_os-ge.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "os-ge", + "localeID": "os_GE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_os-ru.js b/src/ngLocale/angular-locale_os-ru.js index 4cb8879a74cd..c183cc277292 100644 --- a/src/ngLocale/angular-locale_os-ru.js +++ b/src/ngLocale/angular-locale_os-ru.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "os-ru", + "localeID": "os_RU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_os.js b/src/ngLocale/angular-locale_os.js index 5d1c43491db3..281b4a9cc49f 100644 --- a/src/ngLocale/angular-locale_os.js +++ b/src/ngLocale/angular-locale_os.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "os", + "localeID": "os", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pa-arab-pk.js b/src/ngLocale/angular-locale_pa-arab-pk.js index 464c6664e50a..1a3d2ead91d5 100644 --- a/src/ngLocale/angular-locale_pa-arab-pk.js +++ b/src/ngLocale/angular-locale_pa-arab-pk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pa-arab-pk", + "localeID": "pa_Arab_PK", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pa-arab.js b/src/ngLocale/angular-locale_pa-arab.js index 44938a70797a..4dd0134e9e83 100644 --- a/src/ngLocale/angular-locale_pa-arab.js +++ b/src/ngLocale/angular-locale_pa-arab.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pa-arab", + "localeID": "pa_Arab", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pa-guru-in.js b/src/ngLocale/angular-locale_pa-guru-in.js index 5bab508201d4..c9fc7c2f959c 100644 --- a/src/ngLocale/angular-locale_pa-guru-in.js +++ b/src/ngLocale/angular-locale_pa-guru-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pa-guru-in", + "localeID": "pa_Guru_IN", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pa-guru.js b/src/ngLocale/angular-locale_pa-guru.js index 63eb6c2f30a3..4705ac92212d 100644 --- a/src/ngLocale/angular-locale_pa-guru.js +++ b/src/ngLocale/angular-locale_pa-guru.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pa-guru", + "localeID": "pa_Guru", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pa.js b/src/ngLocale/angular-locale_pa.js index a939a4581bf5..e2a9a69a56a4 100644 --- a/src/ngLocale/angular-locale_pa.js +++ b/src/ngLocale/angular-locale_pa.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pa", + "localeID": "pa", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pl-pl.js b/src/ngLocale/angular-locale_pl-pl.js index ea2e09620c66..f3d2667aa921 100644 --- a/src/ngLocale/angular-locale_pl-pl.js +++ b/src/ngLocale/angular-locale_pl-pl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "pl-pl", + "localeID": "pl_PL", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i != 1 && i % 10 >= 0 && i % 10 <= 1 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 12 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pl.js b/src/ngLocale/angular-locale_pl.js index 6999f918d604..0bd6959400a4 100644 --- a/src/ngLocale/angular-locale_pl.js +++ b/src/ngLocale/angular-locale_pl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "pl", + "localeID": "pl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i != 1 && i % 10 >= 0 && i % 10 <= 1 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 12 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ps-af.js b/src/ngLocale/angular-locale_ps-af.js index 516d9be4980d..1c41578bbbf7 100644 --- a/src/ngLocale/angular-locale_ps-af.js +++ b/src/ngLocale/angular-locale_ps-af.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ps-af", + "localeID": "ps_AF", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ps.js b/src/ngLocale/angular-locale_ps.js index 2ffb84116cd8..cea6bd240efe 100644 --- a/src/ngLocale/angular-locale_ps.js +++ b/src/ngLocale/angular-locale_ps.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ps", + "localeID": "ps", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-ao.js b/src/ngLocale/angular-locale_pt-ao.js index 45633778f376..7b469e6adb24 100644 --- a/src/ngLocale/angular-locale_pt-ao.js +++ b/src/ngLocale/angular-locale_pt-ao.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-ao", + "localeID": "pt_AO", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-br.js b/src/ngLocale/angular-locale_pt-br.js index 6ff4b5e4f5e9..85ed9e2f46c6 100644 --- a/src/ngLocale/angular-locale_pt-br.js +++ b/src/ngLocale/angular-locale_pt-br.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-br", + "localeID": "pt_BR", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-cv.js b/src/ngLocale/angular-locale_pt-cv.js index 7dd09909707d..1f2a28798749 100644 --- a/src/ngLocale/angular-locale_pt-cv.js +++ b/src/ngLocale/angular-locale_pt-cv.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-cv", + "localeID": "pt_CV", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-gw.js b/src/ngLocale/angular-locale_pt-gw.js index 248fa397fd78..9e73f1b04956 100644 --- a/src/ngLocale/angular-locale_pt-gw.js +++ b/src/ngLocale/angular-locale_pt-gw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-gw", + "localeID": "pt_GW", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-mo.js b/src/ngLocale/angular-locale_pt-mo.js index 625037261cdf..1ab1912f9f07 100644 --- a/src/ngLocale/angular-locale_pt-mo.js +++ b/src/ngLocale/angular-locale_pt-mo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-mo", + "localeID": "pt_MO", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-mz.js b/src/ngLocale/angular-locale_pt-mz.js index 9c3a5e052c51..18c42f7a21bd 100644 --- a/src/ngLocale/angular-locale_pt-mz.js +++ b/src/ngLocale/angular-locale_pt-mz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-mz", + "localeID": "pt_MZ", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-pt.js b/src/ngLocale/angular-locale_pt-pt.js index 286cd41307c9..dbaeea6f43f7 100644 --- a/src/ngLocale/angular-locale_pt-pt.js +++ b/src/ngLocale/angular-locale_pt-pt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-pt", + "localeID": "pt_PT", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-st.js b/src/ngLocale/angular-locale_pt-st.js index b43435bc2068..4d1a175225c9 100644 --- a/src/ngLocale/angular-locale_pt-st.js +++ b/src/ngLocale/angular-locale_pt-st.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-st", + "localeID": "pt_ST", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt-tl.js b/src/ngLocale/angular-locale_pt-tl.js index 425a8627ad3b..0e4e281dfb3e 100644 --- a/src/ngLocale/angular-locale_pt-tl.js +++ b/src/ngLocale/angular-locale_pt-tl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt-tl", + "localeID": "pt_TL", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_pt.js b/src/ngLocale/angular-locale_pt.js index 3e651e76b134..5b3e44203266 100644 --- a/src/ngLocale/angular-locale_pt.js +++ b/src/ngLocale/angular-locale_pt.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "pt", + "localeID": "pt", "pluralCat": function(n, opt_precision) { if (n >= 0 && n <= 2 && n != 2) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_qu-bo.js b/src/ngLocale/angular-locale_qu-bo.js index 412bcdc21a6e..b31aa612b80f 100644 --- a/src/ngLocale/angular-locale_qu-bo.js +++ b/src/ngLocale/angular-locale_qu-bo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "qu-bo", + "localeID": "qu_BO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_qu-ec.js b/src/ngLocale/angular-locale_qu-ec.js index 8fca57d16149..45c55aaa13c0 100644 --- a/src/ngLocale/angular-locale_qu-ec.js +++ b/src/ngLocale/angular-locale_qu-ec.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "qu-ec", + "localeID": "qu_EC", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_qu-pe.js b/src/ngLocale/angular-locale_qu-pe.js index de81ef142386..32fe7d471bdb 100644 --- a/src/ngLocale/angular-locale_qu-pe.js +++ b/src/ngLocale/angular-locale_qu-pe.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "qu-pe", + "localeID": "qu_PE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_qu.js b/src/ngLocale/angular-locale_qu.js index 63f3c4581cc4..7b9a9c720043 100644 --- a/src/ngLocale/angular-locale_qu.js +++ b/src/ngLocale/angular-locale_qu.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "qu", + "localeID": "qu", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rm-ch.js b/src/ngLocale/angular-locale_rm-ch.js index d907140a9810..4e80899a0a8f 100644 --- a/src/ngLocale/angular-locale_rm-ch.js +++ b/src/ngLocale/angular-locale_rm-ch.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rm-ch", + "localeID": "rm_CH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rm.js b/src/ngLocale/angular-locale_rm.js index 811db26d6937..bb3a11bf55ea 100644 --- a/src/ngLocale/angular-locale_rm.js +++ b/src/ngLocale/angular-locale_rm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rm", + "localeID": "rm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rn-bi.js b/src/ngLocale/angular-locale_rn-bi.js index 7743b8f77f3e..806d589ba9e4 100644 --- a/src/ngLocale/angular-locale_rn-bi.js +++ b/src/ngLocale/angular-locale_rn-bi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rn-bi", + "localeID": "rn_BI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rn.js b/src/ngLocale/angular-locale_rn.js index 0ceb82d7ff4e..8dee14cef5d0 100644 --- a/src/ngLocale/angular-locale_rn.js +++ b/src/ngLocale/angular-locale_rn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rn", + "localeID": "rn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ro-md.js b/src/ngLocale/angular-locale_ro-md.js index 7f8544c89c46..4bb6f08e6240 100644 --- a/src/ngLocale/angular-locale_ro-md.js +++ b/src/ngLocale/angular-locale_ro-md.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ro-md", + "localeID": "ro_MD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ro-ro.js b/src/ngLocale/angular-locale_ro-ro.js index 2931e8ebeaae..ee8452707fe3 100644 --- a/src/ngLocale/angular-locale_ro-ro.js +++ b/src/ngLocale/angular-locale_ro-ro.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ro-ro", + "localeID": "ro_RO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ro.js b/src/ngLocale/angular-locale_ro.js index c30d0d989098..355646efbd19 100644 --- a/src/ngLocale/angular-locale_ro.js +++ b/src/ngLocale/angular-locale_ro.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ro", + "localeID": "ro", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (vf.v != 0 || n == 0 || n != 1 && n % 100 >= 1 && n % 100 <= 19) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rof-tz.js b/src/ngLocale/angular-locale_rof-tz.js index 6ddc5ac6d127..bced9f205ce5 100644 --- a/src/ngLocale/angular-locale_rof-tz.js +++ b/src/ngLocale/angular-locale_rof-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rof-tz", + "localeID": "rof_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rof.js b/src/ngLocale/angular-locale_rof.js index 70ff21851ee8..d54daaa48c80 100644 --- a/src/ngLocale/angular-locale_rof.js +++ b/src/ngLocale/angular-locale_rof.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rof", + "localeID": "rof", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-by.js b/src/ngLocale/angular-locale_ru-by.js index 603381668538..0b45136caea0 100644 --- a/src/ngLocale/angular-locale_ru-by.js +++ b/src/ngLocale/angular-locale_ru-by.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-by", + "localeID": "ru_BY", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-kg.js b/src/ngLocale/angular-locale_ru-kg.js index cae7d7806cbd..8d9a6a56d5be 100644 --- a/src/ngLocale/angular-locale_ru-kg.js +++ b/src/ngLocale/angular-locale_ru-kg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-kg", + "localeID": "ru_KG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-kz.js b/src/ngLocale/angular-locale_ru-kz.js index 4d600a77e670..0d7072b8011f 100644 --- a/src/ngLocale/angular-locale_ru-kz.js +++ b/src/ngLocale/angular-locale_ru-kz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-kz", + "localeID": "ru_KZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-md.js b/src/ngLocale/angular-locale_ru-md.js index 6eeaea422dbf..7f1e9aafd585 100644 --- a/src/ngLocale/angular-locale_ru-md.js +++ b/src/ngLocale/angular-locale_ru-md.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-md", + "localeID": "ru_MD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-ru.js b/src/ngLocale/angular-locale_ru-ru.js index b0ab8dce679d..bd249f6c523f 100644 --- a/src/ngLocale/angular-locale_ru-ru.js +++ b/src/ngLocale/angular-locale_ru-ru.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-ru", + "localeID": "ru_RU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru-ua.js b/src/ngLocale/angular-locale_ru-ua.js index 9e54f2c8b3cf..bbf7b33d9466 100644 --- a/src/ngLocale/angular-locale_ru-ua.js +++ b/src/ngLocale/angular-locale_ru-ua.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru-ua", + "localeID": "ru_UA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ru.js b/src/ngLocale/angular-locale_ru.js index bf09f0f9fc5a..1ed06bd08fed 100644 --- a/src/ngLocale/angular-locale_ru.js +++ b/src/ngLocale/angular-locale_ru.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ru", + "localeID": "ru", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rw-rw.js b/src/ngLocale/angular-locale_rw-rw.js index 48d9613e5d97..1778548ce706 100644 --- a/src/ngLocale/angular-locale_rw-rw.js +++ b/src/ngLocale/angular-locale_rw-rw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rw-rw", + "localeID": "rw_RW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rw.js b/src/ngLocale/angular-locale_rw.js index 6dab48fd3a27..11806021f516 100644 --- a/src/ngLocale/angular-locale_rw.js +++ b/src/ngLocale/angular-locale_rw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rw", + "localeID": "rw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rwk-tz.js b/src/ngLocale/angular-locale_rwk-tz.js index 85e799016382..7e845939215a 100644 --- a/src/ngLocale/angular-locale_rwk-tz.js +++ b/src/ngLocale/angular-locale_rwk-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rwk-tz", + "localeID": "rwk_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_rwk.js b/src/ngLocale/angular-locale_rwk.js index 9ad59b88c20b..8d4aae476454 100644 --- a/src/ngLocale/angular-locale_rwk.js +++ b/src/ngLocale/angular-locale_rwk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "rwk", + "localeID": "rwk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sah-ru.js b/src/ngLocale/angular-locale_sah-ru.js index 5d4feaf47e26..24c2aa40cd5f 100644 --- a/src/ngLocale/angular-locale_sah-ru.js +++ b/src/ngLocale/angular-locale_sah-ru.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sah-ru", + "localeID": "sah_RU", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sah.js b/src/ngLocale/angular-locale_sah.js index 038898d14500..8e57afce8454 100644 --- a/src/ngLocale/angular-locale_sah.js +++ b/src/ngLocale/angular-locale_sah.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sah", + "localeID": "sah", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_saq-ke.js b/src/ngLocale/angular-locale_saq-ke.js index dd7e3d25719a..c4fdb68f08c8 100644 --- a/src/ngLocale/angular-locale_saq-ke.js +++ b/src/ngLocale/angular-locale_saq-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "saq-ke", + "localeID": "saq_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_saq.js b/src/ngLocale/angular-locale_saq.js index c2018d190d77..3b916785c9aa 100644 --- a/src/ngLocale/angular-locale_saq.js +++ b/src/ngLocale/angular-locale_saq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "saq", + "localeID": "saq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sbp-tz.js b/src/ngLocale/angular-locale_sbp-tz.js index bb66514b03f7..b476af4dbe6e 100644 --- a/src/ngLocale/angular-locale_sbp-tz.js +++ b/src/ngLocale/angular-locale_sbp-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sbp-tz", + "localeID": "sbp_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sbp.js b/src/ngLocale/angular-locale_sbp.js index a19aefa266b4..65a582b73dcc 100644 --- a/src/ngLocale/angular-locale_sbp.js +++ b/src/ngLocale/angular-locale_sbp.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sbp", + "localeID": "sbp", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_se-fi.js b/src/ngLocale/angular-locale_se-fi.js index ae4868f1c47e..0d3b47778d46 100644 --- a/src/ngLocale/angular-locale_se-fi.js +++ b/src/ngLocale/angular-locale_se-fi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "se-fi", + "localeID": "se_FI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_se-no.js b/src/ngLocale/angular-locale_se-no.js index f1be3a564368..4fa6e3a1913a 100644 --- a/src/ngLocale/angular-locale_se-no.js +++ b/src/ngLocale/angular-locale_se-no.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "se-no", + "localeID": "se_NO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_se-se.js b/src/ngLocale/angular-locale_se-se.js index 0093aef074a5..ea4545ea99ea 100644 --- a/src/ngLocale/angular-locale_se-se.js +++ b/src/ngLocale/angular-locale_se-se.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "se-se", + "localeID": "se_SE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_se.js b/src/ngLocale/angular-locale_se.js index 85da150cee96..2434e7bdc143 100644 --- a/src/ngLocale/angular-locale_se.js +++ b/src/ngLocale/angular-locale_se.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "se", + "localeID": "se", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_seh-mz.js b/src/ngLocale/angular-locale_seh-mz.js index c343c1a31b93..f9341d9ca3e2 100644 --- a/src/ngLocale/angular-locale_seh-mz.js +++ b/src/ngLocale/angular-locale_seh-mz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "seh-mz", + "localeID": "seh_MZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_seh.js b/src/ngLocale/angular-locale_seh.js index 9f634bab9596..135b223e43c8 100644 --- a/src/ngLocale/angular-locale_seh.js +++ b/src/ngLocale/angular-locale_seh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "seh", + "localeID": "seh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ses-ml.js b/src/ngLocale/angular-locale_ses-ml.js index ec52ebe5d043..071f8a43034d 100644 --- a/src/ngLocale/angular-locale_ses-ml.js +++ b/src/ngLocale/angular-locale_ses-ml.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ses-ml", + "localeID": "ses_ML", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ses.js b/src/ngLocale/angular-locale_ses.js index abb629a5ed4d..816e7d87e535 100644 --- a/src/ngLocale/angular-locale_ses.js +++ b/src/ngLocale/angular-locale_ses.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ses", + "localeID": "ses", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sg-cf.js b/src/ngLocale/angular-locale_sg-cf.js index effce3dd44c7..8cb4ce048fce 100644 --- a/src/ngLocale/angular-locale_sg-cf.js +++ b/src/ngLocale/angular-locale_sg-cf.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sg-cf", + "localeID": "sg_CF", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sg.js b/src/ngLocale/angular-locale_sg.js index 8f714dbed381..d4b9a504f746 100644 --- a/src/ngLocale/angular-locale_sg.js +++ b/src/ngLocale/angular-locale_sg.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sg", + "localeID": "sg", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_shi-latn-ma.js b/src/ngLocale/angular-locale_shi-latn-ma.js index 7cbe1df4649e..31565461a13d 100644 --- a/src/ngLocale/angular-locale_shi-latn-ma.js +++ b/src/ngLocale/angular-locale_shi-latn-ma.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "shi-latn-ma", + "localeID": "shi_Latn_MA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_shi-latn.js b/src/ngLocale/angular-locale_shi-latn.js index 887ca9500a35..d754079baf74 100644 --- a/src/ngLocale/angular-locale_shi-latn.js +++ b/src/ngLocale/angular-locale_shi-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "shi-latn", + "localeID": "shi_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_shi-tfng-ma.js b/src/ngLocale/angular-locale_shi-tfng-ma.js index 77497d9f7034..bcbd7c1986f9 100644 --- a/src/ngLocale/angular-locale_shi-tfng-ma.js +++ b/src/ngLocale/angular-locale_shi-tfng-ma.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "shi-tfng-ma", + "localeID": "shi_Tfng_MA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_shi-tfng.js b/src/ngLocale/angular-locale_shi-tfng.js index e797c6728c25..be8968d5ca2c 100644 --- a/src/ngLocale/angular-locale_shi-tfng.js +++ b/src/ngLocale/angular-locale_shi-tfng.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "shi-tfng", + "localeID": "shi_Tfng", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_shi.js b/src/ngLocale/angular-locale_shi.js index f3600ad527cb..cc1e5316d2ba 100644 --- a/src/ngLocale/angular-locale_shi.js +++ b/src/ngLocale/angular-locale_shi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "shi", + "localeID": "shi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_si-lk.js b/src/ngLocale/angular-locale_si-lk.js index 76e47499c8b1..d5093237fa09 100644 --- a/src/ngLocale/angular-locale_si-lk.js +++ b/src/ngLocale/angular-locale_si-lk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "si-lk", + "localeID": "si_LK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if ((n == 0 || n == 1) || i == 0 && vf.f == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_si.js b/src/ngLocale/angular-locale_si.js index e2e342c13c86..83f5fb54b4cf 100644 --- a/src/ngLocale/angular-locale_si.js +++ b/src/ngLocale/angular-locale_si.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "si", + "localeID": "si", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if ((n == 0 || n == 1) || i == 0 && vf.f == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sk-sk.js b/src/ngLocale/angular-locale_sk-sk.js index 07f25c959ff4..2f5ba5d7d18f 100644 --- a/src/ngLocale/angular-locale_sk-sk.js +++ b/src/ngLocale/angular-locale_sk-sk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sk-sk", + "localeID": "sk_SK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sk.js b/src/ngLocale/angular-locale_sk.js index bd6800287cea..aa745cf3f91e 100644 --- a/src/ngLocale/angular-locale_sk.js +++ b/src/ngLocale/angular-locale_sk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sk", + "localeID": "sk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } if (i >= 2 && i <= 4 && vf.v == 0) { return PLURAL_CATEGORY.FEW; } if (vf.v != 0) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sl-si.js b/src/ngLocale/angular-locale_sl-si.js index 5b90ec4656d6..6bec18e67821 100644 --- a/src/ngLocale/angular-locale_sl-si.js +++ b/src/ngLocale/angular-locale_sl-si.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sl-si", + "localeID": "sl_SI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && i % 100 >= 3 && i % 100 <= 4 || vf.v != 0) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sl.js b/src/ngLocale/angular-locale_sl.js index 068ceade66ec..8155bfc7b6ff 100644 --- a/src/ngLocale/angular-locale_sl.js +++ b/src/ngLocale/angular-locale_sl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sl", + "localeID": "sl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 100 == 1) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 100 == 2) { return PLURAL_CATEGORY.TWO; } if (vf.v == 0 && i % 100 >= 3 && i % 100 <= 4 || vf.v != 0) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_smn-fi.js b/src/ngLocale/angular-locale_smn-fi.js index 1e9920b88e03..912e21821e11 100644 --- a/src/ngLocale/angular-locale_smn-fi.js +++ b/src/ngLocale/angular-locale_smn-fi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "smn-fi", + "localeID": "smn_FI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_smn.js b/src/ngLocale/angular-locale_smn.js index 0576fc37745c..c7cba3cc1c0d 100644 --- a/src/ngLocale/angular-locale_smn.js +++ b/src/ngLocale/angular-locale_smn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "smn", + "localeID": "smn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sn-zw.js b/src/ngLocale/angular-locale_sn-zw.js index fcccf07a11b6..6a802890d95a 100644 --- a/src/ngLocale/angular-locale_sn-zw.js +++ b/src/ngLocale/angular-locale_sn-zw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sn-zw", + "localeID": "sn_ZW", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sn.js b/src/ngLocale/angular-locale_sn.js index 85ddc5870683..96f0168fb637 100644 --- a/src/ngLocale/angular-locale_sn.js +++ b/src/ngLocale/angular-locale_sn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sn", + "localeID": "sn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_so-dj.js b/src/ngLocale/angular-locale_so-dj.js index ba730757e696..bc58c0049fb5 100644 --- a/src/ngLocale/angular-locale_so-dj.js +++ b/src/ngLocale/angular-locale_so-dj.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "so-dj", + "localeID": "so_DJ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_so-et.js b/src/ngLocale/angular-locale_so-et.js index c235f85dbc86..98b5e4df2267 100644 --- a/src/ngLocale/angular-locale_so-et.js +++ b/src/ngLocale/angular-locale_so-et.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "so-et", + "localeID": "so_ET", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_so-ke.js b/src/ngLocale/angular-locale_so-ke.js index d3d8529fae70..55b88382a54e 100644 --- a/src/ngLocale/angular-locale_so-ke.js +++ b/src/ngLocale/angular-locale_so-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "so-ke", + "localeID": "so_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_so-so.js b/src/ngLocale/angular-locale_so-so.js index 8fb95547dbeb..327842963a56 100644 --- a/src/ngLocale/angular-locale_so-so.js +++ b/src/ngLocale/angular-locale_so-so.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "so-so", + "localeID": "so_SO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_so.js b/src/ngLocale/angular-locale_so.js index b5bef99e2fea..33068e351c92 100644 --- a/src/ngLocale/angular-locale_so.js +++ b/src/ngLocale/angular-locale_so.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "so", + "localeID": "so", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sq-al.js b/src/ngLocale/angular-locale_sq-al.js index 2a0c58ba5548..d72e4dd87e0f 100644 --- a/src/ngLocale/angular-locale_sq-al.js +++ b/src/ngLocale/angular-locale_sq-al.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "sq-al", + "localeID": "sq_AL", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sq-mk.js b/src/ngLocale/angular-locale_sq-mk.js index c4e4bdeca297..c7cb626e81f6 100644 --- a/src/ngLocale/angular-locale_sq-mk.js +++ b/src/ngLocale/angular-locale_sq-mk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "sq-mk", + "localeID": "sq_MK", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sq-xk.js b/src/ngLocale/angular-locale_sq-xk.js index c61fc5f3548c..5b5e0c5d1d7f 100644 --- a/src/ngLocale/angular-locale_sq-xk.js +++ b/src/ngLocale/angular-locale_sq-xk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "sq-xk", + "localeID": "sq_XK", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sq.js b/src/ngLocale/angular-locale_sq.js index ce420dbea6ac..c39b126bf865 100644 --- a/src/ngLocale/angular-locale_sq.js +++ b/src/ngLocale/angular-locale_sq.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "sq", + "localeID": "sq", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-ba.js b/src/ngLocale/angular-locale_sr-cyrl-ba.js index 549bfe41424c..9db54861e9bb 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-ba.js +++ b/src/ngLocale/angular-locale_sr-cyrl-ba.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-cyrl-ba", + "localeID": "sr_Cyrl_BA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-me.js b/src/ngLocale/angular-locale_sr-cyrl-me.js index 721b6527f1d8..7a978c06f1da 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-me.js +++ b/src/ngLocale/angular-locale_sr-cyrl-me.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-cyrl-me", + "localeID": "sr_Cyrl_ME", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-rs.js b/src/ngLocale/angular-locale_sr-cyrl-rs.js index af70f7817abc..420af9b1f19d 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-rs.js +++ b/src/ngLocale/angular-locale_sr-cyrl-rs.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-cyrl-rs", + "localeID": "sr_Cyrl_RS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-cyrl-xk.js b/src/ngLocale/angular-locale_sr-cyrl-xk.js index 3527f42f68c3..655c151f0d94 100644 --- a/src/ngLocale/angular-locale_sr-cyrl-xk.js +++ b/src/ngLocale/angular-locale_sr-cyrl-xk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-cyrl-xk", + "localeID": "sr_Cyrl_XK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-cyrl.js b/src/ngLocale/angular-locale_sr-cyrl.js index e876eff2fd98..910bccbf2ce2 100644 --- a/src/ngLocale/angular-locale_sr-cyrl.js +++ b/src/ngLocale/angular-locale_sr-cyrl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-cyrl", + "localeID": "sr_Cyrl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-latn-ba.js b/src/ngLocale/angular-locale_sr-latn-ba.js index 0de3c625c2ae..0fa1414a76de 100644 --- a/src/ngLocale/angular-locale_sr-latn-ba.js +++ b/src/ngLocale/angular-locale_sr-latn-ba.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-latn-ba", + "localeID": "sr_Latn_BA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-latn-me.js b/src/ngLocale/angular-locale_sr-latn-me.js index dea5a7d64e43..9a5748d82692 100644 --- a/src/ngLocale/angular-locale_sr-latn-me.js +++ b/src/ngLocale/angular-locale_sr-latn-me.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-latn-me", + "localeID": "sr_Latn_ME", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-latn-rs.js b/src/ngLocale/angular-locale_sr-latn-rs.js index 5fb45f9d3f2e..24b2a8d1dc69 100644 --- a/src/ngLocale/angular-locale_sr-latn-rs.js +++ b/src/ngLocale/angular-locale_sr-latn-rs.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-latn-rs", + "localeID": "sr_Latn_RS", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-latn-xk.js b/src/ngLocale/angular-locale_sr-latn-xk.js index 1305e7d6769c..0e14f7bb5ea9 100644 --- a/src/ngLocale/angular-locale_sr-latn-xk.js +++ b/src/ngLocale/angular-locale_sr-latn-xk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-latn-xk", + "localeID": "sr_Latn_XK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr-latn.js b/src/ngLocale/angular-locale_sr-latn.js index cb9f44c57552..97320ef3ca11 100644 --- a/src/ngLocale/angular-locale_sr-latn.js +++ b/src/ngLocale/angular-locale_sr-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr-latn", + "localeID": "sr_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sr.js b/src/ngLocale/angular-locale_sr.js index 8d929bb1cdd5..06d1ae5d0e73 100644 --- a/src/ngLocale/angular-locale_sr.js +++ b/src/ngLocale/angular-locale_sr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sr", + "localeID": "sr", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11 || vf.f % 10 == 1 && vf.f % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14) || vf.f % 10 >= 2 && vf.f % 10 <= 4 && (vf.f % 100 < 12 || vf.f % 100 > 14)) { return PLURAL_CATEGORY.FEW; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sv-ax.js b/src/ngLocale/angular-locale_sv-ax.js index 10513ccef63b..039f6733ad51 100644 --- a/src/ngLocale/angular-locale_sv-ax.js +++ b/src/ngLocale/angular-locale_sv-ax.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sv-ax", + "localeID": "sv_AX", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sv-fi.js b/src/ngLocale/angular-locale_sv-fi.js index 0154b2625366..de2e20a184b7 100644 --- a/src/ngLocale/angular-locale_sv-fi.js +++ b/src/ngLocale/angular-locale_sv-fi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sv-fi", + "localeID": "sv_FI", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sv-se.js b/src/ngLocale/angular-locale_sv-se.js index db8b672ec2cd..774beb1c6b3b 100644 --- a/src/ngLocale/angular-locale_sv-se.js +++ b/src/ngLocale/angular-locale_sv-se.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sv-se", + "localeID": "sv_SE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sv.js b/src/ngLocale/angular-locale_sv.js index e33f94655e7c..1dcdc27119fe 100644 --- a/src/ngLocale/angular-locale_sv.js +++ b/src/ngLocale/angular-locale_sv.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sv", + "localeID": "sv", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sw-cd.js b/src/ngLocale/angular-locale_sw-cd.js index ba72b709a073..5fbbd34dd931 100644 --- a/src/ngLocale/angular-locale_sw-cd.js +++ b/src/ngLocale/angular-locale_sw-cd.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sw-cd", + "localeID": "sw_CD", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sw-ke.js b/src/ngLocale/angular-locale_sw-ke.js index 761d21d4d45f..ed521a0165ad 100644 --- a/src/ngLocale/angular-locale_sw-ke.js +++ b/src/ngLocale/angular-locale_sw-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sw-ke", + "localeID": "sw_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sw-tz.js b/src/ngLocale/angular-locale_sw-tz.js index 38f68e93f97d..9e0d09736d99 100644 --- a/src/ngLocale/angular-locale_sw-tz.js +++ b/src/ngLocale/angular-locale_sw-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sw-tz", + "localeID": "sw_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sw-ug.js b/src/ngLocale/angular-locale_sw-ug.js index 1d7e970cf51c..10a92101a167 100644 --- a/src/ngLocale/angular-locale_sw-ug.js +++ b/src/ngLocale/angular-locale_sw-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sw-ug", + "localeID": "sw_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_sw.js b/src/ngLocale/angular-locale_sw.js index 994c7971dbda..f6ed28cc3894 100644 --- a/src/ngLocale/angular-locale_sw.js +++ b/src/ngLocale/angular-locale_sw.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "sw", + "localeID": "sw", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ta-in.js b/src/ngLocale/angular-locale_ta-in.js index 4e5647a4df50..0d6ba5788971 100644 --- a/src/ngLocale/angular-locale_ta-in.js +++ b/src/ngLocale/angular-locale_ta-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ta-in", + "localeID": "ta_IN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ta-lk.js b/src/ngLocale/angular-locale_ta-lk.js index e112383cc457..db3fd136ed97 100644 --- a/src/ngLocale/angular-locale_ta-lk.js +++ b/src/ngLocale/angular-locale_ta-lk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ta-lk", + "localeID": "ta_LK", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ta-my.js b/src/ngLocale/angular-locale_ta-my.js index 7b260131b36f..1bb2da9eac89 100644 --- a/src/ngLocale/angular-locale_ta-my.js +++ b/src/ngLocale/angular-locale_ta-my.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ta-my", + "localeID": "ta_MY", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ta-sg.js b/src/ngLocale/angular-locale_ta-sg.js index 2bf73b973ba6..b049d9b07481 100644 --- a/src/ngLocale/angular-locale_ta-sg.js +++ b/src/ngLocale/angular-locale_ta-sg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ta-sg", + "localeID": "ta_SG", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ta.js b/src/ngLocale/angular-locale_ta.js index 4c248f0c2e89..affb1b788cec 100644 --- a/src/ngLocale/angular-locale_ta.js +++ b/src/ngLocale/angular-locale_ta.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "ta", + "localeID": "ta", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_te-in.js b/src/ngLocale/angular-locale_te-in.js index ffd82e89b105..b912a94ee519 100644 --- a/src/ngLocale/angular-locale_te-in.js +++ b/src/ngLocale/angular-locale_te-in.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "te-in", + "localeID": "te_IN", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_te.js b/src/ngLocale/angular-locale_te.js index e5028890148b..8011dd46a794 100644 --- a/src/ngLocale/angular-locale_te.js +++ b/src/ngLocale/angular-locale_te.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "te", + "localeID": "te", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_teo-ke.js b/src/ngLocale/angular-locale_teo-ke.js index 30d7543e71ee..c4d30f920756 100644 --- a/src/ngLocale/angular-locale_teo-ke.js +++ b/src/ngLocale/angular-locale_teo-ke.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "teo-ke", + "localeID": "teo_KE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_teo-ug.js b/src/ngLocale/angular-locale_teo-ug.js index f7852e3ff884..bfa1f2a94f29 100644 --- a/src/ngLocale/angular-locale_teo-ug.js +++ b/src/ngLocale/angular-locale_teo-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "teo-ug", + "localeID": "teo_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_teo.js b/src/ngLocale/angular-locale_teo.js index 119e66ae5ed6..80c2663cdad7 100644 --- a/src/ngLocale/angular-locale_teo.js +++ b/src/ngLocale/angular-locale_teo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "teo", + "localeID": "teo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_th-th.js b/src/ngLocale/angular-locale_th-th.js index 3998b3b6d05b..6918c564cbfd 100644 --- a/src/ngLocale/angular-locale_th-th.js +++ b/src/ngLocale/angular-locale_th-th.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "th-th", + "localeID": "th_TH", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_th.js b/src/ngLocale/angular-locale_th.js index df7a7202684e..4a8ebc3a94fe 100644 --- a/src/ngLocale/angular-locale_th.js +++ b/src/ngLocale/angular-locale_th.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "th", + "localeID": "th", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ti-er.js b/src/ngLocale/angular-locale_ti-er.js index be3484a0d30e..dcc74c8854a4 100644 --- a/src/ngLocale/angular-locale_ti-er.js +++ b/src/ngLocale/angular-locale_ti-er.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ti-er", + "localeID": "ti_ER", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ti-et.js b/src/ngLocale/angular-locale_ti-et.js index 5aee651170a3..15b6d1a2218d 100644 --- a/src/ngLocale/angular-locale_ti-et.js +++ b/src/ngLocale/angular-locale_ti-et.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ti-et", + "localeID": "ti_ET", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ti.js b/src/ngLocale/angular-locale_ti.js index 1a3bd80e6173..199b10105ee4 100644 --- a/src/ngLocale/angular-locale_ti.js +++ b/src/ngLocale/angular-locale_ti.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ti", + "localeID": "ti", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tl.js b/src/ngLocale/angular-locale_tl.js index a2e784e294db..ba7e457b830c 100644 --- a/src/ngLocale/angular-locale_tl.js +++ b/src/ngLocale/angular-locale_tl.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "tl", + "localeID": "tl", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && (i == 1 || i == 2 || i == 3) || vf.v == 0 && i % 10 != 4 && i % 10 != 6 && i % 10 != 9 || vf.v != 0 && vf.f % 10 != 4 && vf.f % 10 != 6 && vf.f % 10 != 9) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_to-to.js b/src/ngLocale/angular-locale_to-to.js index c5a01a0ddf2b..65f6a5bf5e81 100644 --- a/src/ngLocale/angular-locale_to-to.js +++ b/src/ngLocale/angular-locale_to-to.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "to-to", + "localeID": "to_TO", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_to.js b/src/ngLocale/angular-locale_to.js index 539545afb5a1..cadf60adf354 100644 --- a/src/ngLocale/angular-locale_to.js +++ b/src/ngLocale/angular-locale_to.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "to", + "localeID": "to", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tr-cy.js b/src/ngLocale/angular-locale_tr-cy.js index 067df34b900c..f1ec26e8c9fd 100644 --- a/src/ngLocale/angular-locale_tr-cy.js +++ b/src/ngLocale/angular-locale_tr-cy.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "tr-cy", + "localeID": "tr_CY", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tr-tr.js b/src/ngLocale/angular-locale_tr-tr.js index 68413082a2d9..4758a7889ee3 100644 --- a/src/ngLocale/angular-locale_tr-tr.js +++ b/src/ngLocale/angular-locale_tr-tr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "tr-tr", + "localeID": "tr_TR", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tr.js b/src/ngLocale/angular-locale_tr.js index 355cb4345909..0de8ed8875f2 100644 --- a/src/ngLocale/angular-locale_tr.js +++ b/src/ngLocale/angular-locale_tr.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "tr", + "localeID": "tr", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_twq-ne.js b/src/ngLocale/angular-locale_twq-ne.js index 529362877cec..77c78dca248d 100644 --- a/src/ngLocale/angular-locale_twq-ne.js +++ b/src/ngLocale/angular-locale_twq-ne.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "twq-ne", + "localeID": "twq_NE", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_twq.js b/src/ngLocale/angular-locale_twq.js index a4707aea628e..8fb664e6a754 100644 --- a/src/ngLocale/angular-locale_twq.js +++ b/src/ngLocale/angular-locale_twq.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "twq", + "localeID": "twq", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tzm-latn-ma.js b/src/ngLocale/angular-locale_tzm-latn-ma.js index 3320f7640042..49722198262b 100644 --- a/src/ngLocale/angular-locale_tzm-latn-ma.js +++ b/src/ngLocale/angular-locale_tzm-latn-ma.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "tzm-latn-ma", + "localeID": "tzm_Latn_MA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tzm-latn.js b/src/ngLocale/angular-locale_tzm-latn.js index a91a99e7b514..2b80fb7c3d37 100644 --- a/src/ngLocale/angular-locale_tzm-latn.js +++ b/src/ngLocale/angular-locale_tzm-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "tzm-latn", + "localeID": "tzm_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_tzm.js b/src/ngLocale/angular-locale_tzm.js index 291a09053589..b51f0f9ea921 100644 --- a/src/ngLocale/angular-locale_tzm.js +++ b/src/ngLocale/angular-locale_tzm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "tzm", + "localeID": "tzm", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ug-arab-cn.js b/src/ngLocale/angular-locale_ug-arab-cn.js index 7df5b5ba1bd9..de43911e82ba 100644 --- a/src/ngLocale/angular-locale_ug-arab-cn.js +++ b/src/ngLocale/angular-locale_ug-arab-cn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ug-arab-cn", + "localeID": "ug_Arab_CN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ug-arab.js b/src/ngLocale/angular-locale_ug-arab.js index 732984b71605..2e194fc876b2 100644 --- a/src/ngLocale/angular-locale_ug-arab.js +++ b/src/ngLocale/angular-locale_ug-arab.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ug-arab", + "localeID": "ug_Arab", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ug.js b/src/ngLocale/angular-locale_ug.js index eb0127fd8a45..698df9aff64a 100644 --- a/src/ngLocale/angular-locale_ug.js +++ b/src/ngLocale/angular-locale_ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ug", + "localeID": "ug", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uk-ua.js b/src/ngLocale/angular-locale_uk-ua.js index 8d5dd42d260e..3c8cbaa55239 100644 --- a/src/ngLocale/angular-locale_uk-ua.js +++ b/src/ngLocale/angular-locale_uk-ua.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "uk-ua", + "localeID": "uk_UA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uk.js b/src/ngLocale/angular-locale_uk.js index 369f3bd5a6a5..716d2441433e 100644 --- a/src/ngLocale/angular-locale_uk.js +++ b/src/ngLocale/angular-locale_uk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "uk", + "localeID": "uk", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (vf.v == 0 && i % 10 == 1 && i % 100 != 11) { return PLURAL_CATEGORY.ONE; } if (vf.v == 0 && i % 10 >= 2 && i % 10 <= 4 && (i % 100 < 12 || i % 100 > 14)) { return PLURAL_CATEGORY.FEW; } if (vf.v == 0 && i % 10 == 0 || vf.v == 0 && i % 10 >= 5 && i % 10 <= 9 || vf.v == 0 && i % 100 >= 11 && i % 100 <= 14) { return PLURAL_CATEGORY.MANY; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ur-in.js b/src/ngLocale/angular-locale_ur-in.js index fb18729fadae..762a3d85f37a 100644 --- a/src/ngLocale/angular-locale_ur-in.js +++ b/src/ngLocale/angular-locale_ur-in.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ur-in", + "localeID": "ur_IN", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ur-pk.js b/src/ngLocale/angular-locale_ur-pk.js index 57d4a5b22874..6ab57c00fc24 100644 --- a/src/ngLocale/angular-locale_ur-pk.js +++ b/src/ngLocale/angular-locale_ur-pk.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ur-pk", + "localeID": "ur_PK", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_ur.js b/src/ngLocale/angular-locale_ur.js index ac6d9be86758..6a950edd80df 100644 --- a/src/ngLocale/angular-locale_ur.js +++ b/src/ngLocale/angular-locale_ur.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "ur", + "localeID": "ur", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-arab-af.js b/src/ngLocale/angular-locale_uz-arab-af.js index 386ae812478e..22875a193a1b 100644 --- a/src/ngLocale/angular-locale_uz-arab-af.js +++ b/src/ngLocale/angular-locale_uz-arab-af.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-arab-af", + "localeID": "uz_Arab_AF", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-arab.js b/src/ngLocale/angular-locale_uz-arab.js index 1b8147e17772..c25ffc71ae43 100644 --- a/src/ngLocale/angular-locale_uz-arab.js +++ b/src/ngLocale/angular-locale_uz-arab.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-arab", + "localeID": "uz_Arab", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-cyrl-uz.js b/src/ngLocale/angular-locale_uz-cyrl-uz.js index d5b74c870b08..3f3106a975e1 100644 --- a/src/ngLocale/angular-locale_uz-cyrl-uz.js +++ b/src/ngLocale/angular-locale_uz-cyrl-uz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-cyrl-uz", + "localeID": "uz_Cyrl_UZ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-cyrl.js b/src/ngLocale/angular-locale_uz-cyrl.js index c8a4eec34826..824aaa4466eb 100644 --- a/src/ngLocale/angular-locale_uz-cyrl.js +++ b/src/ngLocale/angular-locale_uz-cyrl.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-cyrl", + "localeID": "uz_Cyrl", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-latn-uz.js b/src/ngLocale/angular-locale_uz-latn-uz.js index 6312092ca2f3..6872728b8c63 100644 --- a/src/ngLocale/angular-locale_uz-latn-uz.js +++ b/src/ngLocale/angular-locale_uz-latn-uz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-latn-uz", + "localeID": "uz_Latn_UZ", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz-latn.js b/src/ngLocale/angular-locale_uz-latn.js index 6119b9668e6d..ca53f82e37cd 100644 --- a/src/ngLocale/angular-locale_uz-latn.js +++ b/src/ngLocale/angular-locale_uz-latn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz-latn", + "localeID": "uz_Latn", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_uz.js b/src/ngLocale/angular-locale_uz.js index a305b297eef5..8eb442a45fcf 100644 --- a/src/ngLocale/angular-locale_uz.js +++ b/src/ngLocale/angular-locale_uz.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "uz", + "localeID": "uz", "pluralCat": function(n, opt_precision) { if (n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vai-latn-lr.js b/src/ngLocale/angular-locale_vai-latn-lr.js index 07cc753605cc..0800e469b1f9 100644 --- a/src/ngLocale/angular-locale_vai-latn-lr.js +++ b/src/ngLocale/angular-locale_vai-latn-lr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vai-latn-lr", + "localeID": "vai_Latn_LR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vai-latn.js b/src/ngLocale/angular-locale_vai-latn.js index dd86c3f80e64..8bb7e498e4c6 100644 --- a/src/ngLocale/angular-locale_vai-latn.js +++ b/src/ngLocale/angular-locale_vai-latn.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vai-latn", + "localeID": "vai_Latn", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vai-vaii-lr.js b/src/ngLocale/angular-locale_vai-vaii-lr.js index b8aacff3daa7..022470e71c5e 100644 --- a/src/ngLocale/angular-locale_vai-vaii-lr.js +++ b/src/ngLocale/angular-locale_vai-vaii-lr.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vai-vaii-lr", + "localeID": "vai_Vaii_LR", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vai-vaii.js b/src/ngLocale/angular-locale_vai-vaii.js index 58cdcd450032..807b6aebdef6 100644 --- a/src/ngLocale/angular-locale_vai-vaii.js +++ b/src/ngLocale/angular-locale_vai-vaii.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vai-vaii", + "localeID": "vai_Vaii", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vai.js b/src/ngLocale/angular-locale_vai.js index ff6d565e55b9..36c32ae8605d 100644 --- a/src/ngLocale/angular-locale_vai.js +++ b/src/ngLocale/angular-locale_vai.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vai", + "localeID": "vai", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vi-vn.js b/src/ngLocale/angular-locale_vi-vn.js index 7c4ae01095d0..bd1ff23ad47a 100644 --- a/src/ngLocale/angular-locale_vi-vn.js +++ b/src/ngLocale/angular-locale_vi-vn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "vi-vn", + "localeID": "vi_VN", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vi.js b/src/ngLocale/angular-locale_vi.js index 3c6f415cc6e0..cae6f1bc3fd9 100644 --- a/src/ngLocale/angular-locale_vi.js +++ b/src/ngLocale/angular-locale_vi.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "vi", + "localeID": "vi", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vun-tz.js b/src/ngLocale/angular-locale_vun-tz.js index 6de61112386c..a25eb311f065 100644 --- a/src/ngLocale/angular-locale_vun-tz.js +++ b/src/ngLocale/angular-locale_vun-tz.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vun-tz", + "localeID": "vun_TZ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_vun.js b/src/ngLocale/angular-locale_vun.js index bfb1746f6c38..f539e2c304d5 100644 --- a/src/ngLocale/angular-locale_vun.js +++ b/src/ngLocale/angular-locale_vun.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "vun", + "localeID": "vun", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_wae-ch.js b/src/ngLocale/angular-locale_wae-ch.js index 4b1a8feb3226..92aa7e8e5ab0 100644 --- a/src/ngLocale/angular-locale_wae-ch.js +++ b/src/ngLocale/angular-locale_wae-ch.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "wae-ch", + "localeID": "wae_CH", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_wae.js b/src/ngLocale/angular-locale_wae.js index 835be049801a..12a13a12a545 100644 --- a/src/ngLocale/angular-locale_wae.js +++ b/src/ngLocale/angular-locale_wae.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "wae", + "localeID": "wae", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_xog-ug.js b/src/ngLocale/angular-locale_xog-ug.js index d6277f1eb217..0e265809f1dd 100644 --- a/src/ngLocale/angular-locale_xog-ug.js +++ b/src/ngLocale/angular-locale_xog-ug.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "xog-ug", + "localeID": "xog_UG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_xog.js b/src/ngLocale/angular-locale_xog.js index 51890d77ddff..742868914d44 100644 --- a/src/ngLocale/angular-locale_xog.js +++ b/src/ngLocale/angular-locale_xog.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "xog", + "localeID": "xog", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yav-cm.js b/src/ngLocale/angular-locale_yav-cm.js index a526be0c05f0..c880307bafcd 100644 --- a/src/ngLocale/angular-locale_yav-cm.js +++ b/src/ngLocale/angular-locale_yav-cm.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yav-cm", + "localeID": "yav_CM", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yav.js b/src/ngLocale/angular-locale_yav.js index dbd4d65c7c9c..77ba2f0d6e1a 100644 --- a/src/ngLocale/angular-locale_yav.js +++ b/src/ngLocale/angular-locale_yav.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yav", + "localeID": "yav", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yi-001.js b/src/ngLocale/angular-locale_yi-001.js index 98d0b70f1aa4..8698143a5cb6 100644 --- a/src/ngLocale/angular-locale_yi-001.js +++ b/src/ngLocale/angular-locale_yi-001.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yi-001", + "localeID": "yi_001", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yi.js b/src/ngLocale/angular-locale_yi.js index 4bb8e6894279..8f3e2827b961 100644 --- a/src/ngLocale/angular-locale_yi.js +++ b/src/ngLocale/angular-locale_yi.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yi", + "localeID": "yi", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yo-bj.js b/src/ngLocale/angular-locale_yo-bj.js index c9b8d5ed8c6a..a3fa227305db 100644 --- a/src/ngLocale/angular-locale_yo-bj.js +++ b/src/ngLocale/angular-locale_yo-bj.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yo-bj", + "localeID": "yo_BJ", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yo-ng.js b/src/ngLocale/angular-locale_yo-ng.js index 994a51c4a364..6af884e6aad1 100644 --- a/src/ngLocale/angular-locale_yo-ng.js +++ b/src/ngLocale/angular-locale_yo-ng.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yo-ng", + "localeID": "yo_NG", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_yo.js b/src/ngLocale/angular-locale_yo.js index 3e95642280e0..02fe54995860 100644 --- a/src/ngLocale/angular-locale_yo.js +++ b/src/ngLocale/angular-locale_yo.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "yo", + "localeID": "yo", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zgh-ma.js b/src/ngLocale/angular-locale_zgh-ma.js index 1e6996c57835..70aaf8587a64 100644 --- a/src/ngLocale/angular-locale_zgh-ma.js +++ b/src/ngLocale/angular-locale_zgh-ma.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "zgh-ma", + "localeID": "zgh_MA", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zgh.js b/src/ngLocale/angular-locale_zgh.js index 76b7428ad95b..dc8b56af9a4a 100644 --- a/src/ngLocale/angular-locale_zgh.js +++ b/src/ngLocale/angular-locale_zgh.js @@ -137,6 +137,7 @@ $provide.value("$locale", { ] }, "id": "zgh", + "localeID": "zgh", "pluralCat": function(n, opt_precision) { var i = n | 0; var vf = getVF(n, opt_precision); if (i == 1 && vf.v == 0) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-cn.js b/src/ngLocale/angular-locale_zh-cn.js index f41d85efa0b0..9dcded23aad6 100644 --- a/src/ngLocale/angular-locale_zh-cn.js +++ b/src/ngLocale/angular-locale_zh-cn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-cn", + "localeID": "zh_CN", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hans-cn.js b/src/ngLocale/angular-locale_zh-hans-cn.js index a2cc4df5e211..9caf0a9e7a40 100644 --- a/src/ngLocale/angular-locale_zh-hans-cn.js +++ b/src/ngLocale/angular-locale_zh-hans-cn.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hans-cn", + "localeID": "zh_Hans_CN", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hans-hk.js b/src/ngLocale/angular-locale_zh-hans-hk.js index 5902530c997f..f19d3ffda313 100644 --- a/src/ngLocale/angular-locale_zh-hans-hk.js +++ b/src/ngLocale/angular-locale_zh-hans-hk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hans-hk", + "localeID": "zh_Hans_HK", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hans-mo.js b/src/ngLocale/angular-locale_zh-hans-mo.js index d533ed8b9fb6..a5f5f6b89ac7 100644 --- a/src/ngLocale/angular-locale_zh-hans-mo.js +++ b/src/ngLocale/angular-locale_zh-hans-mo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hans-mo", + "localeID": "zh_Hans_MO", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hans-sg.js b/src/ngLocale/angular-locale_zh-hans-sg.js index fd3075377c45..9e9f6a428d7b 100644 --- a/src/ngLocale/angular-locale_zh-hans-sg.js +++ b/src/ngLocale/angular-locale_zh-hans-sg.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hans-sg", + "localeID": "zh_Hans_SG", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hans.js b/src/ngLocale/angular-locale_zh-hans.js index d65378bf8dad..8cc744e20ac9 100644 --- a/src/ngLocale/angular-locale_zh-hans.js +++ b/src/ngLocale/angular-locale_zh-hans.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hans", + "localeID": "zh_Hans", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hant-hk.js b/src/ngLocale/angular-locale_zh-hant-hk.js index f00fb7d09a21..83afa08cd08a 100644 --- a/src/ngLocale/angular-locale_zh-hant-hk.js +++ b/src/ngLocale/angular-locale_zh-hant-hk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hant-hk", + "localeID": "zh_Hant_HK", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hant-mo.js b/src/ngLocale/angular-locale_zh-hant-mo.js index 414051a1ae91..9e7dff0e77a8 100644 --- a/src/ngLocale/angular-locale_zh-hant-mo.js +++ b/src/ngLocale/angular-locale_zh-hant-mo.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hant-mo", + "localeID": "zh_Hant_MO", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hant-tw.js b/src/ngLocale/angular-locale_zh-hant-tw.js index ea15b5adf091..870b74a5c05f 100644 --- a/src/ngLocale/angular-locale_zh-hant-tw.js +++ b/src/ngLocale/angular-locale_zh-hant-tw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hant-tw", + "localeID": "zh_Hant_TW", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hant.js b/src/ngLocale/angular-locale_zh-hant.js index 18c00de651ff..38dbf142a9fd 100644 --- a/src/ngLocale/angular-locale_zh-hant.js +++ b/src/ngLocale/angular-locale_zh-hant.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hant", + "localeID": "zh_Hant", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-hk.js b/src/ngLocale/angular-locale_zh-hk.js index ce07aa369a08..c6c3620bad37 100644 --- a/src/ngLocale/angular-locale_zh-hk.js +++ b/src/ngLocale/angular-locale_zh-hk.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-hk", + "localeID": "zh_HK", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh-tw.js b/src/ngLocale/angular-locale_zh-tw.js index 74ede89b4170..53b1b3db8b23 100644 --- a/src/ngLocale/angular-locale_zh-tw.js +++ b/src/ngLocale/angular-locale_zh-tw.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh-tw", + "localeID": "zh_TW", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zh.js b/src/ngLocale/angular-locale_zh.js index 3b6fe7f8b1a6..41f05a89a0d4 100644 --- a/src/ngLocale/angular-locale_zh.js +++ b/src/ngLocale/angular-locale_zh.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zh", + "localeID": "zh", "pluralCat": function(n, opt_precision) { return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zu-za.js b/src/ngLocale/angular-locale_zu-za.js index c6cf7cc26ffc..e11f8d463a10 100644 --- a/src/ngLocale/angular-locale_zu-za.js +++ b/src/ngLocale/angular-locale_zu-za.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zu-za", + "localeID": "zu_ZA", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); diff --git a/src/ngLocale/angular-locale_zu.js b/src/ngLocale/angular-locale_zu.js index 1fb4a17d24c9..50372f67070c 100644 --- a/src/ngLocale/angular-locale_zu.js +++ b/src/ngLocale/angular-locale_zu.js @@ -119,6 +119,7 @@ $provide.value("$locale", { ] }, "id": "zu", + "localeID": "zu", "pluralCat": function(n, opt_precision) { var i = n | 0; if (i == 0 || n == 1) { return PLURAL_CATEGORY.ONE; } return PLURAL_CATEGORY.OTHER;} }); }]); From 543af651d0d69510a01881cb44261a7dc16cd8a6 Mon Sep 17 00:00:00 2001 From: Leo Gallucci Date: Mon, 29 Sep 2014 17:35:30 -0300 Subject: [PATCH 235/354] docs(guide/directives): improve Protractor test for bindings This needs Protractor >= 1.3.0 to work. Closes #9330 --- docs/content/guide/directive.ngdoc | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 6b6d3031efcf..2217337b05e5 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -99,8 +99,13 @@ For example, the following forms are all equivalent and match the {@link ngBind} it('should show off bindings', function() { - expect(element(by.css('div[ng-controller="Controller"] span[ng-bind]')).getText()) - .toBe('Max Karl Ernst Ludwig Planck (April 23, 1858 – October 4, 1947)'); + var containerElm = element(by.css('div[ng-controller="Controller"]')); + var nameBindings = containerElm.all(by.binding('name')); + + expect(nameBindings.count()).toBe(5); + nameBindings.each(function(elem) { + expect(elem.getText()).toEqual('Max Karl Ernst Ludwig Planck (April 23, 1858 – October 4, 1947)'); + }); }); From 2d44a681eb912a81a8bc8e16a278c45dae91fa24 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 26 Jan 2016 15:04:03 +0200 Subject: [PATCH 236/354] fix($compile): properly denormalize templates when only one of the start/end symbols is different Previously, if either of the start/end interpolation symbols remained unchanged (i.e. `{{` or `}}`), then directive templates would not be denormalized properly. Changing only one of the start/end symbols (but not both) is an uncommon but legitimate usecase. Closes #13848 --- src/ng/compile.js | 2 +- test/ng/compileSpec.js | 48 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index fb3eb6a21c19..7c4265f83427 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -1255,7 +1255,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { var startSymbol = $interpolate.startSymbol(), endSymbol = $interpolate.endSymbol(), - denormalizeTemplate = (startSymbol == '{{' || endSymbol == '}}') + denormalizeTemplate = (startSymbol == '{{' && endSymbol == '}}') ? identity : function denormalizeTemplate(template) { return template.replace(/\{\{/g, startSymbol).replace(/}}/g, endSymbol); diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index b955bdb3964c..46ffbb521bf1 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -3118,6 +3118,54 @@ describe('$compile', function() { }); + it('should support custom start interpolation symbol, even when `endSymbol` doesn\'t change', + function() { + module(function($compileProvider, $interpolateProvider) { + $interpolateProvider.startSymbol('[['); + $compileProvider.directive('myDirective', function() { + return { + template: '{{ hello }}|{{ hello | uppercase }}' + }; + }); + }); + + inject(function($compile, $rootScope) { + var tmpl = '
      [[ hello | uppercase }}|
      '; + element = $compile(tmpl)($rootScope); + + $rootScope.hello = 'ahoj'; + $rootScope.$digest(); + + expect(element.text()).toBe('AHOJ|ahoj|AHOJ'); + }); + } + ); + + + it('should support custom end interpolation symbol, even when `startSymbol` doesn\'t change', + function() { + module(function($compileProvider, $interpolateProvider) { + $interpolateProvider.endSymbol(']]'); + $compileProvider.directive('myDirective', function() { + return { + template: '{{ hello }}|{{ hello | uppercase }}' + }; + }); + }); + + inject(function($compile, $rootScope) { + var tmpl = '
      {{ hello | uppercase ]]|
      '; + element = $compile(tmpl)($rootScope); + + $rootScope.hello = 'ahoj'; + $rootScope.$digest(); + + expect(element.text()).toBe('AHOJ|ahoj|AHOJ'); + }); + } + ); + + it('should support custom start/end interpolation symbols in async directive template', function() { module(function($interpolateProvider, $compileProvider) { From 1ef741563d0923e40ce75492cc698584b43b0dd3 Mon Sep 17 00:00:00 2001 From: robw Date: Fri, 11 Dec 2015 14:02:43 -0800 Subject: [PATCH 237/354] docs(ngModel): add section explaining that `ngModel` watches by reference The new section explains that changing only a property on an object doesn't trigger re-rendering. Closes #13224 Closes #13518 --- src/ng/directive/ngModel.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/ng/directive/ngModel.js b/src/ng/directive/ngModel.js index 69f9af125219..a200f75a32f8 100644 --- a/src/ng/directive/ngModel.js +++ b/src/ng/directive/ngModel.js @@ -921,6 +921,22 @@ var NgModelController = ['$scope', '$exceptionHandler', '$attrs', '$element', '$ * - {@link ng.directive:select select} * - {@link ng.directive:textarea textarea} * + * # Complex Models (objects or collections) + * + * By default, `ngModel` watches the model by reference, not value. This is important to know when + * binding inputs to models that are objects (e.g. `Date`) or collections (e.g. arrays). If only properties of the + * object or collection change, `ngModel` will not be notified and so the input will not be re-rendered. + * + * The model must be assigned an entirely new object or collection before a re-rendering will occur. + * + * Some directives have options that will cause them to use a custom `$watchCollection` on the model expression + * - for example, `ngOptions` will do so when a `track by` clause is included in the comprehension expression or + * if the select is given the `multiple` attribute. + * + * The `$watchCollection()` method only does a shallow comparison, meaning that changing properties deeper than the + * first level of the object (or only changing the properties of an item in the collection if it's an array) will still + * not trigger a re-rendering of the model. + * * # CSS classes * The following CSS classes are added and removed on the associated input/select/textarea element * depending on the validity of the model. From a398773b0ce01ed08678c2ed7185cfab090e91e8 Mon Sep 17 00:00:00 2001 From: Thomas Moffett Date: Sun, 10 Jan 2016 15:31:56 -0800 Subject: [PATCH 238/354] docs(guide): change concepts.graffle/data.plist to fix 'World' spelling The change is only to concepts.graffle/data.plist to fix 'World' spelling. Another PR, #13724, already fixed the actual image. Closes #13704 Closes #13734 --- images/docs/guide/concepts.graffle/data.plist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/images/docs/guide/concepts.graffle/data.plist b/images/docs/guide/concepts.graffle/data.plist index d159209f298f..2b3b8c86487e 100644 --- a/images/docs/guide/concepts.graffle/data.plist +++ b/images/docs/guide/concepts.graffle/data.plist @@ -2142,7 +2142,7 @@ queue} \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\pardirnatural\qr \f0\fs22 \cf2 $scope\ -name='Wold'} +name='World'} VerticalPad 0 From ca23d5f68f599421a906826a67d4efd98f44751b Mon Sep 17 00:00:00 2001 From: Isaac Date: Tue, 26 Jan 2016 12:29:47 -0700 Subject: [PATCH 239/354] docs($cookiesProvider): clarify parameters description Fixed a grammatical mistake ("equals to"), made hyphenation consistent, fixed punctuation and clarified the sentence structure. Closes #13853 --- src/ngCookies/cookies.js | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/ngCookies/cookies.js b/src/ngCookies/cookies.js index 5bcf39bfeb76..28a761bf21de 100644 --- a/src/ngCookies/cookies.js +++ b/src/ngCookies/cookies.js @@ -34,16 +34,17 @@ angular.module('ngCookies', ['ng']). * The object may have following properties: * * - **path** - `{string}` - The cookie will be available only for this path and its - * sub-paths. By default, this would be the URL that appears in your base tag. + * sub-paths. By default, this is the URL that appears in your `` tag. * - **domain** - `{string}` - The cookie will be available only for this domain and - * its sub-domains. For obvious security reasons the user agent will not accept the - * cookie if the current domain is not a sub domain or equals to the requested domain. + * its sub-domains. For security reasons the user agent will not accept the cookie + * if the current domain is not a sub-domain of this domain or equal to it. * - **expires** - `{string|Date}` - String of the form "Wdy, DD Mon YYYY HH:MM:SS GMT" * or a Date object indicating the exact date/time this cookie will expire. - * - **secure** - `{boolean}` - The cookie will be available only in secured connection. + * - **secure** - `{boolean}` - If `true`, then the cookie will only be available through a + * secured connection. * - * Note: by default the address that appears in your `` tag will be used as path. - * This is important so that cookies will be visible for all routes in case html5mode is enabled + * Note: By default, the address that appears in your `` tag will be used as the path. + * This is important so that cookies will be visible for all routes when html5mode is enabled. * **/ var defaults = this.defaults = {}; From a60bbc12e8c5170e70d95f1b2c3e309b3b95cb84 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 18 Jan 2016 12:54:37 +0100 Subject: [PATCH 240/354] fix($animateCss): cancel fallback timeout when animation ends normally Previously, css animations would not cancel the timeout when the animation ends normally (calling end explicitly / transitionEnd event). This meant that the timeout callback fn was always called after 150% of the animation time was over. Since the animation was already closed at this point, it would not do any work twice, but simply remove the timer data from the element. This commit changes the behavior to cancel the timeout and remove the data when it is found during animation closing. Closes #13787 --- src/ngAnimate/animateCss.js | 7 +++++++ test/ngAnimate/.jshintrc | 3 ++- test/ngAnimate/animateCssSpec.js | 23 +++++++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/src/ngAnimate/animateCss.js b/src/ngAnimate/animateCss.js index 5025751e1dfc..65dc170428c4 100644 --- a/src/ngAnimate/animateCss.js +++ b/src/ngAnimate/animateCss.js @@ -756,6 +756,13 @@ var $AnimateCssProvider = ['$animateProvider', function($animateProvider) { element.off(events.join(' '), onAnimationProgress); } + //Cancel the fallback closing timeout and remove the timer data + var animationTimerData = element.data(ANIMATE_TIMER_KEY); + if (animationTimerData) { + $timeout.cancel(animationTimerData[0].timer); + element.removeData(ANIMATE_TIMER_KEY); + } + // if the preparation function fails then the promise is not setup if (runner) { runner.complete(!rejected); diff --git a/test/ngAnimate/.jshintrc b/test/ngAnimate/.jshintrc index d782d14e7ce4..d202a2b3bf1c 100644 --- a/test/ngAnimate/.jshintrc +++ b/test/ngAnimate/.jshintrc @@ -12,6 +12,7 @@ "TRANSITIONEND_EVENT": false, "TRANSITION_PROP": false, "ANIMATION_PROP": false, - "ANIMATIONEND_EVENT": false + "ANIMATIONEND_EVENT": false, + "ANIMATE_TIMER_KEY": false } } diff --git a/test/ngAnimate/animateCssSpec.js b/test/ngAnimate/animateCssSpec.js index 7de34ee58615..6e0b66073e76 100644 --- a/test/ngAnimate/animateCssSpec.js +++ b/test/ngAnimate/animateCssSpec.js @@ -1309,6 +1309,29 @@ describe("ngAnimate $animateCss", function() { expect(getPossiblyPrefixedStyleValue(element, 'transition-delay')).toBeOneOf('', '0s'); })); + + it("should cancel the timeout when the animation is ended normally", + inject(function($animateCss, $document, $rootElement, $timeout) { + + ss.addRule('.ng-enter', 'transition:10s linear all;'); + + var element = jqLite('
      '); + $rootElement.append(element); + jqLite($document[0].body).append($rootElement); + + var animator = $animateCss(element, { event: 'enter', structural: true }); + animator.start(); + triggerAnimationStartFrame(); + + expect(element).toHaveClass('ng-enter'); + expect(element).toHaveClass('ng-enter-active'); + + animator.end(); + + expect(element.data(ANIMATE_TIMER_KEY)).toBeUndefined(); + expect(function() {$timeout.verifyNoPendingTasks();}).not.toThrow(); + })); + }); describe("getComputedStyle", function() { From 5cb7d0e0468cf9531505636fc647351c03b2406a Mon Sep 17 00:00:00 2001 From: Michael Date: Thu, 28 Jan 2016 09:15:04 +0000 Subject: [PATCH 241/354] docs($compile): minor typo/style correction Closes #13864 --- src/ng/compile.js | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 7c4265f83427..89ff86e1abd9 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -385,7 +385,7 @@ *
      * **Note:** The compile function cannot handle directives that recursively use themselves in their - * own templates or compile functions. Compiling these directives results in an infinite loop and a + * own templates or compile functions. Compiling these directives results in an infinite loop and * stack overflow errors. * * This can be avoided by manually using $compile in the postLink function to imperatively compile @@ -584,10 +584,9 @@ * The {@link ng.$compile.directive.Attributes Attributes} object - passed as a parameter in the * `link()` or `compile()` functions. It has a variety of uses. * - * accessing *Normalized attribute names:* - * Directives like 'ngBind' can be expressed in many ways: 'ng:bind', `data-ng-bind`, or 'x-ng-bind'. - * the attributes object allows for normalized access to - * the attributes. + * * *Accessing normalized attribute names:* Directives like 'ngBind' can be expressed in many ways: + * 'ng:bind', `data-ng-bind`, or 'x-ng-bind'. The attributes object allows for normalized access + * to the attributes. * * * *Directive inter-communication:* All directives share the same instance of the attributes * object which allows the directives to use the attributes object as inter directive From 96d62cc0fc77248d7e3ec4aa458bac0d3e072629 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Tue, 26 Jan 2016 15:11:52 +0100 Subject: [PATCH 242/354] fix($parse): Preserve expensive checks when runnning $eval inside an expression When running an expression with expensive checks, there is a call to `$eval` or `$evalAsync` then that expression is also evaluated using expensive checks Closes: #13850 --- src/ng/parse.js | 39 ++++++++++++++++++-- src/ng/rootScope.js | 3 +- test/ng/parseSpec.js | 78 +++++++++++++++++++++++++++++++++++++++- test/ng/rootScopeSpec.js | 8 ++--- 4 files changed, 120 insertions(+), 8 deletions(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index 3d66a90a689f..76bbaa450706 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1735,10 +1735,19 @@ function $ParseProvider() { csp: noUnsafeEval, expensiveChecks: true }; + var runningChecksEnabled = false; - return function $parse(exp, interceptorFn, expensiveChecks) { + $parse.$$runningExpensiveChecks = function() { + return runningChecksEnabled; + }; + + return $parse; + + function $parse(exp, interceptorFn, expensiveChecks) { var parsedExpression, oneTime, cacheKey; + expensiveChecks = expensiveChecks || runningChecksEnabled; + switch (typeof exp) { case 'string': exp = exp.trim(); @@ -1764,6 +1773,9 @@ function $ParseProvider() { } else if (parsedExpression.inputs) { parsedExpression.$$watchDelegate = inputsWatchDelegate; } + if (expensiveChecks) { + parsedExpression = expensiveChecksInterceptor(parsedExpression); + } cache[cacheKey] = parsedExpression; } return addInterceptor(parsedExpression, interceptorFn); @@ -1774,7 +1786,30 @@ function $ParseProvider() { default: return addInterceptor(noop, interceptorFn); } - }; + } + + function expensiveChecksInterceptor(fn) { + if (!fn) return fn; + expensiveCheckFn.$$watchDelegate = fn.$$watchDelegate; + expensiveCheckFn.assign = expensiveChecksInterceptor(fn.assign); + expensiveCheckFn.constant = fn.constant; + expensiveCheckFn.literal = fn.literal; + for (var i = 0; fn.inputs && i < fn.inputs.length; ++i) { + fn.inputs[i] = expensiveChecksInterceptor(fn.inputs[i]); + } + + return expensiveCheckFn; + + function expensiveCheckFn(scope, locals, assign, inputs) { + var expensiveCheckOldValue = runningChecksEnabled; + runningChecksEnabled = true; + try { + return fn(scope, locals, assign, inputs); + } finally { + runningChecksEnabled = expensiveCheckOldValue; + } + } + } function expressionInputDirtyCheck(newValue, oldValueOfValue) { diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index ae374d6d7cd9..10f6d2842dc4 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -998,7 +998,7 @@ function $RootScopeProvider() { }); } - asyncQueue.push({scope: this, expression: expr, locals: locals}); + asyncQueue.push({scope: this, expression: $parse(expr), locals: locals}); }, $$postDigest: function(fn) { @@ -1090,6 +1090,7 @@ function $RootScopeProvider() { $applyAsync: function(expr) { var scope = this; expr && applyAsyncQueue.push($applyAsyncExpression); + expr = $parse(expr); scheduleApplyAsync(); function $applyAsyncExpression() { diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index a9b432bb80aa..23847a0be5ad 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -1666,7 +1666,6 @@ describe('parser', function() { $filterProvider = filterProvider; }])); - forEach([true, false], function(cspEnabled) { describe('csp: ' + cspEnabled, function() { @@ -2372,6 +2371,64 @@ describe('parser', function() { '$parse', 'isecwindow', 'Referencing the Window in Angular expressions is disallowed! ' + 'Expression: foo.w = 1'); })); + + they('should propagate expensive checks when calling $prop', + ['foo.w && true', + '$eval("foo.w && true")', + 'this["$eval"]("foo.w && true")', + 'bar;$eval("foo.w && true")', + '$eval("foo.w && true");bar', + '$eval("foo.w && true", null, false)', + '$eval("foo");$eval("foo.w && true")', + '$eval("$eval(\\"foo.w && true\\")")', + '$eval("foo.e()")', + '$evalAsync("foo.w && true")', + 'this["$evalAsync"]("foo.w && true")', + 'bar;$evalAsync("foo.w && true")', + '$evalAsync("foo.w && true");bar', + '$evalAsync("foo.w && true", null, false)', + '$evalAsync("foo");$evalAsync("foo.w && true")', + '$evalAsync("$evalAsync(\\"foo.w && true\\")")', + '$evalAsync("foo.e()")', + '$evalAsync("$eval(\\"foo.w && true\\")")', + '$eval("$evalAsync(\\"foo.w && true\\")")', + '$watch("foo.w && true")', + '$watchCollection("foo.w && true", foo.f)', + '$watchGroup(["foo.w && true"])', + '$applyAsync("foo.w && true")'], function(expression) { + inject(function($parse, $window) { + scope.foo = { + w: $window, + bar: 'bar', + e: function() { scope.$eval("foo.w && true"); }, + f: function() {} + }; + expect($parse.$$runningExpensiveChecks()).toEqual(false); + expect(function() { + scope.$eval($parse(expression, null, true)); + scope.$digest(); + }).toThrowMinErr( + '$parse', 'isecwindow', 'Referencing the Window in Angular expressions is disallowed! ' + + 'Expression: foo.w && true'); + expect($parse.$$runningExpensiveChecks()).toEqual(false); + }); + }); + + they('should restore the state of $$runningExpensiveChecks when the expression $prop throws', + ['$eval("foo.t()")', + '$evalAsync("foo.t()", {foo: foo})'], function(expression) { + inject(function($parse, $window) { + scope.foo = { + t: function() { throw new Error(); } + }; + expect($parse.$$runningExpensiveChecks()).toEqual(false); + expect(function() { + scope.$eval($parse(expression, null, true)); + scope.$digest(); + }).toThrow(); + expect($parse.$$runningExpensiveChecks()).toEqual(false); + }); + }); }); }); @@ -2932,6 +2989,25 @@ describe('parser', function() { expect(log).toEqual(''); })); + it('should work with expensive checks', inject(function($parse, $rootScope, log) { + var fn = $parse('::foo', null, true); + $rootScope.$watch(fn, function(value, old) { if (value !== old) log(value); }); + + $rootScope.$digest(); + expect($rootScope.$$watchers.length).toBe(1); + + $rootScope.foo = 'bar'; + $rootScope.$digest(); + expect($rootScope.$$watchers.length).toBe(0); + expect(log).toEqual('bar'); + log.reset(); + + $rootScope.foo = 'man'; + $rootScope.$digest(); + expect($rootScope.$$watchers.length).toBe(0); + expect(log).toEqual(''); + })); + it('should have a stable value if at the end of a $digest it has a defined value', inject(function($parse, $rootScope, log) { var fn = $parse('::foo'); $rootScope.$watch(fn, function(value, old) { if (value !== old) log(value); }); diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index 015db507ebb5..7d9d6ecf3de1 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -1387,7 +1387,7 @@ describe('Scope', function() { expect(child.log).toBe('child context'); })); - it('should operate only with a single queue across all child and isolate scopes', inject(function($rootScope) { + it('should operate only with a single queue across all child and isolate scopes', inject(function($rootScope, $parse) { var childScope = $rootScope.$new(); var isolateScope = $rootScope.$new(true); @@ -1398,9 +1398,9 @@ describe('Scope', function() { expect(childScope.$$asyncQueue).toBe($rootScope.$$asyncQueue); expect(isolateScope.$$asyncQueue).toBeUndefined(); expect($rootScope.$$asyncQueue).toEqual([ - {scope: $rootScope, expression: 'rootExpression'}, - {scope: childScope, expression: 'childExpression'}, - {scope: isolateScope, expression: 'isolateExpression'} + {scope: $rootScope, expression: $parse('rootExpression')}, + {scope: childScope, expression: $parse('childExpression')}, + {scope: isolateScope, expression: $parse('isolateExpression')} ]); })); From 0b7fff303f46202bbae1ff3ca9d0e5fa76e0fc9a Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Thu, 28 Jan 2016 15:25:45 +0100 Subject: [PATCH 243/354] fix($parse): Copy `inputs` for expressions with expensive checks Closes: #13871 --- src/ng/parse.js | 1 + test/ng/parseSpec.js | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/src/ng/parse.js b/src/ng/parse.js index 76bbaa450706..eeefc2205b6c 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -1797,6 +1797,7 @@ function $ParseProvider() { for (var i = 0; fn.inputs && i < fn.inputs.length; ++i) { fn.inputs[i] = expensiveChecksInterceptor(fn.inputs[i]); } + expensiveCheckFn.inputs = fn.inputs; return expensiveCheckFn; diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index 23847a0be5ad..9b268972ae58 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -2429,6 +2429,13 @@ describe('parser', function() { expect($parse.$$runningExpensiveChecks()).toEqual(false); }); }); + + it('should handle `inputs` when running with expensive checks', inject(function($parse) { + expect(function() { + scope.$watch($parse('a + b', null, true), noop); + scope.$digest(); + }).not.toThrow(); + })); }); }); From dc158e7e40624ef94c66560386522ef7e991a9ce Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 28 Jan 2016 17:03:36 +0100 Subject: [PATCH 244/354] fix(ngAnimateChildren): make it compatible with ngIf Previously, ngAnimateChildren would set the data on the element in an $observe listener, which means the data was available after one digest happend. This is too late when the element is animated immediately after compilation, as happens with ngIf. Now the data is also set right in the linking function. Fixes #13865 Closes #13876 --- src/ngAnimate/animateChildrenDirective.js | 23 +++++++++++++++-------- test/ngAnimate/animateSpec.js | 16 ++++++++++++++++ 2 files changed, 31 insertions(+), 8 deletions(-) diff --git a/src/ngAnimate/animateChildrenDirective.js b/src/ngAnimate/animateChildrenDirective.js index 3962a632d890..967c4d8300b4 100644 --- a/src/ngAnimate/animateChildrenDirective.js +++ b/src/ngAnimate/animateChildrenDirective.js @@ -1,15 +1,22 @@ 'use strict'; -var $$AnimateChildrenDirective = [function() { - return function(scope, element, attrs) { - var val = attrs.ngAnimateChildren; - if (angular.isString(val) && val.length === 0) { //empty attribute - element.data(NG_ANIMATE_CHILDREN_DATA, true); - } else { - attrs.$observe('ngAnimateChildren', function(value) { +var $$AnimateChildrenDirective = ['$interpolate', function($interpolate) { + return { + link: function(scope, element, attrs) { + var val = attrs.ngAnimateChildren; + if (angular.isString(val) && val.length === 0) { //empty attribute + element.data(NG_ANIMATE_CHILDREN_DATA, true); + } else { + // Interpolate and set the value, so that it is available to + // animations that run right after compilation + setData($interpolate(attrs.ngAnimateChildren)(scope)); + attrs.$observe('ngAnimateChildren', setData); + } + + function setData(value) { value = value === 'on' || value === 'true'; element.data(NG_ANIMATE_CHILDREN_DATA, value); - }); + } } }; }]; diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index 05c50b47c5a4..f369909ffe98 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1492,6 +1492,22 @@ describe("animations", function() { dealoc(element); dealoc(child); })); + + it('should respect the value if the directive is on an element with ngIf', + inject(function($animate, $rootScope, $rootElement, $compile) { + + parent.attr('ng-animate-children', 'true'); + parent.attr('ng-if', 'true'); + element.attr('ng-if', 'true'); + + $rootElement.append(parent); + parent.append(element); + + $compile(parent)($rootScope); + $rootScope.$digest(); + + expect(captureLog.length).toBe(2); + })); }); describe('.pin()', function() { From af9c2d71e2ceac1870b52af17cf0891eff58fb28 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 28 Jan 2016 19:22:02 +0100 Subject: [PATCH 245/354] docs(ngAnimateChildren) add docs --- src/ngAnimate/animateChildrenDirective.js | 80 ++++++++++++++++++++++- test/ngAnimate/animateSpec.js | 2 +- 2 files changed, 80 insertions(+), 2 deletions(-) diff --git a/src/ngAnimate/animateChildrenDirective.js b/src/ngAnimate/animateChildrenDirective.js index 967c4d8300b4..129fe5bad1fe 100644 --- a/src/ngAnimate/animateChildrenDirective.js +++ b/src/ngAnimate/animateChildrenDirective.js @@ -1,5 +1,83 @@ 'use strict'; +/** + * @ngdoc directive + * @name ngAnimateChildren + * @restrict AE + * @element ANY + * + * @description + * + * ngAnimateChildren allows you to specify that children of this element should animate even if any + * of the children's parents are currently animating. By default, when an element has an active `enter`, `leave`, or `move` + * (structural) animation, child elements that also have an active structural animation are not animated. + * + * Note that even if `ngAnimteChildren` is set, no child animations will run when the parent element is removed from the DOM (`leave` animation). + * + * + * @param {string} ngAnimateChildren If the value is empty, `true` or `on`, + * then child animations are allowed. If the value is `false`, child animations are not allowed. + * + * @example + * + +
      + + +
      +
      +
      + List of items: +
      Item {{item}}
      +
      +
      +
      +
      + + + .container.ng-enter, + .container.ng-leave { + transition: all ease 1.5s; + } + + .container.ng-enter, + .container.ng-leave-active { + opacity: 0; + } + + .container.ng-leave, + .container.ng-enter-active { + opacity: 1; + } + + .item { + background: firebrick; + color: #FFF; + margin-bottom: 10px; + } + + .item.ng-enter, + .item.ng-leave { + transition: transform 1.5s ease; + } + + .item.ng-enter { + transform: translateX(50px); + } + + .item.ng-enter-active { + transform: translateX(0); + } + + + angular.module('ngAnimateChildren', ['ngAnimate']) + .controller('mainController', function() { + this.animateChildren = false; + this.enterElement = false; + }); + +
      + */ var $$AnimateChildrenDirective = ['$interpolate', function($interpolate) { return { link: function(scope, element, attrs) { @@ -9,7 +87,7 @@ var $$AnimateChildrenDirective = ['$interpolate', function($interpolate) { } else { // Interpolate and set the value, so that it is available to // animations that run right after compilation - setData($interpolate(attrs.ngAnimateChildren)(scope)); + setData($interpolate(val)(scope)); attrs.$observe('ngAnimateChildren', setData); } diff --git a/test/ngAnimate/animateSpec.js b/test/ngAnimate/animateSpec.js index f369909ffe98..38008aa0d22b 100644 --- a/test/ngAnimate/animateSpec.js +++ b/test/ngAnimate/animateSpec.js @@ -1494,7 +1494,7 @@ describe("animations", function() { })); it('should respect the value if the directive is on an element with ngIf', - inject(function($animate, $rootScope, $rootElement, $compile) { + inject(function($rootScope, $rootElement, $compile) { parent.attr('ng-animate-children', 'true'); parent.attr('ng-if', 'true'); From df6e731506831a3dc7f44c9a90abe17515450b3e Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Thu, 28 Jan 2016 20:47:36 +0200 Subject: [PATCH 246/354] fix(select): handle corner case of adding options via a custom directive Under specific circumstances (e.g. adding options via a directive with `replace: true` and a structural directive in its template), an error occurred when trying to call `hasAttribute()` on a comment node (which doesn't support that method). This commit fixes it by filtering out comment nodes in the `addOption()` method. Fixes #13874 Closes #13878 --- src/ng/directive/select.js | 5 +++-- test/ng/directive/selectSpec.js | 29 +++++++++++++++++++++++++++-- 2 files changed, 30 insertions(+), 4 deletions(-) diff --git a/src/ng/directive/select.js b/src/ng/directive/select.js index 1b03762a1cdf..a35f886fb757 100644 --- a/src/ng/directive/select.js +++ b/src/ng/directive/select.js @@ -80,6 +80,9 @@ var SelectController = // Tell the select control that an option, with the given value, has been added self.addOption = function(value, element) { + // Skip comment nodes, as they only pollute the `optionsMap` + if (element[0].nodeType === NODE_TYPE_COMMENT) return; + assertNotHasOwnProperty(value, '"option value"'); if (value === '') { self.emptyOption = element; @@ -452,7 +455,6 @@ var optionDirective = ['$interpolate', function($interpolate) { restrict: 'E', priority: 100, compile: function(element, attr) { - if (isDefined(attr.value)) { // If the value attribute is defined, check if it contains an interpolation var interpolateValueFn = $interpolate(attr.value, true); @@ -466,7 +468,6 @@ var optionDirective = ['$interpolate', function($interpolate) { } return function(scope, element, attr) { - // This is an optimization over using ^^ since we don't want to have to search // all the way to the root of the DOM for every single option element var selectCtrlName = '$selectController', diff --git a/test/ng/directive/selectSpec.js b/test/ng/directive/selectSpec.js index 23a961611cce..7749d2a976db 100644 --- a/test/ng/directive/selectSpec.js +++ b/test/ng/directive/selectSpec.js @@ -44,6 +44,17 @@ describe('select', function() { } }; }); + + $compileProvider.directive('myOptions', function() { + return { + scope: {myOptions: '='}, + replace: true, + template: + '' + }; + }); })); beforeEach(inject(function($rootScope, _$compile_) { @@ -313,7 +324,7 @@ describe('select', function() { }); - it('should cope with a dynamic empty option added to a static empty option', function() { + it('should cope with a dynamic empty option added to a static empty option', function() { scope.dynamicOptions = []; scope.robot = 'x'; compile('' + @@ -611,6 +622,20 @@ describe('select', function() { }); + + it('should not break when adding options via a directive with `replace: true` ' + + 'and a structural directive in its template', + function() { + scope.options = [ + {value: '1', label: 'Option 1'}, + {value: '2', label: 'Option 2'}, + {value: '3', label: 'Option 3'} + ]; + compile(''); + + expect(element).toEqualSelect([unknownValue()], '1', '2', '3'); + } + ); }); From 571afd6558786d7b99e2aebd307b4a94c9f2bb87 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Fri, 29 Jan 2016 12:55:17 +0200 Subject: [PATCH 247/354] fix(dateFilter, input): fix Date parsing in IE/Edge when timezone offset contains `:` When `Date.parse`-ing a date string, IE and Edge don't recognize the timezone offset in the format `+HH:mm` (but only without the `:`). According to [the spec][1], the timezone offset should contain `:`. The [ISO 8601 Standard][2] allows both forms (with and without `:`). Although the `Date` implementation in JavaScript does not 100% follow the ISO 8601 Standard (it's just _based on it_), all other browsers seem to recognize both forms as well. [1]: http://www.ecma-international.org/ecma-262/5.1/#sec-15.9.1.15 [2]: https://en.wikipedia.org/wiki/ISO_8601#Time_offsets_from_UTC Fixes #13880 Closes #13887 --- src/Angular.js | 8 ++- src/ng/filter/filters.js | 2 +- test/ng/directive/inputSpec.js | 115 ++++++++++++++++++++------------- test/ng/filter/filtersSpec.js | 33 +++++----- 4 files changed, 94 insertions(+), 64 deletions(-) diff --git a/src/Angular.js b/src/Angular.js index a78102ba2925..b4037578e434 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -1205,7 +1205,10 @@ function fromJson(json) { } +var ALL_COLONS = /:/g; function timezoneToOffset(timezone, fallback) { + // IE/Edge do not "understand" colon (`:`) in timezone + timezone = timezone.replace(ALL_COLONS, ''); var requestedTimezoneOffset = Date.parse('Jan 01, 1970 00:00:00 ' + timezone) / 60000; return isNaN(requestedTimezoneOffset) ? fallback : requestedTimezoneOffset; } @@ -1220,8 +1223,9 @@ function addDateMinutes(date, minutes) { function convertTimezoneToLocal(date, timezone, reverse) { reverse = reverse ? -1 : 1; - var timezoneOffset = timezoneToOffset(timezone, date.getTimezoneOffset()); - return addDateMinutes(date, reverse * (timezoneOffset - date.getTimezoneOffset())); + var dateTimezoneOffset = date.getTimezoneOffset(); + var timezoneOffset = timezoneToOffset(timezone, dateTimezoneOffset); + return addDateMinutes(date, reverse * (timezoneOffset - dateTimezoneOffset)); } diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index d03fcac7616a..036d38832c40 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -607,7 +607,7 @@ function dateFilter($locale) { var dateTimezoneOffset = date.getTimezoneOffset(); if (timezone) { - dateTimezoneOffset = timezoneToOffset(timezone, date.getTimezoneOffset()); + dateTimezoneOffset = timezoneToOffset(timezone, dateTimezoneOffset); date = convertTimezoneToLocal(date, timezone, true); } forEach(parts, function(value) { diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 0ffbb456eac5..4b9727913737 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -628,17 +628,22 @@ describe('input', function() { }); - it('should use any timezone if specified in the options', function() { - var inputElm = helper.compileInput(''); + they('should use any timezone if specified in the options (format: $prop)', + {'+HHmm': '+0500', '+HH:mm': '+05:00'}, + function(tz) { + var ngModelOptions = "{timezone: '" + tz + "'}"; + var inputElm = helper.compileInput( + ''); - helper.changeInputValueTo('2013-07'); - expect(+$rootScope.value).toBe(Date.UTC(2013, 5, 30, 19, 0, 0)); + helper.changeInputValueTo('2013-07'); + expect(+$rootScope.value).toBe(Date.UTC(2013, 5, 30, 19, 0, 0)); - $rootScope.$apply(function() { - $rootScope.value = new Date(Date.UTC(2014, 5, 30, 19, 0, 0)); - }); - expect(inputElm.val()).toBe('2014-07'); - }); + $rootScope.$apply(function() { + $rootScope.value = new Date(Date.UTC(2014, 5, 30, 19, 0, 0)); + }); + expect(inputElm.val()).toBe('2014-07'); + } + ); it('should label parse errors as `month`', function() { @@ -865,17 +870,22 @@ describe('input', function() { }); - it('should use any timezone if specified in the options', function() { - var inputElm = helper.compileInput(''); + they('should use any timezone if specified in the options (format: $prop)', + {'+HHmm': '+0500', '+HH:mm': '+05:00'}, + function(tz) { + var ngModelOptions = "{timezone: '" + tz + "'}"; + var inputElm = helper.compileInput( + ''); - helper.changeInputValueTo('2013-W03'); - expect(+$rootScope.value).toBe(Date.UTC(2013, 0, 16, 19, 0, 0)); + helper.changeInputValueTo('2013-W03'); + expect(+$rootScope.value).toBe(Date.UTC(2013, 0, 16, 19, 0, 0)); - $rootScope.$apply(function() { - $rootScope.value = new Date(Date.UTC(2014, 0, 16, 19, 0, 0)); - }); - expect(inputElm.val()).toBe('2014-W03'); - }); + $rootScope.$apply(function() { + $rootScope.value = new Date(Date.UTC(2014, 0, 16, 19, 0, 0)); + }); + expect(inputElm.val()).toBe('2014-W03'); + } + ); it('should label parse errors as `week`', function() { @@ -1066,17 +1076,22 @@ describe('input', function() { }); - it('should use any timezone if specified in the options', function() { - var inputElm = helper.compileInput(''); + they('should use any timezone if specified in the options (format: $prop)', + {'+HHmm': '+0500', '+HH:mm': '+05:00'}, + function(tz) { + var ngModelOptions = "{timezone: '" + tz + "'}"; + var inputElm = helper.compileInput( + ''); - helper.changeInputValueTo('2000-01-01T06:02'); - expect(+$rootScope.value).toBe(Date.UTC(2000, 0, 1, 1, 2, 0)); + helper.changeInputValueTo('2000-01-01T06:02'); + expect(+$rootScope.value).toBe(Date.UTC(2000, 0, 1, 1, 2, 0)); - $rootScope.$apply(function() { - $rootScope.value = new Date(Date.UTC(2001, 0, 1, 1, 2, 0)); - }); - expect(inputElm.val()).toBe('2001-01-01T06:02:00.000'); - }); + $rootScope.$apply(function() { + $rootScope.value = new Date(Date.UTC(2001, 0, 1, 1, 2, 0)); + }); + expect(inputElm.val()).toBe('2001-01-01T06:02:00.000'); + } + ); it('should fallback to default timezone in case an unknown timezone was passed', function() { @@ -1390,17 +1405,22 @@ describe('input', function() { }); - it('should use any timezone if specified in the options', function() { - var inputElm = helper.compileInput(''); + they('should use any timezone if specified in the options (format: $prop)', + {'+HHmm': '+0500', '+HH:mm': '+05:00'}, + function(tz) { + var ngModelOptions = "{timezone: '" + tz + "'}"; + var inputElm = helper.compileInput( + ''); - helper.changeInputValueTo('23:02:00'); - expect(+$rootScope.value).toBe(Date.UTC(1970, 0, 1, 18, 2, 0)); + helper.changeInputValueTo('23:02:00'); + expect(+$rootScope.value).toBe(Date.UTC(1970, 0, 1, 18, 2, 0)); - $rootScope.$apply(function() { - $rootScope.value = new Date(Date.UTC(1971, 0, 1, 18, 2, 0)); - }); - expect(inputElm.val()).toBe('23:02:00.000'); - }); + $rootScope.$apply(function() { + $rootScope.value = new Date(Date.UTC(1971, 0, 1, 18, 2, 0)); + }); + expect(inputElm.val()).toBe('23:02:00.000'); + } + ); it('should allow to specify the milliseconds', function() { @@ -1697,17 +1717,22 @@ describe('input', function() { }); - it('should use any timezone if specified in the options', function() { - var inputElm = helper.compileInput(''); + they('should use any timezone if specified in the options (format: $prop)', + {'+HHmm': '+0500', '+HH:mm': '+05:00'}, + function(tz) { + var ngModelOptions = "{timezone: '" + tz + "'}"; + var inputElm = helper.compileInput( + ''); - helper.changeInputValueTo('2000-01-01'); - expect(+$rootScope.value).toBe(Date.UTC(1999, 11, 31, 19, 0, 0)); + helper.changeInputValueTo('2000-01-01'); + expect(+$rootScope.value).toBe(Date.UTC(1999, 11, 31, 19, 0, 0)); - $rootScope.$apply(function() { - $rootScope.value = new Date(Date.UTC(2000, 11, 31, 19, 0, 0)); - }); - expect(inputElm.val()).toBe('2001-01-01'); - }); + $rootScope.$apply(function() { + $rootScope.value = new Date(Date.UTC(2000, 11, 31, 19, 0, 0)); + }); + expect(inputElm.val()).toBe('2001-01-01'); + } + ); it('should label parse errors as `date`', function() { diff --git a/test/ng/filter/filtersSpec.js b/test/ng/filter/filtersSpec.js index 50b7612cedcf..3972e5d6c90a 100644 --- a/test/ng/filter/filtersSpec.js +++ b/test/ng/filter/filtersSpec.js @@ -1,7 +1,6 @@ 'use strict'; describe('filters', function() { - var filter; beforeEach(inject(function($filter) { @@ -165,13 +164,12 @@ describe('filters', function() { })); }); - describe('number', function() { var number; - beforeEach(inject(function($rootScope) { + beforeEach(function() { number = filter('number'); - })); + }); it('should do basic filter', function() { @@ -270,17 +268,16 @@ describe('filters', function() { }); describe('date', function() { - - var morning = new angular.mock.TzDate(+5, '2010-09-03T12:05:08.001Z'); //7am - var noon = new angular.mock.TzDate(+5, '2010-09-03T17:05:08.012Z'); //12pm - var midnight = new angular.mock.TzDate(+5, '2010-09-03T05:05:08.123Z'); //12am - var earlyDate = new angular.mock.TzDate(+5, '0001-09-03T05:05:08.000Z'); - var secondWeek = new angular.mock.TzDate(+5, '2013-01-11T12:00:00.000Z'); //Friday Jan 11, 2012 + var morning = new angular.mock.TzDate(+5, '2010-09-03T12:05:08.001Z'); //7am + var noon = new angular.mock.TzDate(+5, '2010-09-03T17:05:08.012Z'); //12pm + var midnight = new angular.mock.TzDate(+5, '2010-09-03T05:05:08.123Z'); //12am + var earlyDate = new angular.mock.TzDate(+5, '0001-09-03T05:05:08.000Z'); + var secondWeek = new angular.mock.TzDate(+5, '2013-01-11T12:00:00.000Z'); //Friday Jan 11, 2013 var date; - beforeEach(inject(function($filter) { - date = $filter('date'); - })); + beforeEach(function() { + date = filter('date'); + }); it('should ignore falsy inputs', function() { expect(date(null)).toBeNull(); @@ -456,7 +453,6 @@ describe('filters', function() { expect(date(morning, 'yy/xxx')).toEqual('10/xxx'); }); - it('should support various iso8061 date strings with timezone as input', function() { var format = 'yyyy-MM-dd ss'; @@ -479,7 +475,6 @@ describe('filters', function() { expect(date('2003-09-10T13Z', format)).toEqual('2003-09-' + localDay + ' 00'); }); - it('should parse iso8061 date strings without timezone as local time', function() { var format = 'yyyy-MM-dd HH-mm-ss'; @@ -514,7 +509,13 @@ describe('filters', function() { }); it('should support conversion to any timezone', function() { - expect(date(new Date(Date.UTC(2003, 8, 10, 3, 2, 4)), 'yyyy-MM-dd HH-mm-ssZ', 'GMT+0500')).toEqual('2003-09-10 08-02-04+0500'); + var dateObj = new Date(Date.UTC(2003, 8, 10, 3, 2, 4)); + var format = 'yyyy-MM-dd HH-mm-ssZ'; + + expect(date(dateObj, format, '+0500')).toEqual('2003-09-10 08-02-04+0500'); + expect(date(dateObj, format, '+05:00')).toEqual('2003-09-10 08-02-04+0500'); + expect(date(dateObj, format, 'GMT+0500')).toEqual('2003-09-10 08-02-04+0500'); + expect(date(dateObj, format, 'GMT+05:00')).toEqual('2003-09-10 08-02-04+0500'); }); it('should fallback to default timezone in case an unknown timezone was passed', function() { From afb298b7ff91b3a00e2db252b60218e21332329a Mon Sep 17 00:00:00 2001 From: Smith Date: Fri, 29 Jan 2016 18:53:53 -0800 Subject: [PATCH 248/354] docs(error/$rootScope:inprog): fix typos ("a $apply" --> "an $apply") Closes #13896 --- docs/content/error/$rootScope/inprog.ngdoc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/content/error/$rootScope/inprog.ngdoc b/docs/content/error/$rootScope/inprog.ngdoc index 2ba0aaf3d0b6..10da4c211516 100644 --- a/docs/content/error/$rootScope/inprog.ngdoc +++ b/docs/content/error/$rootScope/inprog.ngdoc @@ -161,7 +161,7 @@ In this second scenario, we are already inside a `$digest` when the ngFocus dire call to `$apply()`, causing this error to be thrown. It is possible to workaround this problem by moving the call to set the focus outside of the digest, -by using `$timeout(fn, 0, false)`, where the `false` value tells Angular not to wrap this `fn` in a +by using `$timeout(fn, 0, false)`, where the `false` value tells Angular not to wrap this `fn` in an `$apply` block: ``` @@ -200,7 +200,7 @@ the top of the call stack. Once you have identified this call you work your way up the stack to see what the problem is. * If the second call was made in your application code then you should look at why this code has been -called from within a `$apply`/`$digest`. It may be a simple oversight or maybe it fits with the +called from within an `$apply`/`$digest`. It may be a simple oversight or maybe it fits with the sync/async scenario described earlier. * If the second call was made inside an Angular directive then it is likely that it matches the second From e91811095bd19d6d6c9d30a715f229e39fe91c4c Mon Sep 17 00:00:00 2001 From: Prayag Verma Date: Sun, 31 Jan 2016 13:01:07 +0530 Subject: [PATCH 249/354] docs(misc/downloading): fix typo (it --> in) Closes #13899 --- docs/content/misc/downloading.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/misc/downloading.ngdoc b/docs/content/misc/downloading.ngdoc index 67606cbe533f..68621be7c40f 100644 --- a/docs/content/misc/downloading.ngdoc +++ b/docs/content/misc/downloading.ngdoc @@ -46,7 +46,7 @@ Download the version you want and have fun. Each directory under includes the following set of files: * __`angular.js`__ — This file is non-obfuscated, non-minified, and human-readable by -opening it it any editor or browser. In order to get better error messages during development, you +opening it in any editor or browser. In order to get better error messages during development, you should always use this non-minified angular script. * __`angular.min.js`__ — This is a minified and obfuscated version of From 8dc4c75adefea96af0ee119e530929f836a04308 Mon Sep 17 00:00:00 2001 From: Wojciech Krzystek Date: Sat, 30 Jan 2016 20:10:37 +0100 Subject: [PATCH 250/354] docs($http): reword the XSRF attack overview Previous version emphasised "gaining user's private data". While this perfectly describes JSON vulnerability (which is based on XSRF), data theft suits XSS more. Pure XSRF is more about performing requests that have side effects. Closes #13901 --- src/ng/http.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index c3ba1120fde4..b00c26a8ff03 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -749,13 +749,13 @@ function $HttpProvider() { * * ### Cross Site Request Forgery (XSRF) Protection * - * [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) is a technique by which - * an unauthorized site can gain your user's private data. Angular provides a mechanism - * to counter XSRF. When performing XHR requests, the $http service reads a token from a cookie - * (by default, `XSRF-TOKEN`) and sets it as an HTTP header (`X-XSRF-TOKEN`). Since only - * JavaScript that runs on your domain could read the cookie, your server can be assured that - * the XHR came from JavaScript running on your domain. The header will not be set for - * cross-domain requests. + * [XSRF](http://en.wikipedia.org/wiki/Cross-site_request_forgery) is an attack technique by + * which the attacker can trick an authenticated user into unknowingly executing actions on your + * website. Angular provides a mechanism to counter XSRF. When performing XHR requests, the + * $http service reads a token from a cookie (by default, `XSRF-TOKEN`) and sets it as an HTTP + * header (`X-XSRF-TOKEN`). Since only JavaScript that runs on your domain could read the + * cookie, your server can be assured that the XHR came from JavaScript running on your domain. + * The header will not be set for cross-domain requests. * * To take advantage of this, your server needs to set a token in a JavaScript readable session * cookie called `XSRF-TOKEN` on the first HTTP GET request. On subsequent XHR requests the From f47e218006029f39b4785d820b430de3a0eebcb0 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Mon, 30 Nov 2015 22:28:45 +0100 Subject: [PATCH 251/354] fix($parse): prevent assignment on constructor properties Prevent malicious attacks involving assignment on `constructor` properties. Closes #13417 --- src/ng/parse.js | 17 +++++++++++++---- test/ng/parseSpec.js | 6 ++++++ 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/src/ng/parse.js b/src/ng/parse.js index eeefc2205b6c..3f933061999c 100644 --- a/src/ng/parse.js +++ b/src/ng/parse.js @@ -988,6 +988,9 @@ ASTCompiler.prototype = { intoId = intoId || this.nextId(); self.recurse(ast.object, left, undefined, function() { self.if_(self.notNull(left), function() { + if (create && create !== 1) { + self.addEnsureSafeAssignContext(left); + } if (ast.computed) { right = self.nextId(); self.recurse(ast.property, right); @@ -1602,8 +1605,11 @@ ASTInterpreter.prototype = { rhs = right(scope, locals, assign, inputs); rhs = getStringValue(rhs); ensureSafeMemberName(rhs, expression); - if (create && create !== 1 && lhs && !(lhs[rhs])) { - lhs[rhs] = {}; + if (create && create !== 1) { + ensureSafeAssignContext(lhs); + if (lhs && !(lhs[rhs])) { + lhs[rhs] = {}; + } } value = lhs[rhs]; ensureSafeObject(value, expression); @@ -1618,8 +1624,11 @@ ASTInterpreter.prototype = { nonComputedMember: function(left, right, expensiveChecks, context, create, expression) { return function(scope, locals, assign, inputs) { var lhs = left(scope, locals, assign, inputs); - if (create && create !== 1 && lhs && !(lhs[right])) { - lhs[right] = {}; + if (create && create !== 1) { + ensureSafeAssignContext(lhs); + if (lhs && !(lhs[right])) { + lhs[right] = {}; + } } var value = lhs != null ? lhs[right] : undefined; if (expensiveChecks || isPossiblyDangerousMemberName(right)) { diff --git a/test/ng/parseSpec.js b/test/ng/parseSpec.js index 9b268972ae58..45512a387de1 100644 --- a/test/ng/parseSpec.js +++ b/test/ng/parseSpec.js @@ -2795,6 +2795,12 @@ describe('parser', function() { expect(function() { scope.$eval("objConstructor = {}.constructor; objConstructor.join = ''"); }).toThrow(); + expect(function() { + scope.$eval("'a'.constructor.prototype.charAt=[].join"); + }).toThrow(); + expect(function() { + scope.$eval("'a'.constructor.prototype.charCodeAt=[].concat"); + }).toThrow(); }); }); From 89690502d16143e87f1f3567ba9a6346a711bf28 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Sun, 31 Jan 2016 12:45:18 +0200 Subject: [PATCH 252/354] docs(guide/directive): minor fixes/improvements Closes #13908 --- docs/content/guide/directive.ngdoc | 44 +++++++++++++++--------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 2217337b05e5..85d8c4165acf 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -303,6 +303,7 @@ The `restrict` option is typically set to: * `'A'` - only matches attribute name * `'E'` - only matches element name * `'C'` - only matches class name +* `'M'` - only matches comment These restrictions can all be combined as needed: @@ -646,6 +647,7 @@ To do this, we need to use the `transclude` option. return { restrict: 'E', transclude: true, + scope: {}, templateUrl: 'my-dialog.html' }; }); @@ -656,8 +658,7 @@ To do this, we need to use the `transclude` option.
      -
      -
      +
      @@ -679,7 +680,7 @@ that redefines `name` as `Jeff`. What do you think the `{{name}}` binding will r transclude: true, scope: {}, templateUrl: 'my-dialog.html', - link: function (scope, element) { + link: function (scope) { scope.name = 'Jeff'; } }; @@ -691,8 +692,7 @@ that redefines `name` as `Jeff`. What do you think the `{{name}}` binding will r -
      -
      +
      @@ -703,7 +703,7 @@ The `transclude` option changes the way scopes are nested. It makes it so that t transcluded directive have whatever scope is outside the directive, rather than whatever scope is on the inside. In doing so, it gives the contents access to the outside scope. -Note that if the directive did not create its own scope, then `scope` in `scope.name = 'Jeff';` would +Note that if the directive did not create its own scope, then `scope` in `scope.name = 'Jeff'` would reference the outside scope and we would see `Jeff` in the output. This behavior makes sense for a directive that wraps some content, because otherwise you'd have to @@ -776,9 +776,9 @@ function. Often it's desirable to pass data from the isolate scope via an expression to the parent scope, this can be done by passing a map of local variable names and values into the expression -wrapper fn. For example, the hideDialog function takes a message to display when the dialog is hidden. -This is specified in the directive by calling `close({message: 'closing for now'})`. Then the local -variable `message` will be available within the `on-close` expression. +wrapper function. For example, the `hideDialog` function takes a message to display when the dialog +is hidden. This is specified in the directive by calling `close({message: 'closing for now'})`. +Then the local variable `message` will be available within the `on-close` expression.
      **Best Practice:** use `&attr` in the `scope` option when you want your directive @@ -837,7 +837,7 @@ element? }]); - Drag ME + Drag Me @@ -882,7 +882,7 @@ to which tab is active. }) .directive('myPane', function() { return { - require: '^myTabs', + require: '^^myTabs', restrict: 'E', transclude: true, scope: { @@ -898,11 +898,9 @@ to which tab is active. -

      Hello

      Lorem ipsum dolor sit amet

      -

      World

      Mauris elementum elementum enim at suscipit.

      counter: {{i || 0}}

      @@ -919,22 +917,25 @@ to which tab is active.
      -
      +
      +

      {{title}}

      +
      -The `myPane` directive has a `require` option with value `^myTabs`. When a directive uses this -option, `$compile` will throw an error unless the specified controller is found. The `^` prefix -means that this directive searches for the controller on its parents (without the `^` prefix, the -directive would look for the controller on just its own element). +The `myPane` directive has a `require` option with value `^^myTabs`. When a directive uses this +option, `$compile` will throw an error unless the specified controller is found. The `^^` prefix +means that this directive searches for the controller on its parents. (A `^` prefix would make the +directive look for the controller on its own element or its parents; without any prefix, the +directive would look on its own element only.) So where does this `myTabs` controller come from? Directives can specify controllers using the unsurprisingly named `controller` option. As you can see, the `myTabs` directive uses this option. Just like `ngController`, this option attaches a controller to the template of the directive. -If it is necessary to reference the controller or any functions bound to the controller's scope in -the template, you can use the option `controllerAs` to specify the name of the controller as an alias. +If it is necessary to reference the controller or any functions bound to the controller from the +template, you can use the option `controllerAs` to specify the name of the controller as an alias. The directive needs to define a scope for this configuration to be used. This is particularly useful in the case when the directive is used as a component. @@ -949,7 +950,7 @@ The corresponding parameter being sent to the `link` function will also be an ar angular.module('docsTabsExample', []) .directive('myPane', function() { return { - require: ['^myTabs', '^ngModel'], + require: ['^^myTabs', 'ngModel'], restrict: 'E', transclude: true, scope: { @@ -985,4 +986,3 @@ available in the {@link guide/compiler compiler guide}. The {@link ng.$compile `$compile` API} page has a comprehensive list of directive options for reference. - From ab5c7698bb106669ca31b5f79a95afa54d65c5f1 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Sun, 31 Jan 2016 12:55:39 +0100 Subject: [PATCH 253/354] fix($rootScope): Set no context when calling helper functions for $watch When calling a $watch getter or listener, do not expose the inner workings with `this`. Closes: #13909 --- src/ng/rootScope.js | 8 +++++--- test/ng/rootScopeSpec.js | 14 ++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/src/ng/rootScope.js b/src/ng/rootScope.js index 10f6d2842dc4..db7ea1b040f7 100644 --- a/src/ng/rootScope.js +++ b/src/ng/rootScope.js @@ -744,7 +744,7 @@ function $RootScopeProvider() { * */ $digest: function() { - var watch, value, last, + var watch, value, last, fn, get, watchers, length, dirty, ttl = TTL, @@ -790,7 +790,8 @@ function $RootScopeProvider() { // Most common watches are on primitives, in which case we can short // circuit it with === operator, only when === fails do we use .equals if (watch) { - if ((value = watch.get(current)) !== (last = watch.last) && + get = watch.get; + if ((value = get(current)) !== (last = watch.last) && !(watch.eq ? equals(value, last) : (typeof value === 'number' && typeof last === 'number' @@ -798,7 +799,8 @@ function $RootScopeProvider() { dirty = true; lastDirtyWatch = watch; watch.last = watch.eq ? copy(value, null) : value; - watch.fn(value, ((last === initWatchVal) ? value : last), current); + fn = watch.fn; + fn(value, ((last === initWatchVal) ? value : last), current); if (ttl < 5) { logIdx = 4 - ttl; if (!watchLog[logIdx]) watchLog[logIdx] = []; diff --git a/test/ng/rootScopeSpec.js b/test/ng/rootScopeSpec.js index 7d9d6ecf3de1..b70fc6633d14 100644 --- a/test/ng/rootScopeSpec.js +++ b/test/ng/rootScopeSpec.js @@ -117,6 +117,20 @@ describe('Scope', function() { })); + it('should not expose the `inner working of watch', inject(function($rootScope) { + function Getter() { + expect(this).toBeUndefined(); + return 'foo'; + } + function Listener() { + expect(this).toBeUndefined(); + } + if (msie < 10) return; + $rootScope.$watch(Getter, Listener); + $rootScope.$digest(); + })); + + it('should watch and fire on expression change', inject(function($rootScope) { var spy = jasmine.createSpy(); $rootScope.$watch('name.first', spy); From 4bc3031497447ad527356f12bd0ceee1d7d09db5 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Sat, 30 Jan 2016 01:35:14 +0200 Subject: [PATCH 254/354] fix($route): allow preventing a route reload Fixes #9824 Closes #13894 --- src/ngRoute/route.js | 14 ++++- test/ngRoute/routeSpec.js | 117 +++++++++++++++++++++++++++++++------- 2 files changed, 106 insertions(+), 25 deletions(-) diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index 1842948b1737..a77151484529 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -463,10 +463,18 @@ function $RouteProvider() { */ reload: function() { forceReload = true; + + var fakeLocationEvent = { + defaultPrevented: false, + preventDefault: function fakePreventDefault() { + this.defaultPrevented = true; + forceReload = false; + } + }; + $rootScope.$evalAsync(function() { - // Don't support cancellation of a reload for now... - prepareRoute(); - commitRoute(); + prepareRoute(fakeLocationEvent); + if (!fakeLocationEvent.defaultPrevented) commitRoute(); }); }, diff --git a/test/ngRoute/routeSpec.js b/test/ngRoute/routeSpec.js index 368dadf3c9ae..1305ba51cfe0 100644 --- a/test/ngRoute/routeSpec.js +++ b/test/ngRoute/routeSpec.js @@ -303,7 +303,7 @@ describe('$route', function() { event.preventDefault(); }); - $rootScope.$on('$beforeRouteChange', function(event) { + $rootScope.$on('$routeChangeSuccess', function(event) { throw new Error('Should not get here'); }); @@ -1214,34 +1214,107 @@ describe('$route', function() { }); describe('reload', function() { + var $location; + var $log; + var $rootScope; + var $route; + var routeChangeStartSpy; + var routeChangeSuccessSpy; + + beforeEach(module(function($routeProvider) { + $routeProvider.when('/bar/:barId', { + template: '', + controller: controller, + reloadOnSearch: false + }); - it('should reload even if reloadOnSearch is false', function() { - var routeChangeSpy = jasmine.createSpy('route change'); + function controller($log) { + $log.debug('initialized'); + } + })); + beforeEach(inject(function($compile, _$location_, _$log_, _$rootScope_, _$route_) { + $location = _$location_; + $log = _$log_; + $rootScope = _$rootScope_; + $route = _$route_; - module(function($routeProvider) { - $routeProvider.when('/bar/:barId', {controller: angular.noop, reloadOnSearch: false}); - }); + routeChangeStartSpy = jasmine.createSpy('routeChangeStart'); + routeChangeSuccessSpy = jasmine.createSpy('routeChangeSuccess'); - inject(function($route, $location, $rootScope, $routeParams) { - $rootScope.$on('$routeChangeSuccess', routeChangeSpy); + $rootScope.$on('$routeChangeStart', routeChangeStartSpy); + $rootScope.$on('$routeChangeSuccess', routeChangeSuccessSpy); - $location.path('/bar/123'); - $rootScope.$digest(); - expect($routeParams).toEqual({barId:'123'}); - expect(routeChangeSpy).toHaveBeenCalledOnce(); - routeChangeSpy.reset(); + element = $compile('
      ')($rootScope); + })); - $location.path('/bar/123').search('a=b'); - $rootScope.$digest(); - expect($routeParams).toEqual({barId:'123', a:'b'}); - expect(routeChangeSpy).not.toHaveBeenCalled(); + it('should reload the current route', function() { + $location.path('/bar/123'); + $rootScope.$digest(); + expect($location.path()).toBe('/bar/123'); + expect(routeChangeStartSpy).toHaveBeenCalledOnce(); + expect(routeChangeSuccessSpy).toHaveBeenCalledOnce(); + expect($log.debug.logs).toEqual([['initialized']]); - $route.reload(); - $rootScope.$digest(); - expect($routeParams).toEqual({barId:'123', a:'b'}); - expect(routeChangeSpy).toHaveBeenCalledOnce(); - }); + routeChangeStartSpy.reset(); + routeChangeSuccessSpy.reset(); + $log.reset(); + + $route.reload(); + $rootScope.$digest(); + expect($location.path()).toBe('/bar/123'); + expect(routeChangeStartSpy).toHaveBeenCalledOnce(); + expect(routeChangeSuccessSpy).toHaveBeenCalledOnce(); + expect($log.debug.logs).toEqual([['initialized']]); + + $log.reset(); + }); + + it('should support preventing a route reload', function() { + $location.path('/bar/123'); + $rootScope.$digest(); + expect($location.path()).toBe('/bar/123'); + expect(routeChangeStartSpy).toHaveBeenCalledOnce(); + expect(routeChangeSuccessSpy).toHaveBeenCalledOnce(); + expect($log.debug.logs).toEqual([['initialized']]); + + routeChangeStartSpy.reset(); + routeChangeSuccessSpy.reset(); + $log.reset(); + + routeChangeStartSpy.andCallFake(function(evt) { evt.preventDefault(); }); + + $route.reload(); + $rootScope.$digest(); + expect($location.path()).toBe('/bar/123'); + expect(routeChangeStartSpy).toHaveBeenCalledOnce(); + expect(routeChangeSuccessSpy).not.toHaveBeenCalled(); + expect($log.debug.logs).toEqual([]); }); + + it('should reload even if reloadOnSearch is false', inject(function($routeParams) { + $location.path('/bar/123'); + $rootScope.$digest(); + expect($routeParams).toEqual({barId: '123'}); + expect(routeChangeSuccessSpy).toHaveBeenCalledOnce(); + expect($log.debug.logs).toEqual([['initialized']]); + + routeChangeSuccessSpy.reset(); + $log.reset(); + + $location.search('a=b'); + $rootScope.$digest(); + expect($routeParams).toEqual({barId: '123', a: 'b'}); + expect(routeChangeSuccessSpy).not.toHaveBeenCalled(); + expect($log.debug.logs).toEqual([]); + + $route.reload(); + $rootScope.$digest(); + expect($routeParams).toEqual({barId: '123', a: 'b'}); + expect(routeChangeSuccessSpy).toHaveBeenCalledOnce(); + expect($log.debug.logs).toEqual([['initialized']]); + + $log.reset(); + })); }); }); From 8519b8a60f1177cb41070e1608edbb89c7bc77a9 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 3 Feb 2016 12:07:07 +0200 Subject: [PATCH 255/354] docs(guide/accessibility): fix links Closes #13936 --- docs/content/guide/accessibility.ngdoc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/content/guide/accessibility.ngdoc b/docs/content/guide/accessibility.ngdoc index 76f6fcfc498a..2b998cd09b9f 100644 --- a/docs/content/guide/accessibility.ngdoc +++ b/docs/content/guide/accessibility.ngdoc @@ -41,7 +41,7 @@ Currently, ngAria interfaces with the following directives:

      ngModel

      -Much of ngAria's heavy lifting happens in the {@link ngModel ngModel} +Much of ngAria's heavy lifting happens in the {@link ng/directive/ngModel} directive. For elements using ngModel, special attention is paid by ngAria if that element also has a role or type of `checkbox`, `radio`, `range` or `textbox`. @@ -134,14 +134,14 @@ attributes (if they have not been explicitly specified by the developer): ngAria will also add `tabIndex`, ensuring custom elements with these roles will be reachable from the keyboard. It is still up to **you** as a developer to **ensure custom controls will be -accessible**. As a rule, any time you create a widget involving user interaction, be sure to test +accessible**. As a rule, any time you create a widget involving user interaction, be sure to test it with your keyboard and at least one mobile and desktop screen reader.

      ngDisabled

      The `disabled` attribute is only valid for certain elements such as `button`, `input` and `textarea`. To properly disable custom element directives such as `` or ``, -using ngAria with [ngDisabled](https://docs.angularjs.org/api/ng/directive/ngDisabled) will also +using ngAria with {@link ng/directive/ngDisabled} will also add `aria-disabled`. This tells assistive technologies when a non-native input is disabled, helping custom controls to be more accessible. @@ -162,7 +162,7 @@ Becomes:

      ngShow

      ->The [ngShow](https://docs.angularjs.org/api/ng/directive/ngShow) directive shows or hides the +>The {@link ng/directive/ngShow} directive shows or hides the given HTML element based on the expression provided to the `ngShow` attribute. The element is shown or hidden by removing or adding the `.ng-hide` CSS class onto the element. @@ -199,7 +199,7 @@ Becomes:

      ngHide

      ->The [ngHide](https://docs.angularjs.org/api/ng/directive/ngHide) directive shows or hides the +>The {@link ng/directive/ngHide} directive shows or hides the given HTML element based on the expression provided to the `ngHide` attribute. The element is shown or hidden by removing or adding the `.ng-hide` CSS class onto the element. @@ -208,7 +208,7 @@ The default CSS for `ngHide`, the inverse method to `ngShow`, makes ngAria redun `display: none`. See explanation for {@link guide/accessibility#ngshow ngShow} when overriding the default CSS.

      ngClick and ngDblclick

      -If `ng-click` or `ng-dblclick` is encountered, ngAria will add `tabindex="0"` to any element not in +If `ng-click` or `ng-dblclick` is encountered, ngAria will add `tabindex="0"` to any element not in a node blacklist: * Button @@ -218,14 +218,14 @@ a node blacklist: * Select * Details/Summary -To fix widespread accessibility problems with `ng-click` on `div` elements, ngAria will +To fix widespread accessibility problems with `ng-click` on `div` elements, ngAria will dynamically bind a keypress event by default as long as the element isn't in the node blacklist. -You can turn this functionality on or off with the `bindKeypress` configuration option. +You can turn this functionality on or off with the `bindKeypress` configuration option. ngAria will also add the `button` role to communicate to users of assistive technologies. This can be disabled with the `bindRoleForClick` configuration option. -For `ng-dblclick`, you must still manually add `ng-keypress` and a role to non-interactive elements +For `ng-dblclick`, you must still manually add `ng-keypress` and a role to non-interactive elements such as `div` or `taco-button` to enable keyboard access.

      Example

      From 8a1f600c293b9fc40a3be72807e49429db31c689 Mon Sep 17 00:00:00 2001 From: Georgii Dolzhykov Date: Wed, 3 Feb 2016 13:28:12 +0200 Subject: [PATCH 256/354] docs($compile): refine explanation of isolate scope `=`-binding The current version of this paragraph is in many ways inaccurate and confusing. Closes #13921 --- src/ng/compile.js | 61 +++++++++++++++++++++++++---------------------- 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index 89ff86e1abd9..b16753ce5b6f 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -166,35 +166,38 @@ * is bound to the parent scope, via matching attributes on the directive's element: * * * `@` or `@attr` - bind a local scope property to the value of DOM attribute. The result is - * always a string since DOM attributes are strings. If no `attr` name is specified then the - * attribute name is assumed to be the same as the local name. - * Given `` and widget definition - * of `scope: { localName:'@myAttr' }`, then widget scope property `localName` will reflect - * the interpolated value of `hello {{name}}`. As the `name` attribute changes so will the - * `localName` property on the widget scope. The `name` is read from the parent scope (not - * component scope). - * - * * `=` or `=attr` - set up bi-directional binding between a local scope property and the - * parent scope property of name defined via the value of the `attr` attribute. If no `attr` - * name is specified then the attribute name is assumed to be the same as the local name. - * Given `` and widget definition of - * `scope: { localModel:'=myAttr' }`, then widget scope property `localModel` will reflect the - * value of `parentModel` on the parent scope. Any changes to `parentModel` will be reflected - * in `localModel` and any changes in `localModel` will reflect in `parentModel`. If the parent - * scope property doesn't exist, it will throw a NON_ASSIGNABLE_MODEL_EXPRESSION exception. You - * can avoid this behavior using `=?` or `=?attr` in order to flag the property as optional. If - * you want to shallow watch for changes (i.e. $watchCollection instead of $watch) you can use - * `=*` or `=*attr` (`=*?` or `=*?attr` if the property is optional). - * - * * `&` or `&attr` - provides a way to execute an expression in the context of the parent scope. - * If no `attr` name is specified then the attribute name is assumed to be the same as the - * local name. Given `` and widget definition of - * `scope: { localFn:'&myAttr' }`, then isolate scope property `localFn` will point to - * a function wrapper for the `count = count + value` expression. Often it's desirable to - * pass data from the isolated scope via an expression to the parent scope, this can be - * done by passing a map of local variable names and values into the expression wrapper fn. - * For example, if the expression is `increment(amount)` then we can specify the amount value - * by calling the `localFn` as `localFn({amount: 22})`. + * always a string since DOM attributes are strings. If no `attr` name is specified then the + * attribute name is assumed to be the same as the local name. Given `` and the isolate scope definition `scope: { localName:'@myAttr' }`, + * the directive's scope property `localName` will reflect the interpolated value of `hello + * {{name}}`. As the `name` attribute changes so will the `localName` property on the directive's + * scope. The `name` is read from the parent scope (not the directive's scope). + * + * * `=` or `=attr` - set up a bidirectional binding between a local scope property and an expression + * passed via the attribute `attr`. The expression is evaluated in the context of the parent scope. + * If no `attr` name is specified then the attribute name is assumed to be the same as the local + * name. Given `` and the isolate scope definition `scope: { + * localModel: '=myAttr' }`, the property `localModel` on the directive's scope will reflect the + * value of `parentModel` on the parent scope. Changes to `parentModel` will be reflected in + * `localModel` and vice versa. Optional attributes should be marked as such with a question mark: + * `=?` or `=?attr`. If the binding expression is non-assignable, or if the attribute isn't + * optional and doesn't exist, an exception ({@link error/$compile/nonassign `$compile:nonassign`}) + * will be thrown upon discovering changes to the local value, since it will be impossible to sync + * them back to the parent scope. By default, the {@link ng.$rootScope.Scope#$watch `$watch`} + * method is used for tracking changes, and the equality check is based on object identity. + * However, if an object literal or an array literal is passed as the binding expression, the + * equality check is done by value (using the {@link angular.equals} function). It's also possible + * to watch the evaluated value shallowly with {@link ng.$rootScope.Scope#$watchCollection + * `$watchCollection`}: use `=*` or `=*attr` (`=*?` or `=*?attr` if the attribute is optional). + * + * * `&` or `&attr` - provides a way to execute an expression in the context of the parent scope. If + * no `attr` name is specified then the attribute name is assumed to be the same as the local name. + * Given `` and the isolate scope definition `scope: { + * localFn:'&myAttr' }`, the isolate scope property `localFn` will point to a function wrapper for + * the `count = count + value` expression. Often it's desirable to pass data from the isolated scope + * via an expression to the parent scope. This can be done by passing a map of local variable names + * and values into the expression wrapper fn. For example, if the expression is `increment(amount)` + * then we can specify the amount value by calling the `localFn` as `localFn({amount: 22})`. * * In general it's possible to apply more than one directive to one element, but there might be limitations * depending on the type of scope required by the directives. The following points will help explain these limitations. From 9e2c21577902ff6ece43096991bce348287057d3 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Thu, 4 Feb 2016 00:12:58 +0200 Subject: [PATCH 257/354] docs(ngRequired): fix link --- src/ng/directive/validators.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/directive/validators.js b/src/ng/directive/validators.js index 76395b088713..92cf90664efc 100644 --- a/src/ng/directive/validators.js +++ b/src/ng/directive/validators.js @@ -15,7 +15,7 @@ * for more info. * * The validator will set the `required` error key to true if the `required` attribute is set and - * calling {@link ngModel.NgModelController#$isEmpty `NgModelController.$isEmpty` with the + * calling {@link ngModel.NgModelController#$isEmpty `NgModelController.$isEmpty`} with the * {@link ngModel.NgModelController#$viewValue `ngModel.$viewValue`} returns `true`. For example, the * `$isEmpty()` implementation for `input[text]` checks the length of the `$viewValue`. When developing * custom controls, `$isEmpty()` can be overwritten to account for a $viewValue that is not string-based. From 05741ebf0b1ed8c68aa3e9f0836ac75ff04cb695 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Thu, 4 Feb 2016 00:41:04 +0200 Subject: [PATCH 258/354] docs(guide/accessibility): fix links --- docs/content/guide/accessibility.ngdoc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/guide/accessibility.ngdoc b/docs/content/guide/accessibility.ngdoc index 2b998cd09b9f..21556f515fd1 100644 --- a/docs/content/guide/accessibility.ngdoc +++ b/docs/content/guide/accessibility.ngdoc @@ -41,7 +41,7 @@ Currently, ngAria interfaces with the following directives:

      ngModel

      -Much of ngAria's heavy lifting happens in the {@link ng/directive/ngModel} +Much of ngAria's heavy lifting happens in the {@link ng.directive:ngModel ngModel} directive. For elements using ngModel, special attention is paid by ngAria if that element also has a role or type of `checkbox`, `radio`, `range` or `textbox`. @@ -141,7 +141,7 @@ it with your keyboard and at least one mobile and desktop screen reader. The `disabled` attribute is only valid for certain elements such as `button`, `input` and `textarea`. To properly disable custom element directives such as `` or ``, -using ngAria with {@link ng/directive/ngDisabled} will also +using ngAria with {@link ng.directive:ngDisabled ngDisabled} will also add `aria-disabled`. This tells assistive technologies when a non-native input is disabled, helping custom controls to be more accessible. @@ -162,7 +162,7 @@ Becomes:

      ngShow

      ->The {@link ng/directive/ngShow} directive shows or hides the +>The {@link ng.directive:ngShow ngShow} directive shows or hides the given HTML element based on the expression provided to the `ngShow` attribute. The element is shown or hidden by removing or adding the `.ng-hide` CSS class onto the element. @@ -199,7 +199,7 @@ Becomes:

      ngHide

      ->The {@link ng/directive/ngHide} directive shows or hides the +>The {@link ng.directive:ngHide ngHide} directive shows or hides the given HTML element based on the expression provided to the `ngHide` attribute. The element is shown or hidden by removing or adding the `.ng-hide` CSS class onto the element. From b5c317d672412a05575b0d732af1bd344962745e Mon Sep 17 00:00:00 2001 From: kuroky360 Date: Tue, 2 Feb 2016 11:05:22 +0800 Subject: [PATCH 259/354] refactor(toJson): use the `isUndefined()` function Closes #13923 --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index b4037578e434..b866f4a327e6 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -1178,7 +1178,7 @@ function toJsonReplacer(key, value) { * @returns {string|undefined} JSON-ified string representing `obj`. */ function toJson(obj, pretty) { - if (typeof obj === 'undefined') return undefined; + if (isUndefined(obj)) return undefined; if (!isNumber(pretty)) { pretty = pretty ? 2 : null; } From 9a576fa0fa1dc72cffc43e5e0c5878e6e32f7925 Mon Sep 17 00:00:00 2001 From: Peter Bacon Darwin Date: Fri, 5 Feb 2016 12:52:27 +0000 Subject: [PATCH 260/354] chore(package): update the 1.4.x dist-tag --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b7e3f98aa488..49378104fee8 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "license": "MIT", "branchVersion": "^1.4.0-beta.0", "branchPattern": "1.4.*", - "distTag": "latest", + "distTag": "previous_1_4", "repository": { "type": "git", "url": "https://github.com/angular/angular.js.git" From 437ba49a52f001f9b43a6271568411d0461cf13a Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Thu, 4 Feb 2016 11:24:15 +0100 Subject: [PATCH 261/354] style(filters): squelch a closure compiler warning Related #13932 --- src/ng/filter/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 036d38832c40..91ac973d8066 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -175,7 +175,7 @@ function parse(numStr) { } // Count the number of leading zeros. - for (i = 0; numStr.charAt(i) == ZERO_CHAR; i++); + for (i = 0; numStr.charAt(i) == ZERO_CHAR; i++) {/* jshint noempty: false */} if (i == (zeros = numStr.length)) { // The digits are all zero. From 7f11af6b5ef495dfc35b38054ee6f598b8dd6449 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Fri, 5 Feb 2016 16:37:50 +0100 Subject: [PATCH 262/354] docs(error/iscp): extra spaces are allowed --- docs/content/error/$compile/iscp.ngdoc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/docs/content/error/$compile/iscp.ngdoc b/docs/content/error/$compile/iscp.ngdoc index 8facbcc4e0e3..95af99bc8928 100644 --- a/docs/content/error/$compile/iscp.ngdoc +++ b/docs/content/error/$compile/iscp.ngdoc @@ -12,9 +12,11 @@ myModule.directive('directiveName', function factory() { scope: { 'attrName': '@', // OK 'attrName2': '=localName', // OK - 'attrName3': 'name', // ERROR: missing mode @&= - 'attrName4': ' = name', // ERROR: extra spaces - 'attrName5': 'name=', // ERROR: must be prefixed with @&= + 'attrName3': '&?localName', // OK + 'attrName4': ' = name', // OK + 'attrName5': 'name', // ERROR: missing mode @&= + 'attrName6': 'name=', // ERROR: must be prefixed with @&= + 'attrName7': '=name?', // ERROR: ? must come directly after the mode } ... } From eccd618d76b61a28d21d05f40a79a6c07d19cfe3 Mon Sep 17 00:00:00 2001 From: John Mercer Date: Fri, 5 Feb 2016 12:29:52 -0500 Subject: [PATCH 263/354] docs(guide): add new book Closes #13954 --- docs/content/guide/index.ngdoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/content/guide/index.ngdoc b/docs/content/guide/index.ngdoc index 1dacc7db86af..e54063afd4e4 100644 --- a/docs/content/guide/index.ngdoc +++ b/docs/content/guide/index.ngdoc @@ -111,6 +111,7 @@ This is a short list of libraries with specific support and documentation for wo * [AngularJS : Novice to Ninja](http://www.amazon.in/AngularJS-Novice-Ninja-Sandeep-Panda/dp/0992279453) by Sandeep Panda * [AngularJS UI Development](http://www.amazon.com/AngularJS-UI-Development-Amit-Ghart-ebook/dp/B00OXVAK7A) by Amit Gharat and Matthias Nehlsen * [Responsive Web Design with AngularJS](http://www.amazon.com/Responsive-Design-AngularJS-Sandeep-Kumar/dp/178439842X) by Sandeep Kumar Patel +* [Professional AngularJS](http://www.amazon.com/Professional-AngularJS-Valeri-Karpov/dp/1118832078/) ###Videos: * [egghead.io](http://egghead.io/) From bdc5a1cde160bece4bb0d759384471ff879826bf Mon Sep 17 00:00:00 2001 From: Aashish Nagpal Date: Sun, 7 Feb 2016 14:37:47 +0530 Subject: [PATCH 264/354] docs(README.md): add purpose section Add a new purpose section to enable newcomers (technical and non-technical) better understand the purpose of AngularJS Close #13963 --- README.md | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index b3e6c71c4d9c..e13ed1145290 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ piece of cake. Best of all?? It makes development fun! * Developer Guide: http://docs.angularjs.org/guide * Contribution guidelines: [CONTRIBUTING.md](https://github.com/angular/angular.js/blob/master/CONTRIBUTING.md) * Dashboard: http://dashboard.angularjs.org - + Building AngularJS --------- [Once you have your environment set up](http://docs.angularjs.org/misc/contribute) just run: @@ -43,3 +43,26 @@ To learn more about the grunt tasks, run `grunt --help` and also read our [![Analytics](https://ga-beacon.appspot.com/UA-8594346-11/angular.js/README.md?pixel)](https://github.com/igrigorik/ga-beacon) +What to Use AngularJS for and When to Use it +--------- +AngularJS is the next generation framework where each component is designed to work with every other component in an interconnected way like a well-oiled machine. AngularJS is JavaScript MVC made easy and done right. (Well it is not really MVC, read on, to understand what this means.) + +#### MVC, no, MV* done the right way! +MVC, short for Model-View-Controller, is a design pattern, i.e. how the code should be organized and how the different parts of an application separated for proper readability and debugging. Model is the data and the database. View is the user interface and what the user sees. Controller is the main link between Model and View. These are the three pillars of major programming frameworks present on the market today. On the other hand AngularJS works on MV*, short for Model-View-_Whatever_. The _Whatever_ is AngularJS's way of telling that you may create any kind of linking between the Model and the View here. + +Unlike other frameworks in any programming language, where MVC, the three separate components, each one has to be written and then connected by the programmer, AngularJS helps the programmer by asking him/her to just create these and everything else will be taken care of by AngularJS. + +#### Interconnection with HTML at the root level +AngularJS uses HTML to define the user's interface. AngularJS also enables the programmer to write new HTML tags (AngularJS Directives) and increase the readability and understandability of the HTML code. Directives are AngularJS’s way of bringing additional functionality to HTML. Directives achieve this by enabling us to invent our own HTML elements. This also helps in making the code DRY (Don't Repeat Yourself), which means once created, a new directive can be used anywhere within the application. + +#### Data Handling made simple +Data and Data Models in AngularJS are plain JavaScript objects and one can add and change properties directly on it and loop over objects and arrays at will. + +#### Two-way Data Binding +One of AngularJS's strongest features. Two-way Data Binding means that if something changes in the Model, the change gets reflected in the View instantaneously, and the same happens the other way around. This is also referred to as Reactive Programming, i.e. suppose `a = b + c` is being programmed and after this, if the value of `b` and/or `c` is changed then the value of `a` will be automatically updated to reflect the change. AngularJS uses its "scopes" as a glue between the Model and View and makes these updates in one available for the other. + +#### Less Written Code and Easily Maintable Code +Everything in AngularJS is created to enable the programmer ends up writing less code that is easily maintainable and readable by any other new person on the team. Believe it or not, one can write a complete working two-way data binded application in less than 10 lines of code. Try and see for yourself! + +#### Testing Ready +AngularJS has Dependency Injection, i.e. it takes care of providing all the necessary dependencies to its controllers whenever required. This helps in making the AngularJS code ready for unit testing by making use of mock dependencies created and injected. This makes AngularJS more modular and easily testable thus in turn helping a team create more robust applications. From d04c38c48968db777c3ea6a177ce2ff0116df7b4 Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Thu, 28 Jan 2016 17:54:20 -0500 Subject: [PATCH 265/354] perf(ngRepeat): avoid duplicate jqLite wrappers Internally, `$animate` already wraps elements passed through with `jqLite`, so we can avoid needless duplication here. --- src/ng/directive/ngRepeat.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ng/directive/ngRepeat.js b/src/ng/directive/ngRepeat.js index 663851cc16e5..833262543c86 100644 --- a/src/ng/directive/ngRepeat.js +++ b/src/ng/directive/ngRepeat.js @@ -508,7 +508,7 @@ var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) { if (getBlockStart(block) != nextNode) { // existing item which got moved - $animate.move(getBlockNodes(block.clone), null, jqLite(previousNode)); + $animate.move(getBlockNodes(block.clone), null, previousNode); } previousNode = getBlockEnd(block); updateScope(block.scope, index, valueIdentifier, value, keyIdentifier, key, collectionLength); @@ -520,8 +520,7 @@ var ngRepeatDirective = ['$parse', '$animate', function($parse, $animate) { var endNode = ngRepeatEndComment.cloneNode(false); clone[clone.length++] = endNode; - // TODO(perf): support naked previousNode in `enter` to avoid creation of jqLite wrapper? - $animate.enter(clone, null, jqLite(previousNode)); + $animate.enter(clone, null, previousNode); previousNode = endNode; // Note: We only need the first/last node of the cloned nodes. // However, we need to keep the reference to the jqlite wrapper as it might be changed later From 86416bcbee2192fa31c017163c5d856763182ade Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Thu, 28 Jan 2016 17:55:25 -0500 Subject: [PATCH 266/354] perf(ngAnimate): avoid $.fn.data overhead with jQuery Unlike jqLite, jquery scrapes the attributes of an element looking for data- keys that match the requested property. When many elements are being animated due to something like `ngRepeat` unrolling within one digest cycle, the amount of time spent in that one function quickly adds up. By changing our API to use the lower level data API, we can cut the time spent in this function by half when jQuery is loaded. --- src/ngAnimate/animateQueue.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 7f4da4bdc4b9..9eec04cc598c 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -585,7 +585,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { var animateChildren; var elementDisabled = disabledElementsLookup.get(getDomNode(element)); - var parentHost = element.data(NG_ANIMATE_PIN_DATA); + var parentHost = jqLite.data(element[0], NG_ANIMATE_PIN_DATA); if (parentHost) { parentElement = parentHost; } @@ -623,7 +623,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { } if (isUndefined(animateChildren) || animateChildren === true) { - var value = parentElement.data(NG_ANIMATE_CHILDREN_DATA); + var value = jqLite.data(parentElement[0], NG_ANIMATE_CHILDREN_DATA); if (isDefined(value)) { animateChildren = value; } @@ -646,7 +646,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (!rootElementDetected) { // If no rootElement is detected, check if the parentElement is pinned to another element - parentHost = parentElement.data(NG_ANIMATE_PIN_DATA); + parentHost = jqLite.data(parentElement[0], NG_ANIMATE_PIN_DATA); if (parentHost) { // The pin target element becomes the next parent element parentElement = parentHost; From ab95ba65c08b38cace83de6717b7681079182b45 Mon Sep 17 00:00:00 2001 From: Daniel Herman Date: Tue, 9 Feb 2016 09:38:30 -0500 Subject: [PATCH 267/354] perf(ngAnimate): avoid jqLite/jQuery for upward DOM traversal The `parentNode` property is well supported between all browsers. Since no other functionality was required here other than traversing upwards using `.parent()`, we can use the DOM API directly. Closes: #13879 --- src/ngAnimate/animateQueue.js | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/src/ngAnimate/animateQueue.js b/src/ngAnimate/animateQueue.js index 9eec04cc598c..146e538a1508 100644 --- a/src/ngAnimate/animateQueue.js +++ b/src/ngAnimate/animateQueue.js @@ -590,25 +590,26 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { parentElement = parentHost; } - while (parentElement && parentElement.length) { + parentElement = getDomNode(parentElement); + + while (parentElement) { if (!rootElementDetected) { // angular doesn't want to attempt to animate elements outside of the application // therefore we need to ensure that the rootElement is an ancestor of the current element rootElementDetected = isMatchingElement(parentElement, $rootElement); } - var parentNode = parentElement[0]; - if (parentNode.nodeType !== ELEMENT_NODE) { + if (parentElement.nodeType !== ELEMENT_NODE) { // no point in inspecting the #document element break; } - var details = activeAnimationsLookup.get(parentNode) || {}; + var details = activeAnimationsLookup.get(parentElement) || {}; // either an enter, leave or move animation will commence // therefore we can't allow any animations to take place // but if a parent animation is class-based then that's ok if (!parentAnimationDetected) { - var parentElementDisabled = disabledElementsLookup.get(parentNode); + var parentElementDisabled = disabledElementsLookup.get(parentElement); if (parentElementDisabled === true && elementDisabled !== false) { // disable animations if the user hasn't explicitly enabled animations on the @@ -623,7 +624,7 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { } if (isUndefined(animateChildren) || animateChildren === true) { - var value = jqLite.data(parentElement[0], NG_ANIMATE_CHILDREN_DATA); + var value = jqLite.data(parentElement, NG_ANIMATE_CHILDREN_DATA); if (isDefined(value)) { animateChildren = value; } @@ -646,15 +647,15 @@ var $$AnimateQueueProvider = ['$animateProvider', function($animateProvider) { if (!rootElementDetected) { // If no rootElement is detected, check if the parentElement is pinned to another element - parentHost = jqLite.data(parentElement[0], NG_ANIMATE_PIN_DATA); + parentHost = jqLite.data(parentElement, NG_ANIMATE_PIN_DATA); if (parentHost) { // The pin target element becomes the next parent element - parentElement = parentHost; + parentElement = getDomNode(parentHost); continue; } } - parentElement = parentElement.parent(); + parentElement = parentElement.parentNode; } var allowAnimation = (!parentAnimationDetected || animateChildren) && elementDisabled !== true; From 77cdc37c65491b551fcf01a18ab848a693c293d7 Mon Sep 17 00:00:00 2001 From: Lucas Mirelmann Date: Sun, 20 Dec 2015 19:25:20 +0100 Subject: [PATCH 268/354] fix($compile): allow directives to have decorators Allow directives to have decorators that modify the directive `scope` property Close: #10149 --- src/ng/compile.js | 20 ++++++++++++++----- test/ng/compileSpec.js | 45 ++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 60 insertions(+), 5 deletions(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index b16753ce5b6f..8cff04fb697c 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -777,6 +777,7 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { // The assumption is that future DOM event attribute names will begin with // 'on' and be composed of only English letters. var EVENT_HANDLER_ATTR_REGEXP = /^(on[a-z]+|formaction)$/; + var bindingCache = createMap(); function parseIsolateBindings(scope, directiveName, isController) { var LOCAL_REGEXP = /^\s*([@&]|=(\*?))(\??)\s*(\w*)\s*$/; @@ -784,6 +785,10 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { var bindings = {}; forEach(scope, function(definition, scopeName) { + if (definition in bindingCache) { + bindings[scopeName] = bindingCache[definition]; + return; + } var match = definition.match(LOCAL_REGEXP); if (!match) { @@ -801,6 +806,9 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { optional: match[3] === '?', attrName: match[4] || scopeName }; + if (match[4]) { + bindingCache[definition] = bindings[scopeName]; + } }); return bindings; @@ -893,11 +901,6 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { directive.name = directive.name || name; directive.require = directive.require || (directive.controller && directive.name); directive.restrict = directive.restrict || 'EA'; - var bindings = directive.$$bindings = - parseDirectiveBindings(directive, directive.name); - if (isObject(bindings.isolateScope)) { - directive.$$isolateBindings = bindings.isolateScope; - } directive.$$moduleName = directiveFactory.$$moduleName; directives.push(directive); } catch (e) { @@ -2169,6 +2172,13 @@ function $CompileProvider($provide, $$sanitizeUriProvider) { if (startAttrName) { directive = inherit(directive, {$$start: startAttrName, $$end: endAttrName}); } + if (!directive.$$bindings) { + var bindings = directive.$$bindings = + parseDirectiveBindings(directive, directive.name); + if (isObject(bindings.isolateScope)) { + directive.$$isolateBindings = bindings.isolateScope; + } + } tDirectives.push(directive); match = directive; } diff --git a/test/ng/compileSpec.js b/test/ng/compileSpec.js index 46ffbb521bf1..002e4f7e1243 100755 --- a/test/ng/compileSpec.js +++ b/test/ng/compileSpec.js @@ -7438,6 +7438,51 @@ describe('$compile', function() { }); }); + + it('should be possible to change the scope of a directive using $provide', function() { + module(function($provide) { + directive('foo', function() { + return { + scope: {}, + template: '
      ' + }; + }); + $provide.decorator('fooDirective', function($delegate) { + var directive = $delegate[0]; + directive.scope.something = '='; + directive.template = '{{something}}'; + return $delegate; + }); + }); + inject(function($compile, $rootScope) { + element = $compile('
      ')($rootScope); + $rootScope.bar = 'bar'; + $rootScope.$digest(); + expect(element.text()).toBe('bar'); + }); + }); + + + it('should distinguish different bindings with the same binding name', function() { + module(function() { + directive('foo', function() { + return { + scope: { + foo: '=', + bar: '=' + }, + template: '
      {{foo}}
      {{bar}}
      ' + }; + }); + }); + inject(function($compile, $rootScope) { + element = $compile('
      ')($rootScope); + $rootScope.$digest(); + expect(element.text()).toBe('foobar'); + }); + }); + + it('should safely create transclude comment node and not break with "-->"', inject(function($rootScope) { // see: https://github.com/angular/angular.js/issues/1740 From 6a4403a11845173d6a96232f77d73aa544b182af Mon Sep 17 00:00:00 2001 From: Sean Murphy Date: Wed, 10 Feb 2016 10:58:24 -0800 Subject: [PATCH 269/354] fix($routeProvider): properly handle optional eager path named groups Closes #14011 --- src/ngRoute/route.js | 6 +++--- test/ngRoute/routeSpec.js | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+), 3 deletions(-) diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index a77151484529..1db3c68dc447 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -201,9 +201,9 @@ function $RouteProvider() { path = path .replace(/([().])/g, '\\$1') - .replace(/(\/)?:(\w+)([\?\*])?/g, function(_, slash, key, option) { - var optional = option === '?' ? option : null; - var star = option === '*' ? option : null; + .replace(/(\/)?:(\w+)(\*\?|[\?\*])?/g, function(_, slash, key, option) { + var optional = (option === '?' || option === '*?') ? '?' : null; + var star = (option === '*' || option === '*?') ? '*' : null; keys.push({ name: key, optional: !!optional }); slash = slash || ''; return '' diff --git a/test/ngRoute/routeSpec.js b/test/ngRoute/routeSpec.js index 1305ba51cfe0..889489a0d63d 100644 --- a/test/ngRoute/routeSpec.js +++ b/test/ngRoute/routeSpec.js @@ -974,6 +974,32 @@ describe('$route', function() { }); + it('should properly process route params which are both eager and optional', function() { + module(function($routeProvider) { + $routeProvider.when('/foo/:param1*?/:param2', {templateUrl: 'foo.html'}); + }); + + inject(function($location, $rootScope, $route) { + $location.path('/foo/bar1/bar2/bar3/baz'); + $rootScope.$digest(); + + expect($location.path()).toEqual('/foo/bar1/bar2/bar3/baz'); + expect($route.current.params.param1).toEqual('bar1/bar2/bar3'); + expect($route.current.params.param2).toEqual('baz'); + expect($route.current.templateUrl).toEqual('foo.html'); + + $location.path('/foo/baz'); + $rootScope.$digest(); + + expect($location.path()).toEqual('/foo/baz'); + expect($route.current.params.param1).toEqual(undefined); + expect($route.current.params.param2).toEqual('baz'); + expect($route.current.templateUrl).toEqual('foo.html'); + + }); + }); + + it('should properly interpolate optional and eager route vars ' + 'when redirecting from path with trailing slash', function() { module(function($routeProvider) { From beb00e44de947981dbe35d5cf7a116e10ea8dc67 Mon Sep 17 00:00:00 2001 From: lucienbertin Date: Thu, 11 Feb 2016 13:49:50 +0100 Subject: [PATCH 270/354] fix(*): only call console.log when window.console exists `window.console` only exists in IE 8 & 9 when the devtools are open Fixes #14006 Closes #14007 Closes #14047 --- src/angular.bind.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/angular.bind.js b/src/angular.bind.js index 33bc710d4342..45bcdecb7247 100644 --- a/src/angular.bind.js +++ b/src/angular.bind.js @@ -1,6 +1,8 @@ if (window.angular.bootstrap) { //AngularJS is already loaded, so we can return here... - console.log('WARNING: Tried to load angular more than once.'); + if (window.console) { + console.log('WARNING: Tried to load angular more than once.'); + } return; } From 373f054d5eb86eeea730489a172ac425d10df382 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Mon, 15 Feb 2016 16:45:50 +0100 Subject: [PATCH 271/354] test(*): ensure console log doesn't break the app in IE9 When Angular is loaded more than once (by including the script multiple times), a warning is logged in the console. IE9 only makes the console available when the dev tools are open, so before this fix, the browser would throw an error Note that Protractor doesn't actually support IE9. --- test/e2e/fixtures/angular-already-loaded/index.html | 10 ++++++++++ test/e2e/fixtures/angular-already-loaded/script.js | 4 ++++ test/e2e/tests/angular-already-loadedSpec.js | 10 ++++++++++ 3 files changed, 24 insertions(+) create mode 100644 test/e2e/fixtures/angular-already-loaded/index.html create mode 100644 test/e2e/fixtures/angular-already-loaded/script.js create mode 100644 test/e2e/tests/angular-already-loadedSpec.js diff --git a/test/e2e/fixtures/angular-already-loaded/index.html b/test/e2e/fixtures/angular-already-loaded/index.html new file mode 100644 index 000000000000..292124d4fe1b --- /dev/null +++ b/test/e2e/fixtures/angular-already-loaded/index.html @@ -0,0 +1,10 @@ + + +
      +

      {{text}}

      +
      + + + + + diff --git a/test/e2e/fixtures/angular-already-loaded/script.js b/test/e2e/fixtures/angular-already-loaded/script.js new file mode 100644 index 000000000000..2d625bb4f19c --- /dev/null +++ b/test/e2e/fixtures/angular-already-loaded/script.js @@ -0,0 +1,4 @@ +angular.module("test", []). + controller("TestCtrl", function($scope) { + $scope.text = "Hello, world!"; + }); diff --git a/test/e2e/tests/angular-already-loadedSpec.js b/test/e2e/tests/angular-already-loadedSpec.js new file mode 100644 index 000000000000..87e4d8aabe14 --- /dev/null +++ b/test/e2e/tests/angular-already-loadedSpec.js @@ -0,0 +1,10 @@ +describe('App where angular is loaded more than once', function() { + beforeEach(function() { + loadFixture("angular-already-loaded").andWaitForAngular(); + }); + + it('should have the interpolated text', function() { + expect(element(by.binding('text')).getText()) + .toBe('Hello, world!'); + }); +}); From fad4dc07d7831eef8f5f8c06c75b8a9f8a4a8de4 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Sat, 13 Feb 2016 23:33:28 +0200 Subject: [PATCH 272/354] fix(ngMock): attach `$injector` to `$rootElement` Fixes #14022 Closes #14034 --- src/ngMock/angular-mocks.js | 6 +++--- test/ngMock/angular-mocksSpec.js | 4 ++++ 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 9964b11ae559..9db260b791e6 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1879,9 +1879,9 @@ angular.mock.$RAFDecorator = ['$delegate', function($delegate) { * */ angular.mock.$RootElementProvider = function() { - this.$get = function() { - return angular.element('
      '); - }; + this.$get = ['$injector', function($injector) { + return angular.element('
      ').data('$injector', $injector); + }]; }; /** diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 6990bdadd4ce..fc834a4450f7 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1576,6 +1576,10 @@ describe('ngMock', function() { it('should create mock application root', inject(function($rootElement) { expect($rootElement.text()).toEqual(''); })); + + it('should attach the `$injector` to `$rootElement`', inject(function($injector, $rootElement) { + expect($rootElement.injector()).toBe($injector); + })); }); From c219a87ad727b1e4a2f699eaf950069391a9d655 Mon Sep 17 00:00:00 2001 From: srijan Date: Sat, 9 Jan 2016 22:09:05 +0530 Subject: [PATCH 273/354] docs(guide/scope): fix typo in image Closes #13724 --- docs/img/guide/concepts-scope.png | Bin 80187 -> 77611 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/docs/img/guide/concepts-scope.png b/docs/img/guide/concepts-scope.png index 83ad8f8f43298d7503fd691e1135989aeb709633..07ace59b786f122c6c801e9ca85cc5dc55446c44 100644 GIT binary patch literal 77611 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

      Hz4`*O%~0k`WCB&+`$X#ji<0P5lmSgE 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 f!$dBY|SKyDr@5`yy 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 X1=8_kg4<^p;O~vJl2o~*NznfQa;ajN literal 80187 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ⅆ_rc7sx32LZIM#py9IZ%(wuQnQPIizIaPYL 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 Date: Tue, 16 Feb 2016 11:45:24 -0800 Subject: [PATCH 274/354] chore(build): 1.4 versions should stick to 1.4.x --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 49378104fee8..e59b40dc2a0b 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "angularjs", "license": "MIT", - "branchVersion": "^1.4.0-beta.0", + "branchVersion": "^1.4.x", "branchPattern": "1.4.*", "distTag": "previous_1_4", "repository": { From d98a12a6f2972a4be0f4133dca8d06d6055ac633 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Tue, 16 Feb 2016 22:52:21 +0200 Subject: [PATCH 275/354] docs(guide/forms): make required `ngModel` optional in custom e-mail RegExp example --- docs/content/guide/forms.ngdoc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/content/guide/forms.ngdoc b/docs/content/guide/forms.ngdoc index 588f57ac40e7..6e45b5737d58 100644 --- a/docs/content/guide/forms.ngdoc +++ b/docs/content/guide/forms.ngdoc @@ -440,8 +440,7 @@ Note that you can alternatively use `ng-pattern` to further restrict the validat var EMAIL_REGEXP = /^[a-z0-9!#$%&'*+/=?^_`{|}~.-]+@example\.com$/i; return { - require: 'ngModel', - restrict: '', + require: '?ngModel', link: function(scope, elm, attrs, ctrl) { // only apply the validator if ngModel is present and Angular has added the email validator if (ctrl && ctrl.$validators.email) { From 77fc41f499e3a50d924838dd27b7a9bc16a93b6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Tue, 16 Feb 2016 13:08:47 -0800 Subject: [PATCH 276/354] chore: fix version typo --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index e59b40dc2a0b..b999799fd4c2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "angularjs", "license": "MIT", - "branchVersion": "^1.4.x", + "branchVersion": "1.4.x", "branchPattern": "1.4.*", "distTag": "previous_1_4", "repository": { From 947cb4d1451afa4f5090a693df5b1968dd0df70c Mon Sep 17 00:00:00 2001 From: biohazardpb4 Date: Mon, 13 Jan 2014 21:47:07 -0500 Subject: [PATCH 277/354] fix(ngMockE2E): pass `responseType` to `$delegate` when using `passThrough` The `ngMockE2E` `$httpBackend` has a mechanism to allow requests to pass through, if one wants to send a real HTTP request instead of mocking. The specified `responseType` of the request was never passed through to the "real" `$httpBackend` (of the `ng` module), resulting in it being effectively ignored. Fixes #5415 Closes #5783 --- src/ngMock/angular-mocks.js | 5 +++-- test/ngMock/angular-mocksSpec.js | 6 +++--- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 9db260b791e6..2f93a704a176 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1241,7 +1241,8 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) { } // TODO(vojta): change params to: method, url, data, headers, callback - function $httpBackend(method, url, data, callback, headers, timeout, withCredentials) { + function $httpBackend(method, url, data, callback, headers, timeout, withCredentials, responseType) { + var xhr = new MockXhr(), expectation = expectations[0], wasExpected = false; @@ -1305,7 +1306,7 @@ function createHttpBackendMock($rootScope, $timeout, $delegate, $browser) { // if $browser specified, we do auto flush all requests ($browser ? $browser.defer : responsesPush)(wrapResponse(definition)); } else if (definition.passThrough) { - $delegate(method, url, data, callback, headers, timeout, withCredentials); + $delegate(method, url, data, callback, headers, timeout, withCredentials, responseType); } else throw new Error('No response defined !'); return; } diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index fc834a4450f7..6824e8feaef7 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1794,10 +1794,10 @@ describe('ngMockE2E', function() { describe('passThrough()', function() { it('should delegate requests to the real backend when passThrough is invoked', function() { hb.when('GET', /\/passThrough\/.*/).passThrough(); - hb('GET', '/passThrough/23', null, callback, {}, null, true); + hb('GET', '/passThrough/23', null, callback, {}, null, true, 'blob'); expect(realHttpBackend).toHaveBeenCalledOnceWith( - 'GET', '/passThrough/23', null, callback, {}, null, true); + 'GET', '/passThrough/23', null, callback, {}, null, true, 'blob'); }); it('should be able to override a respond definition with passThrough', function() { @@ -1806,7 +1806,7 @@ describe('ngMockE2E', function() { hb('GET', '/passThrough/23', null, callback, {}, null, true); expect(realHttpBackend).toHaveBeenCalledOnceWith( - 'GET', '/passThrough/23', null, callback, {}, null, true); + 'GET', '/passThrough/23', null, callback, {}, null, true, undefined); }); it('should be able to override a respond definition with passThrough', inject(function($browser) { From 696d65dcbad284f9b7eef5ec76b953b1d39b5253 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sun, 14 Feb 2016 18:15:56 +0100 Subject: [PATCH 278/354] chore(docs-app): remove obsolete directives Most of the directives in bootstrap.js haven't been in use since https://github.com/angular/angular.js/commit/389d4879da4aa620ee95d789b19ff9be44eb730a: Dropdown-related directives were moved to dropdown-toggle.js, and for foldout, popover and syntax, the uses and tests were removed, but not the directives themselves. The last use of tabbable was removed in https://github.com/angular/angular.js/commit/6b7a1b82bc26bbf4640506a9a3cf37ebf254d3d2 --- .../assets/js/angular-bootstrap/bootstrap.js | 442 ------------------ docs/app/src/app.js | 1 - docs/app/src/directives.js | 13 +- docs/app/src/examples.js | 50 ++ docs/config/services/deployments/debug.js | 1 - docs/config/services/deployments/default.js | 1 - docs/config/services/deployments/jquery.js | 1 - .../config/services/deployments/production.js | 1 - 8 files changed, 62 insertions(+), 448 deletions(-) delete mode 100644 docs/app/assets/js/angular-bootstrap/bootstrap.js diff --git a/docs/app/assets/js/angular-bootstrap/bootstrap.js b/docs/app/assets/js/angular-bootstrap/bootstrap.js deleted file mode 100644 index 58aedde697e6..000000000000 --- a/docs/app/assets/js/angular-bootstrap/bootstrap.js +++ /dev/null @@ -1,442 +0,0 @@ -'use strict'; - -var directive = {}; - -directive.runnableExample = ['$templateCache', '$document', function($templateCache, $document) { - var exampleClassNameSelector = '.runnable-example-file'; - var doc = $document[0]; - var tpl = - '

      '; - - return { - restrict: 'C', - scope : true, - controller : ['$scope', function($scope) { - $scope.setTab = function(index) { - var tab = $scope.tabs[index]; - $scope.activeTabIndex = index; - $scope.$broadcast('tabChange', index, tab); - }; - }], - compile : function(element) { - element.html(tpl + element.html()); - return function(scope, element) { - var node = element[0]; - var examples = node.querySelectorAll(exampleClassNameSelector); - var tabs = [], now = Date.now(); - angular.forEach(examples, function(child, index) { - tabs.push(child.getAttribute('name')); - }); - - if(tabs.length > 0) { - scope.tabs = tabs; - scope.$on('tabChange', function(e, index, title) { - angular.forEach(examples, function(child) { - child.style.display = 'none'; - }); - var selected = examples[index]; - selected.style.display = 'block'; - }); - scope.setTab(0); - } - } - } - }; -}]; - -directive.dropdownToggle = - ['$document', '$location', '$window', - function ($document, $location, $window) { - var openElement = null, close; - return { - restrict: 'C', - link: function(scope, element, attrs) { - scope.$watch(function dropdownTogglePathWatch(){return $location.path();}, function dropdownTogglePathWatchAction() { - close && close(); - }); - - element.parent().on('click', function(event) { - close && close(); - }); - - element.on('click', function(event) { - event.preventDefault(); - event.stopPropagation(); - - var iWasOpen = false; - - if (openElement) { - iWasOpen = openElement === element; - close(); - } - - if (!iWasOpen){ - element.parent().addClass('open'); - openElement = element; - - close = function (event) { - event && event.preventDefault(); - event && event.stopPropagation(); - $document.off('click', close); - element.parent().removeClass('open'); - close = null; - openElement = null; - } - - $document.on('click', close); - } - }); - } - }; - }]; - -directive.syntax = function() { - return { - restrict: 'A', - link: function(scope, element, attrs) { - function makeLink(type, text, link, icon) { - return '' + - ' ' + text + - ''; - }; - - var html = ''; - var types = { - 'github' : { - text : 'View on Github', - key : 'syntaxGithub', - icon : 'icon-github' - }, - 'plunkr' : { - text : 'View on Plunkr', - key : 'syntaxPlunkr', - icon : 'icon-arrow-down' - }, - 'jsfiddle' : { - text : 'View on JSFiddle', - key : 'syntaxFiddle', - icon : 'icon-cloud' - } - }; - for(var type in types) { - var data = types[type]; - var link = attrs[data.key]; - if(link) { - html += makeLink(type, data.text, link, data.icon); - } - }; - - var nav = document.createElement('nav'); - nav.className = 'syntax-links'; - nav.innerHTML = html; - - var node = element[0]; - var par = node.parentNode; - par.insertBefore(nav, node); - } - } -} - -directive.tabbable = function() { - return { - restrict: 'C', - compile: function(element) { - var navTabs = angular.element(''), - tabContent = angular.element('
      '); - - tabContent.append(element.contents()); - element.append(navTabs).append(tabContent); - }, - controller: ['$scope', '$element', function($scope, $element) { - var navTabs = $element.contents().eq(0), - ngModel = $element.controller('ngModel') || {}, - tabs = [], - selectedTab; - - ngModel.$render = function() { - var $viewValue = this.$viewValue; - - if (selectedTab ? (selectedTab.value != $viewValue) : $viewValue) { - if(selectedTab) { - selectedTab.paneElement.removeClass('active'); - selectedTab.tabElement.removeClass('active'); - selectedTab = null; - } - if($viewValue) { - for(var i = 0, ii = tabs.length; i < ii; i++) { - if ($viewValue == tabs[i].value) { - selectedTab = tabs[i]; - break; - } - } - if (selectedTab) { - selectedTab.paneElement.addClass('active'); - selectedTab.tabElement.addClass('active'); - } - } - - } - }; - - this.addPane = function(element, attr) { - var li = angular.element('
    • '), - a = li.find('a'), - tab = { - paneElement: element, - paneAttrs: attr, - tabElement: li - }; - - tabs.push(tab); - - attr.$observe('value', update)(); - attr.$observe('title', function(){ update(); a.text(tab.title); })(); - - function update() { - tab.title = attr.title; - tab.value = attr.value || attr.title; - if (!ngModel.$setViewValue && (!ngModel.$viewValue || tab == selectedTab)) { - // we are not part of angular - ngModel.$viewValue = tab.value; - } - ngModel.$render(); - } - - navTabs.append(li); - li.on('click', function(event) { - event.preventDefault(); - event.stopPropagation(); - if (ngModel.$setViewValue) { - $scope.$apply(function() { - ngModel.$setViewValue(tab.value); - ngModel.$render(); - }); - } else { - // we are not part of angular - ngModel.$viewValue = tab.value; - ngModel.$render(); - } - }); - - return function() { - tab.tabElement.remove(); - for(var i = 0, ii = tabs.length; i < ii; i++ ) { - if (tab == tabs[i]) { - tabs.splice(i, 1); - } - } - }; - } - }] - }; -}; - -directive.table = function() { - return { - restrict: 'E', - link: function(scope, element, attrs) { - if (!attrs['class']) { - element.addClass('table table-bordered table-striped code-table'); - } - } - }; -}; - -var popoverElement = function() { - var object = { - init : function() { - this.element = angular.element( - '
      ' + - '
      ' + - '
      ' + - '
      ' + - '
      ' + - '
      ' + - '
      ' - ); - this.node = this.element[0]; - this.element.css({ - 'display':'block', - 'position':'absolute' - }); - angular.element(document.body).append(this.element); - - var inner = this.element.children()[1]; - this.titleElement = angular.element(inner.childNodes[0].firstChild); - this.contentElement = angular.element(inner.childNodes[1]); - - //stop the click on the tooltip - this.element.on('click', function(event) { - event.preventDefault(); - event.stopPropagation(); - }); - - var self = this; - angular.element(document.body).on('click',function(event) { - if(self.visible()) self.hide(); - }); - }, - - show : function(x,y) { - this.element.addClass('visible'); - this.position(x || 0, y || 0); - }, - - hide : function() { - this.element.removeClass('visible'); - this.position(-9999,-9999); - }, - - visible : function() { - return this.position().y >= 0; - }, - - isSituatedAt : function(element) { - return this.besideElement ? element[0] == this.besideElement[0] : false; - }, - - title : function(value) { - return this.titleElement.html(value); - }, - - content : function(value) { - if(value && value.length > 0) { - value = marked(value); - } - return this.contentElement.html(value); - }, - - positionArrow : function(position) { - this.node.className = 'popover ' + position; - }, - - positionAway : function() { - this.besideElement = null; - this.hide(); - }, - - positionBeside : function(element) { - this.besideElement = element; - - var elm = element[0]; - var x = elm.offsetLeft; - var y = elm.offsetTop; - x -= 30; - y -= this.node.offsetHeight + 10; - this.show(x,y); - }, - - position : function(x,y) { - if(x != null && y != null) { - this.element.css('left',x + 'px'); - this.element.css('top', y + 'px'); - } - else { - return { - x : this.node.offsetLeft, - y : this.node.offsetTop - }; - } - } - }; - - object.init(); - object.hide(); - - return object; -}; - -directive.popover = ['popoverElement', function(popover) { - return { - restrict: 'A', - priority : 500, - link: function(scope, element, attrs) { - element.on('click',function(event) { - event.preventDefault(); - event.stopPropagation(); - if(popover.isSituatedAt(element) && popover.visible()) { - popover.title(''); - popover.content(''); - popover.positionAway(); - } - else { - popover.title(attrs.title); - popover.content(attrs.content); - popover.positionBeside(element); - } - }); - } - } -}]; - -directive.tabPane = function() { - return { - require: '^tabbable', - restrict: 'C', - link: function(scope, element, attrs, tabsCtrl) { - element.on('$remove', tabsCtrl.addPane(element, attrs)); - } - }; -}; - -directive.foldout = ['$http', '$animate','$window', function($http, $animate, $window) { - return { - restrict: 'A', - priority : 500, - link: function(scope, element, attrs) { - var container, loading, url = attrs.url; - if(/\/build\//.test($window.location.href)) { - url = '/build/docs' + url; - } - element.on('click',function() { - scope.$apply(function() { - if(!container) { - if(loading) return; - - loading = true; - var par = element.parent(); - container = angular.element('
      loading...
      '); - $animate.enter(container, null, par); - - $http.get(url, { cache : true }).success(function(html) { - loading = false; - - html = '
      ' + - '
      ' + - html + - '
      '; - container.html(html); - - //avoid showing the element if the user has already closed it - if(container.css('display') == 'block') { - container.css('display','none'); - $animate.addClass(container, 'ng-hide'); - } - }); - } - else { - container.hasClass('ng-hide') ? $animate.removeClass(container, 'ng-hide') : $animate.addClass(container, 'ng-hide'); - } - }); - }); - } - } -}]; - -angular.module('bootstrap', []) - .directive(directive) - .factory('popoverElement', popoverElement) - .run(function() { - marked.setOptions({ - gfm: true, - tables: true - }); - }); diff --git a/docs/app/src/app.js b/docs/app/src/app.js index 76c8fef81029..157985f05705 100644 --- a/docs/app/src/app.js +++ b/docs/app/src/app.js @@ -13,7 +13,6 @@ angular.module('docsApp', [ 'search', 'tutorials', 'versions', - 'bootstrap', 'ui.bootstrap.dropdown' ]) diff --git a/docs/app/src/directives.js b/docs/app/src/directives.js index 4c3acf781000..c7c14eda1e3f 100644 --- a/docs/app/src/directives.js +++ b/docs/app/src/directives.js @@ -34,4 +34,15 @@ angular.module('directives', []) return function(scope, element) { $anchorScroll.yOffset = element; }; -}]); +}]) + +.directive('table', function() { + return { + restrict: 'E', + link: function(scope, element, attrs) { + if (!attrs['class']) { + element.addClass('table table-bordered table-striped code-table'); + } + } + }; +}); diff --git a/docs/app/src/examples.js b/docs/app/src/examples.js index 5db8bf4e88f7..1b71586e4b80 100644 --- a/docs/app/src/examples.js +++ b/docs/app/src/examples.js @@ -1,5 +1,55 @@ angular.module('examples', []) +.directive('runnableExample', ['$templateCache', '$document', function($templateCache, $document) { + var exampleClassNameSelector = '.runnable-example-file'; + var doc = $document[0]; + var tpl = + ''; + + return { + restrict: 'C', + scope : true, + controller : ['$scope', function($scope) { + $scope.setTab = function(index) { + var tab = $scope.tabs[index]; + $scope.activeTabIndex = index; + $scope.$broadcast('tabChange', index, tab); + }; + }], + compile : function(element) { + element.html(tpl + element.html()); + return function(scope, element) { + var node = element[0]; + var examples = node.querySelectorAll(exampleClassNameSelector); + var tabs = [], now = Date.now(); + angular.forEach(examples, function(child, index) { + tabs.push(child.getAttribute('name')); + }); + + if(tabs.length > 0) { + scope.tabs = tabs; + scope.$on('tabChange', function(e, index, title) { + angular.forEach(examples, function(child) { + child.style.display = 'none'; + }); + var selected = examples[index]; + selected.style.display = 'block'; + }); + scope.setTab(0); + } + }; + } + }; +}]) + .factory('formPostData', ['$document', function($document) { return function(url, newWindow, fields) { /** diff --git a/docs/config/services/deployments/debug.js b/docs/config/services/deployments/debug.js index d97711e882ca..9fe969b60ad2 100644 --- a/docs/config/services/deployments/debug.js +++ b/docs/config/services/deployments/debug.js @@ -18,7 +18,6 @@ module.exports = function debugDeployment(getVersion) { '../angular-touch.js', '../angular-animate.js', 'components/marked-' + getVersion('marked', 'node_modules', 'package.json') + '/lib/marked.js', - 'js/angular-bootstrap/bootstrap.js', 'js/angular-bootstrap/dropdown-toggle.js', 'components/lunr.js-' + getVersion('lunr.js') + '/lunr.js', 'components/google-code-prettify-' + getVersion('google-code-prettify') + '/src/prettify.js', diff --git a/docs/config/services/deployments/default.js b/docs/config/services/deployments/default.js index 3765fdf405c2..31ab6041e45e 100644 --- a/docs/config/services/deployments/default.js +++ b/docs/config/services/deployments/default.js @@ -18,7 +18,6 @@ module.exports = function defaultDeployment(getVersion) { '../angular-touch.min.js', '../angular-animate.min.js', 'components/marked-' + getVersion('marked', 'node_modules', 'package.json') + '/lib/marked.js', - 'js/angular-bootstrap/bootstrap.min.js', 'js/angular-bootstrap/dropdown-toggle.min.js', 'components/lunr.js-' + getVersion('lunr.js') + '/lunr.min.js', 'components/google-code-prettify-' + getVersion('google-code-prettify') + '/src/prettify.js', diff --git a/docs/config/services/deployments/jquery.js b/docs/config/services/deployments/jquery.js index a54473061762..13099ef23f93 100644 --- a/docs/config/services/deployments/jquery.js +++ b/docs/config/services/deployments/jquery.js @@ -22,7 +22,6 @@ module.exports = function jqueryDeployment(getVersion) { '../angular-touch.min.js', '../angular-animate.min.js', 'components/marked-' + getVersion('marked', 'node_modules', 'package.json') + '/lib/marked.js', - 'js/angular-bootstrap/bootstrap.min.js', 'js/angular-bootstrap/dropdown-toggle.min.js', 'components/lunr.js-' + getVersion('lunr.js') + '/lunr.min.js', 'components/google-code-prettify-' + getVersion('google-code-prettify') + '/src/prettify.js', diff --git a/docs/config/services/deployments/production.js b/docs/config/services/deployments/production.js index 237c53e9460a..aa740ed5e8c9 100644 --- a/docs/config/services/deployments/production.js +++ b/docs/config/services/deployments/production.js @@ -21,7 +21,6 @@ module.exports = function productionDeployment(getVersion) { cdnUrl + '/angular-touch.min.js', cdnUrl + '/angular-animate.min.js', 'components/marked-' + getVersion('marked', 'node_modules', 'package.json') + '/lib/marked.js', - 'js/angular-bootstrap/bootstrap.min.js', 'js/angular-bootstrap/dropdown-toggle.min.js', 'components/lunr.js-' + getVersion('lunr.js') + '/lunr.min.js', 'components/google-code-prettify-' + getVersion('google-code-prettify') + '/src/prettify.js', From 4a39ad475b6d2393958afe32a2412ff42958cff1 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sun, 14 Feb 2016 18:48:21 +0100 Subject: [PATCH 279/354] chore(docs-app): fix middle/right dropdown clicks in FF Closes #14024 --- docs/app/assets/js/angular-bootstrap/dropdown-toggle.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/app/assets/js/angular-bootstrap/dropdown-toggle.js b/docs/app/assets/js/angular-bootstrap/dropdown-toggle.js index a5cdac6a080f..7be6002ac546 100644 --- a/docs/app/assets/js/angular-bootstrap/dropdown-toggle.js +++ b/docs/app/assets/js/angular-bootstrap/dropdown-toggle.js @@ -54,7 +54,9 @@ angular.module('ui.bootstrap.dropdown', []) } }; - var closeDropdown = function() { + var closeDropdown = function(evt) { + if (evt && evt.which === 3) return; + openScope.$apply(function() { openScope.isOpen = false; }); From 863a4232a6faa92428df45cd54d5a519be2434de Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Wed, 17 Feb 2016 02:24:49 +0200 Subject: [PATCH 280/354] fix(copy): add support for copying `Blob` objects Although `copy()` does not need to (and never will) support all kinds of objects, there is a (not uncommon) usecase for supporting `Blob` objects: `ngMock`'s `$httpBackend` will return a copy of the response data (so that changes in one test won't affect others). Since returning `Blob` objects in response to HTTP requests is a valid usecase and since `ngMocks`'s `$httpBackend` will use `copy()` to create a copy of that data, it is reasonable to support `Blob` objects. (I didn't run any benchmarks, but the additional check for the type of the copied element should have negligible impact, compared to the other stuff that `copy()` is doing.) Fixes #9669 Closes #14064 --- src/Angular.js | 2 ++ test/AngularSpec.js | 12 ++++++++++++ test/ngMock/angular-mocksSpec.js | 20 ++++++++++++++++++++ 3 files changed, 34 insertions(+) diff --git a/src/Angular.js b/src/Angular.js index b866f4a327e6..f52d61c963b6 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -894,6 +894,8 @@ function copy(source, destination) { } else if (isRegExp(source)) { destination = new RegExp(source.source, source.toString().match(/[^\/]*$/)[0]); destination.lastIndex = source.lastIndex; + } else if (isBlob(source)) { + destination = new source.constructor([source], {type: source.type}); } else if (isFunction(source.cloneNode)) { destination = source.cloneNode(true); } else { diff --git a/test/AngularSpec.js b/test/AngularSpec.js index 3184fc11d822..d2b8831aa6fa 100644 --- a/test/AngularSpec.js +++ b/test/AngularSpec.js @@ -177,6 +177,18 @@ describe('angular', function() { } }); + it('should handle Blob objects', function() { + if (typeof Blob !== 'undefined') { + var src = new Blob(['foo'], {type: 'bar'}); + var dst = copy(src); + + expect(dst).not.toBe(src); + expect(dst.size).toBe(3); + expect(dst.type).toBe('bar'); + expect(isBlob(dst)).toBe(true); + } + }); + it("should throw an exception if a Uint8Array is the destination", function() { if (typeof Uint8Array !== 'undefined') { var src = new Uint8Array(); diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 6824e8feaef7..075207b25836 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -993,6 +993,26 @@ describe('ngMock', function() { }); + it('should be able to handle Blobs as mock data', function() { + if (typeof Blob !== 'undefined') { + var mockBlob = new Blob(['{"foo":"bar"}'], {type: 'application/json'}); + + hb.when('GET', '/url1').respond(200, mockBlob, {}); + + callback.andCallFake(function(status, response) { + expect(response).not.toBe(mockBlob); + expect(response.size).toBe(13); + expect(response.type).toBe('application/json'); + expect(response.toString()).toBe('[object Blob]'); + }); + + hb('GET', '/url1', null, callback); + hb.flush(); + expect(callback).toHaveBeenCalledOnce(); + } + }); + + it('should throw error when unexpected request', function() { hb.when('GET', '/url1').respond(200, 'content'); expect(function() { From b9d3625e926b038955b74e92a6266a48008b433f Mon Sep 17 00:00:00 2001 From: ryanhart2 Date: Fri, 12 Feb 2016 05:27:30 +0700 Subject: [PATCH 281/354] docs($http): improve description of caching Included changes: * Point out that only GET & JSONP requests are cached. * Explain that the URL+search params are used as cache keys (headers not considered). * Add note about cache-control headers on response not affecting Angular caching. * Mention `$httpProvider.defaults.cache` (in addition to `$http.defaults.cache`). * Clear up how `defaults.cache` and `config.cache` are taken into account for determining the caching behavior for each request. Fixes #11101 Closes #13003 --- src/ng/http.js | 55 ++++++++++++++++++++++++++++---------------------- 1 file changed, 31 insertions(+), 24 deletions(-) diff --git a/src/ng/http.js b/src/ng/http.js index b00c26a8ff03..fb5f51f1a9bc 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -257,10 +257,9 @@ function $HttpProvider() { * * Object containing default values for all {@link ng.$http $http} requests. * - * - **`defaults.cache`** - {Object} - an object built with {@link ng.$cacheFactory `$cacheFactory`} - * that will provide the cache for all requests who set their `cache` property to `true`. - * If you set the `defaults.cache = false` then only requests that specify their own custom - * cache object will be cached. See {@link $http#caching $http Caching} for more information. + * - **`defaults.cache`** - {boolean|Object} - A boolean value or object created with + * {@link ng.$cacheFactory `$cacheFactory`} to enable or disable caching of HTTP responses + * by default. See {@link $http#caching $http Caching} for more information. * * - **`defaults.xsrfCookieName`** - {string} - Name of cookie containing the XSRF token. * Defaults value is `'XSRF-TOKEN'`. @@ -608,26 +607,35 @@ function $HttpProvider() { * * ## Caching * - * To enable caching, set the request configuration `cache` property to `true` (to use default - * cache) or to a custom cache object (built with {@link ng.$cacheFactory `$cacheFactory`}). - * When the cache is enabled, `$http` stores the response from the server in the specified - * cache. The next time the same request is made, the response is served from the cache without - * sending a request to the server. + * {@link ng.$http `$http`} responses are not cached by default. To enable caching, you must + * set the config.cache value or the default cache value to TRUE or to a cache object (created + * with {@link ng.$cacheFactory `$cacheFactory`}). If defined, the value of config.cache takes + * precedence over the default cache value. * - * Note that even if the response is served from cache, delivery of the data is asynchronous in - * the same way that real requests are. + * In order to: + * * cache all responses - set the default cache value to TRUE or to a cache object + * * cache a specific response - set config.cache value to TRUE or to a cache object * - * If there are multiple GET requests for the same URL that should be cached using the same - * cache, but the cache is not populated yet, only one request to the server will be made and - * the remaining requests will be fulfilled using the response from the first request. + * If caching is enabled, but neither the default cache nor config.cache are set to a cache object, + * then the default `$cacheFactory($http)` object is used. * - * You can change the default cache to a new object (built with - * {@link ng.$cacheFactory `$cacheFactory`}) by updating the - * {@link ng.$http#defaults `$http.defaults.cache`} property. All requests who set - * their `cache` property to `true` will now use this cache object. + * The default cache value can be set by updating the + * {@link ng.$http#defaults `$http.defaults.cache`} property or the + * {@link $httpProvider#defaults `$httpProvider.defaults.cache`} property. + * + * When caching is enabled, {@link ng.$http `$http`} stores the response from the server using + * the relevant cache object. The next time the same request is made, the response is returned + * from the cache without sending a request to the server. + * + * Take note that: + * + * * Only GET and JSONP requests are cached. + * * The cache key is the request URL including search parameters; headers are not considered. + * * Cached responses are returned asynchronously, in the same way as responses from the server. + * * If multiple identical requests are made using the same cache, which is not yet populated, + * one request will be made to the server and remaining requests will return the same response. + * * A cache-control header on the response does not affect if or how responses are cached. * - * If you set the default cache to `false` then only requests that specify their own custom - * cache object will be cached. * * ## Interceptors * @@ -805,10 +813,9 @@ function $HttpProvider() { * by registering it as a {@link auto.$provide#service service}. * The default serializer is the {@link $httpParamSerializer $httpParamSerializer}; * alternatively, you can use the {@link $httpParamSerializerJQLike $httpParamSerializerJQLike} - * - **cache** – `{boolean|Cache}` – If true, a default $http cache will be used to cache the - * GET request, otherwise if a cache instance built with - * {@link ng.$cacheFactory $cacheFactory}, this cache will be used for - * caching. + * - **cache** – `{boolean|Object}` – A boolean value or object created with + * {@link ng.$cacheFactory `$cacheFactory`} to enable or disable caching of the HTTP response. + * See {@link $http#caching $http Caching} for more information. * - **timeout** – `{number|Promise}` – timeout in milliseconds, or {@link ng.$q promise} * that should abort the request when resolved. * - **withCredentials** - `{boolean}` - whether to set the `withCredentials` flag on the From 02929f82f30449301ff18fea84a6396a017683b1 Mon Sep 17 00:00:00 2001 From: Jason Bedard Date: Sat, 23 Jan 2016 13:57:22 -0800 Subject: [PATCH 282/354] fix(input): re-validate when partially editing date-family inputs Fixes #12207 Closes #13886 --- src/ng/directive/input.js | 30 ++++++++++++- test/ng/directive/inputSpec.js | 77 ++++++++++++++++++++++++++++++++++ 2 files changed, 105 insertions(+), 2 deletions(-) diff --git a/src/ng/directive/input.js b/src/ng/directive/input.js index 65d26ad979cf..a42c3584f9dd 100644 --- a/src/ng/directive/input.js +++ b/src/ng/directive/input.js @@ -32,6 +32,12 @@ var WEEK_REGEXP = /^(\d{4})-W(\d\d)$/; var MONTH_REGEXP = /^(\d{4})-(\d\d)$/; var TIME_REGEXP = /^(\d\d):(\d\d)(?::(\d\d)(\.\d{1,3})?)?$/; +var PARTIAL_VALIDATION_EVENTS = 'keydown wheel mousedown'; +var PARTIAL_VALIDATION_TYPES = createMap(); +forEach('date,datetime-local,month,time,week'.split(','), function(type) { + PARTIAL_VALIDATION_TYPES[type] = true; +}); + var inputType = { /** @@ -1118,6 +1124,8 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) { }); } + var timeout; + var listener = function(ev) { if (timeout) { $browser.defer.cancel(timeout); @@ -1147,8 +1155,6 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) { if ($sniffer.hasEvent('input')) { element.on('input', listener); } else { - var timeout; - var deferListener = function(ev, input, origValue) { if (!timeout) { timeout = $browser.defer(function() { @@ -1180,6 +1186,26 @@ function baseInputType(scope, element, attr, ctrl, $sniffer, $browser) { // or form autocomplete on newer browser, we need "change" event to catch it element.on('change', listener); + // Some native input types (date-family) have the ability to change validity without + // firing any input/change events. + // For these event types, when native validators are present and the browser supports the type, + // check for validity changes on various DOM events. + if (PARTIAL_VALIDATION_TYPES[type] && ctrl.$$hasNativeValidators && type === attr.type) { + element.on(PARTIAL_VALIDATION_EVENTS, function(ev) { + if (!timeout) { + var validity = this[VALIDITY_STATE_PROPERTY]; + var origBadInput = validity.badInput; + var origTypeMismatch = validity.typeMismatch; + timeout = $browser.defer(function() { + timeout = null; + if (validity.badInput !== origBadInput || validity.typeMismatch !== origTypeMismatch) { + listener(ev); + } + }); + } + }); + } + ctrl.$render = function() { // Workaround for Firefox validation #12102. var value = ctrl.$isEmpty(ctrl.$viewValue) ? '' : ctrl.$viewValue; diff --git a/test/ng/directive/inputSpec.js b/test/ng/directive/inputSpec.js index 4b9727913737..9dc40d93e09d 100644 --- a/test/ng/directive/inputSpec.js +++ b/test/ng/directive/inputSpec.js @@ -1943,6 +1943,83 @@ describe('input', function() { }); }); + ['month', 'week', 'time', 'date', 'datetime-local'].forEach(function(inputType) { + if (jqLite('').prop('type') !== inputType) { + return; + } + + describe(inputType, function() { + they('should re-validate and dirty when partially editing the input value ($prop event)', + ['keydown', 'wheel', 'mousedown'], + function(validationEvent) { + var mockValidity = {valid: true, badInput: false}; + var inputElm = helper.compileInput('', mockValidity); + + expect(inputElm).toBeValid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + + inputElm.triggerHandler({type: validationEvent}); + mockValidity.valid = false; + mockValidity.badInput = true; + $browser.defer.flush(); + expect(inputElm).toBeInvalid(); + expect($rootScope.form.alias.$pristine).toBeFalsy(); + } + ); + + they('should do nothing when $prop event fired but validity does not change', + ['keydown', 'wheel', 'mousedown'], + function(validationEvent) { + var mockValidity = {valid: true, badInput: false}; + var inputElm = helper.compileInput('', mockValidity); + + expect(inputElm).toBeValid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + + inputElm.triggerHandler({type: validationEvent}); + $browser.defer.flush(); + expect(inputElm).toBeValid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + } + ); + + they('should re-validate dirty when already $invalid and partially editing the input value ($prop event)', + ['keydown', 'wheel', 'mousedown'], + function(validationEvent) { + var mockValidity = {valid: false, valueMissing: true, badInput: false}; + var inputElm = helper.compileInput('', mockValidity); + + expect(inputElm).toBeInvalid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + + inputElm.triggerHandler({type: validationEvent}); + mockValidity.valid = false; + mockValidity.valueMissing = true; + mockValidity.badInput = true; + $browser.defer.flush(); + expect(inputElm).toBeInvalid(); + expect($rootScope.form.alias.$pristine).toBeFalsy(); + } + ); + + they('should do nothing when already $invalid and $prop event fired but validity does not change', + ['keydown', 'wheel', 'mousedown'], + function(validationEvent) { + var mockValidity = {valid: false, valueMissing: true, badInput: false}; + var inputElm = helper.compileInput('', mockValidity); + + expect(inputElm).toBeInvalid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + + inputElm.triggerHandler({type: validationEvent}); + $browser.defer.flush(); + expect(inputElm).toBeInvalid(); + expect($rootScope.form.alias.$pristine).toBeTruthy(); + } + ); + }); + }); + describe('number', function() { From 7e7a0693e5eceeb6fb765d34d7ba31c1ea2badca Mon Sep 17 00:00:00 2001 From: MicCarr Date: Wed, 17 Feb 2016 15:17:57 +0100 Subject: [PATCH 283/354] docs(ngMock): fix typo in example Closes #14069 --- src/ngMock/angular-mocks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 2f93a704a176..462aa2b0ff77 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1911,7 +1911,7 @@ angular.mock.$RootElementProvider = function() { * * myMod.controller('MyDirectiveController', ['$log', function($log) { * $log.info(this.name); - * })]; + * }]); * * * // In a test ... From b830f5b68e98ee67f6a4811da86a52a9bd79e03e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matias=20Niemel=C3=A4?= Date: Sat, 20 Feb 2016 22:16:47 -0800 Subject: [PATCH 284/354] revert: fix(ngMock): attach `$injector` to `$rootElement` This reverts commit fad4dc07d7831eef8f5f8c06c75b8a9f8a4a8de4. The fixes applied in the reverted commit caused a memory leak with JQuery + Karma. --- src/ngMock/angular-mocks.js | 6 +++--- test/ngMock/angular-mocksSpec.js | 4 ---- 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 462aa2b0ff77..0a52118bc655 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1880,9 +1880,9 @@ angular.mock.$RAFDecorator = ['$delegate', function($delegate) { * */ angular.mock.$RootElementProvider = function() { - this.$get = ['$injector', function($injector) { - return angular.element('
      ').data('$injector', $injector); - }]; + this.$get = function() { + return angular.element('
      '); + }; }; /** diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 075207b25836..8a0cdd62e8a5 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1596,10 +1596,6 @@ describe('ngMock', function() { it('should create mock application root', inject(function($rootElement) { expect($rootElement.text()).toEqual(''); })); - - it('should attach the `$injector` to `$rootElement`', inject(function($injector, $rootElement) { - expect($rootElement.injector()).toBe($injector); - })); }); From 7b2c7cbab894d719695312cca961ad5e674ccee8 Mon Sep 17 00:00:00 2001 From: Gordon Zhu Date: Sat, 20 Feb 2016 14:17:27 -0800 Subject: [PATCH 285/354] docs(guide/index): add Firebase Foundations and Angular Course Closes #14097 --- docs/content/guide/index.ngdoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/content/guide/index.ngdoc b/docs/content/guide/index.ngdoc index e54063afd4e4..2146f3cc3872 100644 --- a/docs/content/guide/index.ngdoc +++ b/docs/content/guide/index.ngdoc @@ -91,7 +91,7 @@ This is a short list of libraries with specific support and documentation for wo ### Server-Specific * **Django:** [Tutorial](http://blog.mourafiq.com/post/55034504632/end-to-end-web-app-with-django-rest-framework), [Integrating AngularJS with Django](http://django-angular.readthedocs.org/en/latest/integration.html), [Getting Started with Django Rest Framework and AngularJS](http://blog.kevinastone.com/getting-started-with-django-rest-framework-and-angularjs.html) -* **FireBase:** [AngularFire](http://angularfire.com/), [Realtime Apps with AngularJS and FireBase (video)](http://www.youtube.com/watch?v=C7ZI7z7qnHU) +* **FireBase:** [AngularFire](http://angularfire.com/), [Firebase Foundations for AngularJS](http://blog.watchandcode.com/firebase-foundations/), [Realtime Apps with AngularJS and FireBase (video)](http://www.youtube.com/watch?v=C7ZI7z7qnHU) * **Google Cloud Platform: **[with Cloud Endpoints](https://cloud.google.com/developers/articles/angularjs-cloud-endpoints-recipe-for-building-modern-web-applications/), [with Go](https://github.com/GoogleCloudPlatform/appengine-angular-gotodos) * **Hood.ie:** [60 Minutes to Awesome](http://www.roberthorvick.com/2013/06/30/todomvc-angularjs-hood-ie-60-minutes-to-awesome/) * **MEAN Stack: **[Blog post](http://blog.mongodb.org/post/49262866911/the-mean-stack-mongodb-expressjs-angularjs-and), [Setup](http://thecodebarbarian.wordpress.com/2013/07/22/introduction-to-the-mean-stack-part-one-setting-up-your-tools/), [GDL Video](https://developers.google.com/live/shows/913996610) @@ -116,6 +116,7 @@ This is a short list of libraries with specific support and documentation for wo ###Videos: * [egghead.io](http://egghead.io/) * [Angular on YouTube](http://youtube.com/angularjs) +* [Firebase Foundations for AngularJS](http://blog.watchandcode.com/firebase-foundations/) ### Courses * **Free online:** @@ -123,6 +124,7 @@ This is a short list of libraries with specific support and documentation for wo [CodeAcademy](http://www.codecademy.com/courses/javascript-advanced-en-2hJ3J/0/1), [CodeSchool](https://www.codeschool.com/courses/shaping-up-with-angular-js) * **Paid online:** + [The Angular Course (115 videos that show you how to build a full app)](http://watchandcode.com/courses/angular-course/), [Pluralsite (3 courses)](http://www.pluralsight.com/training/Courses/Find?highlight=true&searchTerm=angularjs), [Tuts+](https://tutsplus.com/course/easier-js-apps-with-angular/), [lynda.com](http://www.lynda.com/AngularJS-tutorials/Up-Running-AngularJS/133318-2.html), From eec095a751d42ba93f4b0c50bfc1e6cd206c1572 Mon Sep 17 00:00:00 2001 From: Kin Date: Sun, 21 Feb 2016 12:09:33 -0800 Subject: [PATCH 286/354] docs(angular.forEach): fix typo --- src/Angular.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Angular.js b/src/Angular.js index f52d61c963b6..577e9f2a1c17 100644 --- a/src/Angular.js +++ b/src/Angular.js @@ -236,7 +236,7 @@ function isArrayLike(obj) { * * Unlike ES262's * [Array.prototype.forEach](http://www.ecma-international.org/ecma-262/5.1/#sec-15.4.4.18), - * Providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just + * providing 'undefined' or 'null' values for `obj` will not throw a TypeError, but rather just * return the value provided. * ```js From 5a1e148da674e491a4cd8e4638e10b853253177e Mon Sep 17 00:00:00 2001 From: Kin Date: Sun, 21 Feb 2016 12:27:42 -0800 Subject: [PATCH 287/354] docs(numberFilter): improve wording for infinity description Closes #14100 --- src/ng/filter/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/filter/filters.js b/src/ng/filter/filters.js index 91ac973d8066..d9cf990f03d2 100644 --- a/src/ng/filter/filters.js +++ b/src/ng/filter/filters.js @@ -85,7 +85,7 @@ function currencyFilter($locale) { * Formats a number as text. * * If the input is null or undefined, it will just be returned. - * If the input is infinite (Infinity/-Infinity) the Infinity symbol '∞' is returned. + * If the input is infinite (Infinity or -Infinity), the Infinity symbol '∞' or '-∞' is returned, respectively. * If the input is not a number an empty string is returned. * * From bf11cf30957a845ceee7cbfd3020b2612eb9101c Mon Sep 17 00:00:00 2001 From: Ben Elliott Date: Mon, 22 Feb 2016 10:25:48 +0000 Subject: [PATCH 288/354] docs(ngMessages): clarify ngMessages docs with clearer example Closes #14103 --- src/ngMessages/messages.js | 65 +++++++++++++++++++++++++------------- 1 file changed, 43 insertions(+), 22 deletions(-) diff --git a/src/ngMessages/messages.js b/src/ngMessages/messages.js index 20edf80fa1c0..2a2f24fad9b4 100644 --- a/src/ngMessages/messages.js +++ b/src/ngMessages/messages.js @@ -24,45 +24,66 @@ var jqLite = angular.element; * `ngMessage` and `ngMessageExp` directives. * * # Usage - * The `ngMessages` directive listens on a key/value collection which is set on the ngMessages attribute. - * Since the {@link ngModel ngModel} directive exposes an `$error` object, this error object can be - * used with `ngMessages` to display control error messages in an easier way than with just regular angular - * template directives. + * The `ngMessages` directive allows keys in a key/value collection to be associated with a child element + * (or 'message') that will show or hide based on the truthiness of that key's value in the collection. A common use + * case for `ngMessages` is to display error messages for inputs using the `$error` object exposed by the + * {@link ngModel ngModel} directive. + * + * The child elements of the `ngMessages` directive are matched to the collection keys by a `ngMessage` or + * `ngMessageExp` directive. The value of these attributes must match a key in the collection that is provided by + * the `ngMessages` directive. + * + * Consider the following example, which illustrates a typical use case of `ngMessages`. Within the form `myForm` we + * have a text input named `myField` which is bound to the scope variable `field` using the {@link ngModel ngModel} + * directive. + * + * The `myField` field is a required input of type `email` with a maximum length of 15 characters. * * ```html *
      * *
      - *
      You did not enter a field
      - *
      - * Your email must be between 5 and 100 characters long - *
      + *
      Please enter a value for this field.
      + *
      This field must be a valid email address.
      + *
      This field can be at most 15 characters long.
      *
      *
      * ``` * - * Now whatever key/value entries are present within the provided object (in this case `$error`) then - * the ngMessages directive will render the inner first ngMessage directive (depending if the key values - * match the attribute value present on each ngMessage directive). In other words, if your errors - * object contains the following data: + * In order to show error messages corresponding to `myField` we first create an element with an `ngMessages` attribute + * set to the `$error` object owned by the `myField` input in our `myForm` form. + * + * Within this element we then create separate elements for each of the possible errors that `myField` could have. + * The `ngMessage` attribute is used to declare which element(s) will appear for which error - for example, + * setting `ng-message="required"` specifies that this particular element should be displayed when there + * is no value present for the required field `myField` (because the key `required` will be `true` in the object + * `myForm.myField.$error`). + * + * ### Message order + * + * By default, `ngMessages` will only display one message for a particular key/value collection at any time. If more + * than one message (or error) key is currently true, then which message is shown is determined by the order of messages + * in the HTML template code (messages declared first are prioritised). This mechanism means the developer does not have + * to prioritise messages using custom JavaScript code. + * + * Given the following error object for our example (which informs us that the field `myField` currently has both the + * `required` and `email` errors): * * ```javascript * - * myField.$error = { minlength : true, required : true }; + * myField.$error = { required : true, email: true, maxlength: false }; * ``` + * The `required` message will be displayed to the user since it appears before the `email` message in the DOM. + * Once the user types a single character, the `required` message will disappear (since the field now has a value) + * but the `email` message will be visible because it is still applicable. * - * Then the `required` message will be displayed first. When required is false then the `minlength` message - * will be displayed right after (since these messages are ordered this way in the template HTML code). - * The prioritization of each message is determined by what order they're present in the DOM. - * Therefore, instead of having custom JavaScript code determine the priority of what errors are - * present before others, the presentation of the errors are handled within the template. + * ### Displaying multiple messages at the same time * - * By default, ngMessages will only display one error at a time. However, if you wish to display all - * messages then the `ng-messages-multiple` attribute flag can be used on the element containing the - * ngMessages directive to make this happen. + * While `ngMessages` will by default only display one error element at a time, the `ng-messages-multiple` attribute can + * be applied to the `ngMessages` container element to cause it to display all applicable error messages at once: * * ```html * From 571e323f7d1f720e7612def7a1b29f4fc48c4f5b Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Sat, 20 Feb 2016 22:52:32 +0200 Subject: [PATCH 289/354] fix(ngMock): prevent memory leak due to data attached to `$rootElement` Starting with 88bb551, `ngMock` will attach the `$injector` to the `$rootElement`, but will never clean it up, resulting in a memory leak. Since a new `$rootElement` is created for every test, this leak causes Karma to crash on large test-suites. The problem was not detected by our internal tests, because we do our own clean-up in `testabilityPatch.js`. 88bb551 was revert with 1b8590a. This commit incorporates the changes from 88bb551 and prevents the memory leak, by cleaning up all data attached to `$rootElement` after each test. Fixes #14094 Closes #14098 --- src/jqLite.js | 9 ++- src/ngMock/angular-mocks.js | 31 +++++--- test/helpers/testabilityPatch.js | 8 +-- test/ngMock/angular-mocksSpec.js | 117 +++++++++++++++++++++++++++++++ 4 files changed, 148 insertions(+), 17 deletions(-) diff --git a/src/jqLite.js b/src/jqLite.js index 8115fd438e10..20edc46cd4f0 100644 --- a/src/jqLite.js +++ b/src/jqLite.js @@ -196,6 +196,12 @@ function jqLiteHasData(node) { return false; } +function jqLiteCleanData(nodes) { + for (var i = 0, ii = nodes.length; i < ii; i++) { + jqLiteRemoveData(nodes[i]); + } +} + function jqLiteBuildFragment(html, context) { var tmp, tag, wrap, fragment = context.createDocumentFragment(), @@ -594,7 +600,8 @@ function getAliasedAttrName(name) { forEach({ data: jqLiteData, removeData: jqLiteRemoveData, - hasData: jqLiteHasData + hasData: jqLiteHasData, + cleanData: jqLiteCleanData }, function(fn, name) { JQLite[name] = fn; }); diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 0a52118bc655..e6df9cc67c88 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -127,12 +127,12 @@ angular.mock.$Browser = function() { }; angular.mock.$Browser.prototype = { -/** - * @name $browser#poll - * - * @description - * run all fns in pollFns - */ + /** + * @name $browser#poll + * + * @description + * run all fns in pollFns + */ poll: function poll() { angular.forEach(this.pollFns, function(pollFn) { pollFn(); @@ -1879,10 +1879,12 @@ angular.mock.$RAFDecorator = ['$delegate', function($delegate) { /** * */ +var originalRootElement; angular.mock.$RootElementProvider = function() { - this.$get = function() { - return angular.element('
      '); - }; + this.$get = ['$injector', function($injector) { + originalRootElement = angular.element('
      ').data('$injector', $injector); + return originalRootElement; + }]; }; /** @@ -2296,6 +2298,7 @@ if (window.jasmine || window.mocha) { (window.beforeEach || window.setup)(function() { + originalRootElement = null; annotatedFunctions = []; currentSpec = this; }); @@ -2318,7 +2321,15 @@ if (window.jasmine || window.mocha) { currentSpec = null; if (injector) { - injector.get('$rootElement').off(); + // Ensure `$rootElement` is instantiated, before checking `originalRootElement` + var $rootElement = injector.get('$rootElement'); + var rootNode = $rootElement && $rootElement[0]; + var cleanUpNodes = !originalRootElement ? [] : [originalRootElement[0]]; + if (rootNode && (!originalRootElement || rootNode !== originalRootElement[0])) { + cleanUpNodes.push(rootNode); + } + angular.element.cleanData(cleanUpNodes); + } // clean up jquery's fragment cache diff --git a/test/helpers/testabilityPatch.js b/test/helpers/testabilityPatch.js index 469459c39094..05e16e5f47a9 100644 --- a/test/helpers/testabilityPatch.js +++ b/test/helpers/testabilityPatch.js @@ -117,12 +117,8 @@ function dealoc(obj) { } function cleanup(element) { - element.off().removeData(); - if (window.jQuery) { - // jQuery 2.x doesn't expose the cache storage; ensure all element data - // is removed during its cleanup. - jQuery.cleanData([element]); - } + angular.element.cleanData(element); + // Note: We aren't using element.contents() here. Under jQuery, element.contents() can fail // for IFRAME elements. jQuery explicitly uses (element.contentDocument || // element.contentWindow.document) and both properties are null for IFRAMES that aren't attached diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 8a0cdd62e8a5..7a80801f5780 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1596,6 +1596,10 @@ describe('ngMock', function() { it('should create mock application root', inject(function($rootElement) { expect($rootElement.text()).toEqual(''); })); + + it('should attach the `$injector` to `$rootElement`', inject(function($injector, $rootElement) { + expect($rootElement.injector()).toBe($injector); + })); }); @@ -2113,9 +2117,122 @@ describe('ngMockE2E', function() { }); }); + describe('make sure that we can create an injector outside of tests', function() { //since some libraries create custom injectors outside of tests, //we want to make sure that this is not breaking the internals of //how we manage annotated function cleanup during tests. See #10967 angular.injector([function($injector) {}]); }); + + +describe('`afterEach` clean-up', function() { + describe('undecorated `$rootElement`', function() { + var prevRootElement; + var prevCleanDataSpy; + + + it('should set up spies so the next test can verify `$rootElement` was cleaned up', function() { + module(function($provide) { + $provide.decorator('$rootElement', function($delegate) { + prevRootElement = $delegate; + + // Spy on `angular.element.cleanData()`, so the next test can verify + // that it has been called as necessary + prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); + + return $delegate; + }); + }); + + // Inject the `$rootElement` to ensure it has been created + inject(function($rootElement) { + expect($rootElement.injector()).toBeDefined(); + }); + }); + + + it('should clean up `$rootElement` after each test', function() { + // One call is made by `testabilityPatch`'s `dealoc()` + // We want to verify the subsequent call, made by `angular-mocks` + expect(prevCleanDataSpy.callCount).toBe(2); + + var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; + expect(cleanUpNodes.length).toBe(1); + expect(cleanUpNodes[0]).toBe(prevRootElement[0]); + }); + }); + + + describe('decorated `$rootElement`', function() { + var prevOriginalRootElement; + var prevRootElement; + var prevCleanDataSpy; + + + it('should set up spies so the next text can verify `$rootElement` was cleaned up', function() { + module(function($provide) { + $provide.decorator('$rootElement', function($delegate) { + prevOriginalRootElement = $delegate; + + // Mock `$rootElement` to be able to verify that the correct object is cleaned up + prevRootElement = angular.element('
      '); + + // Spy on `angular.element.cleanData()`, so the next test can verify + // that it has been called as necessary + prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); + + return prevRootElement; + }); + }); + + // Inject the `$rootElement` to ensure it has been created + inject(function($rootElement) { + expect($rootElement).toBe(prevRootElement); + expect(prevOriginalRootElement.injector()).toBeDefined(); + expect(prevRootElement.injector()).toBeUndefined(); + + // If we don't clean up `prevOriginalRootElement`-related data now, `testabilityPatch` will + // complain about a memory leak, because it doesn't clean up after the original + // `$rootElement` + // This is a false alarm, because `angular-mocks` would have cleaned up in a subsequent + // `afterEach` block + prevOriginalRootElement.removeData(); + }); + }); + + + it('should clean up `$rootElement` (both original and decorated) after each test', function() { + // One call is made by `testabilityPatch`'s `dealoc()` + // We want to verify the subsequent call, made by `angular-mocks` + expect(prevCleanDataSpy.callCount).toBe(2); + + var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; + expect(cleanUpNodes.length).toBe(2); + expect(cleanUpNodes[0]).toBe(prevOriginalRootElement[0]); + expect(cleanUpNodes[1]).toBe(prevRootElement[0]); + }); + }); + + + describe('uninstantiated or falsy `$rootElement`', function() { + it('should not break if `$rootElement` was never instantiated', function() { + // Just an empty test to verify that `angular-mocks` doesn't break, + // when trying to clean up `$rootElement`, if `$rootElement` was never injected in the test + // (and thus never instantiated/created) + + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); + }); + + + it('should not break if the decorated `$rootElement` is falsy (e.g. `null`)', function() { + module(function($provide) { + $provide.value('$rootElement', null); + }); + + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); + }); + }); +}); From e55829a1cd68bedd1a50f49d1229a151ada4a06f Mon Sep 17 00:00:00 2001 From: Andy Gurden Date: Thu, 3 Dec 2015 00:53:35 +0000 Subject: [PATCH 290/354] feat(ngMock): destroy $rootScope after each test Previously $rootScope would be new for each test, but old $rootScopes would never be destroyed. Now that we are able to destroy the $rootScope, doing so provides an opportunity for code to clean up things like long-lived event handlers between tests. Closes #13433 --- src/ngMock/angular-mocks.js | 1 + test/ngMock/angular-mocksSpec.js | 19 +++++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index e6df9cc67c88..48d810727770 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -2330,6 +2330,7 @@ if (window.jasmine || window.mocha) { } angular.element.cleanData(cleanUpNodes); + injector.get('$rootScope').$destroy(); } // clean up jquery's fragment cache diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index 7a80801f5780..ce2ae62743f5 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1603,6 +1603,25 @@ describe('ngMock', function() { }); + describe('$rootScope', function() { + var destroyed = false; + var oldRootScope; + + it('should destroy $rootScope after each test', inject(function($rootScope) { + $rootScope.$on('$destroy', function() { + destroyed = true; + }); + oldRootScope = $rootScope; + })); + + it('should have destroyed the $rootScope from the previous test', inject(function($rootScope) { + expect(destroyed).toBe(true); + expect($rootScope).not.toBe(oldRootScope); + expect(oldRootScope.$$destroyed).toBe(true); + })); + }); + + describe('$rootScopeDecorator', function() { describe('$countChildScopes', function() { From 146f9c1611cfa458fa5ecb9e2844cc0babef3c70 Mon Sep 17 00:00:00 2001 From: Igor Dolgov Date: Tue, 23 Feb 2016 14:31:59 +0300 Subject: [PATCH 291/354] docs(ngMock): add missing ")" in example Closes #14112 --- src/ngMock/angular-mocks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index 48d810727770..a92082c1bcc4 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -1923,7 +1923,7 @@ angular.mock.$RootElementProvider = function() { * var ctrl = $controller('MyDirectiveController', { /* no locals */ }, { name: 'Clark Kent' }); * expect(ctrl.name).toEqual('Clark Kent'); * expect($log.info.logs).toEqual(['Clark Kent']); - * }); + * })); * }); * * ``` From 24a7f28f1e82eb1d39188fb00d8572d6856ddeb7 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Mon, 22 Feb 2016 22:36:43 +0200 Subject: [PATCH 292/354] fix(ngMock): don't break if `$rootScope.$destroy()` is not a function Previously, `angular-mocks` was calling `$rootScope.$destroy()` after each test as part of it's cleaning up, assuming that it was always available. This could break if `$rootScope` was mocked and the mocked version didn't provide the `$destroy()` method. This commit prevents the error by first checking that `$rootScope.$destroy` is present. Fixes #14106 Closes #14107 --- src/ngMock/angular-mocks.js | 5 +- test/ngMock/angular-mocksSpec.js | 218 ++++++++++++++++++------------- 2 files changed, 130 insertions(+), 93 deletions(-) diff --git a/src/ngMock/angular-mocks.js b/src/ngMock/angular-mocks.js index a92082c1bcc4..38c9fa2dadb5 100644 --- a/src/ngMock/angular-mocks.js +++ b/src/ngMock/angular-mocks.js @@ -2330,7 +2330,10 @@ if (window.jasmine || window.mocha) { } angular.element.cleanData(cleanUpNodes); - injector.get('$rootScope').$destroy(); + // Ensure `$destroy()` is available, before calling it + // (a mocked `$rootScope` might not implement it (or not even be an object at all)) + var $rootScope = injector.get('$rootScope'); + if ($rootScope && $rootScope.$destroy) $rootScope.$destroy(); } // clean up jquery's fragment cache diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js index ce2ae62743f5..e1f76e44c840 100644 --- a/test/ngMock/angular-mocksSpec.js +++ b/test/ngMock/angular-mocksSpec.js @@ -1603,25 +1603,6 @@ describe('ngMock', function() { }); - describe('$rootScope', function() { - var destroyed = false; - var oldRootScope; - - it('should destroy $rootScope after each test', inject(function($rootScope) { - $rootScope.$on('$destroy', function() { - destroyed = true; - }); - oldRootScope = $rootScope; - })); - - it('should have destroyed the $rootScope from the previous test', inject(function($rootScope) { - expect(destroyed).toBe(true); - expect($rootScope).not.toBe(oldRootScope); - expect(oldRootScope.$$destroyed).toBe(true); - })); - }); - - describe('$rootScopeDecorator', function() { describe('$countChildScopes', function() { @@ -2146,112 +2127,165 @@ describe('make sure that we can create an injector outside of tests', function() describe('`afterEach` clean-up', function() { - describe('undecorated `$rootElement`', function() { - var prevRootElement; - var prevCleanDataSpy; + describe('`$rootElement`', function() { + describe('undecorated', function() { + var prevRootElement; + var prevCleanDataSpy; - it('should set up spies so the next test can verify `$rootElement` was cleaned up', function() { - module(function($provide) { - $provide.decorator('$rootElement', function($delegate) { - prevRootElement = $delegate; + it('should set up spies for the next test to verify that `$rootElement` was cleaned up', + function() { + module(function($provide) { + $provide.decorator('$rootElement', function($delegate) { + prevRootElement = $delegate; - // Spy on `angular.element.cleanData()`, so the next test can verify - // that it has been called as necessary - prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); + // Spy on `angular.element.cleanData()`, so the next test can verify + // that it has been called as necessary + prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); + + return $delegate; + }); + }); + + // Inject the `$rootElement` to ensure it has been created + inject(function($rootElement) { + expect($rootElement.injector()).toBeDefined(); + }); + } + ); - return $delegate; - }); - }); - // Inject the `$rootElement` to ensure it has been created - inject(function($rootElement) { - expect($rootElement.injector()).toBeDefined(); + it('should clean up `$rootElement` after each test', function() { + // One call is made by `testabilityPatch`'s `dealoc()` + // We want to verify the subsequent call, made by `angular-mocks` + expect(prevCleanDataSpy.callCount).toBe(2); + + var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; + expect(cleanUpNodes.length).toBe(1); + expect(cleanUpNodes[0]).toBe(prevRootElement[0]); }); }); - it('should clean up `$rootElement` after each test', function() { - // One call is made by `testabilityPatch`'s `dealoc()` - // We want to verify the subsequent call, made by `angular-mocks` - expect(prevCleanDataSpy.callCount).toBe(2); + describe('decorated', function() { + var prevOriginalRootElement; + var prevRootElement; + var prevCleanDataSpy; - var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; - expect(cleanUpNodes.length).toBe(1); - expect(cleanUpNodes[0]).toBe(prevRootElement[0]); - }); - }); + it('should set up spies for the next text to verify that `$rootElement` was cleaned up', + function() { + module(function($provide) { + $provide.decorator('$rootElement', function($delegate) { + prevOriginalRootElement = $delegate; - describe('decorated `$rootElement`', function() { - var prevOriginalRootElement; - var prevRootElement; - var prevCleanDataSpy; + // Mock `$rootElement` to be able to verify that the correct object is cleaned up + prevRootElement = angular.element('
      '); + // Spy on `angular.element.cleanData()`, so the next test can verify + // that it has been called as necessary + prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); - it('should set up spies so the next text can verify `$rootElement` was cleaned up', function() { - module(function($provide) { - $provide.decorator('$rootElement', function($delegate) { - prevOriginalRootElement = $delegate; + return prevRootElement; + }); + }); - // Mock `$rootElement` to be able to verify that the correct object is cleaned up - prevRootElement = angular.element('
      '); + // Inject the `$rootElement` to ensure it has been created + inject(function($rootElement) { + expect($rootElement).toBe(prevRootElement); + expect(prevOriginalRootElement.injector()).toBeDefined(); + expect(prevRootElement.injector()).toBeUndefined(); + + // If we don't clean up `prevOriginalRootElement`-related data now, `testabilityPatch` will + // complain about a memory leak, because it doesn't clean up after the original + // `$rootElement` + // This is a false alarm, because `angular-mocks` would have cleaned up in a subsequent + // `afterEach` block + prevOriginalRootElement.removeData(); + }); + } + ); - // Spy on `angular.element.cleanData()`, so the next test can verify - // that it has been called as necessary - prevCleanDataSpy = spyOn(angular.element, 'cleanData').andCallThrough(); - return prevRootElement; - }); - }); + it('should clean up `$rootElement` (both original and decorated) after each test', + function() { + // One call is made by `testabilityPatch`'s `dealoc()` + // We want to verify the subsequent call, made by `angular-mocks` + expect(prevCleanDataSpy.callCount).toBe(2); - // Inject the `$rootElement` to ensure it has been created - inject(function($rootElement) { - expect($rootElement).toBe(prevRootElement); - expect(prevOriginalRootElement.injector()).toBeDefined(); - expect(prevRootElement.injector()).toBeUndefined(); + var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; + expect(cleanUpNodes.length).toBe(2); + expect(cleanUpNodes[0]).toBe(prevOriginalRootElement[0]); + expect(cleanUpNodes[1]).toBe(prevRootElement[0]); + } + ); + }); + + + describe('uninstantiated or falsy', function() { + it('should not break if `$rootElement` was never instantiated', function() { + // Just an empty test to verify that `angular-mocks` doesn't break, + // when trying to clean up `$rootElement`, if `$rootElement` was never injected in the test + // (and thus never instantiated/created) - // If we don't clean up `prevOriginalRootElement`-related data now, `testabilityPatch` will - // complain about a memory leak, because it doesn't clean up after the original - // `$rootElement` - // This is a false alarm, because `angular-mocks` would have cleaned up in a subsequent - // `afterEach` block - prevOriginalRootElement.removeData(); + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); }); - }); - it('should clean up `$rootElement` (both original and decorated) after each test', function() { - // One call is made by `testabilityPatch`'s `dealoc()` - // We want to verify the subsequent call, made by `angular-mocks` - expect(prevCleanDataSpy.callCount).toBe(2); + it('should not break if the decorated `$rootElement` is falsy (e.g. `null`)', function() { + module({$rootElement: null}); - var cleanUpNodes = prevCleanDataSpy.calls[1].args[0]; - expect(cleanUpNodes.length).toBe(2); - expect(cleanUpNodes[0]).toBe(prevOriginalRootElement[0]); - expect(cleanUpNodes[1]).toBe(prevRootElement[0]); + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); + }); }); }); - describe('uninstantiated or falsy `$rootElement`', function() { - it('should not break if `$rootElement` was never instantiated', function() { - // Just an empty test to verify that `angular-mocks` doesn't break, - // when trying to clean up `$rootElement`, if `$rootElement` was never injected in the test - // (and thus never instantiated/created) + describe('`$rootScope`', function() { + describe('undecorated', function() { + var prevRootScope; + var prevDestroySpy; - // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places - inject(function() {}); + + it('should set up spies for the next test to verify that `$rootScope` was cleaned up', + inject(function($rootScope) { + prevRootScope = $rootScope; + prevDestroySpy = spyOn($rootScope, '$destroy').andCallThrough(); + }) + ); + + + it('should clean up `$rootScope` after each test', inject(function($rootScope) { + expect($rootScope).not.toBe(prevRootScope); + expect(prevDestroySpy).toHaveBeenCalledOnce(); + expect(prevRootScope.$$destroyed).toBe(true); + })); }); - it('should not break if the decorated `$rootElement` is falsy (e.g. `null`)', function() { - module(function($provide) { - $provide.value('$rootElement', null); + describe('falsy or without `$destroy()` method', function() { + it('should not break if `$rootScope` is falsy (e.g. `null`)', function() { + // Just an empty test to verify that `angular-mocks` doesn't break, + // when trying to clean up a mocked `$rootScope` set to `null` + + module({$rootScope: null}); + + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); }); - // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places - inject(function() {}); + + it('should not break if `$rootScope.$destroy` is not a function', function() { + // Just an empty test to verify that `angular-mocks` doesn't break, + // when trying to clean up a mocked `$rootScope` without a `$destroy()` method + + module({$rootScope: {}}); + + // Ensure the `$injector` is created - if there is no `$injector`, no clean-up takes places + inject(function() {}); + }); }); }); }); From 18f055eea5a9432bc2fa268e5e0ea63ccc824682 Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Wed, 24 Feb 2016 14:26:10 +0100 Subject: [PATCH 293/354] docs($http): add a note about modifying data in transformRequest Closes #12468 --- src/ng/http.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ng/http.js b/src/ng/http.js index fb5f51f1a9bc..c1489398562d 100644 --- a/src/ng/http.js +++ b/src/ng/http.js @@ -550,6 +550,15 @@ function $HttpProvider() { * the transformed value (`function(data, headersGetter, status)`) or an array of such transformation functions, * which allows you to `push` or `unshift` a new transformation function into the transformation chain. * + *
      + * **Note:** Angular does not make a copy of the `data` parameter before it is passed into the `transformRequest` pipeline. + * That means changes to the properties of `data` are not local to the transform function (since Javascript passes objects by reference). + * For example, when calling `$http.get(url, $scope.myObject)`, modifications to the object's properties in a transformRequest + * function will be reflected on the scope and in any templates where the object is data-bound. + * To prevent his, transform functions should have no side-effects. + * If you need to modify properties, it is recommended to make a copy of the data, or create new object to return. + *
      + * * ### Default Transformations * * The `$httpProvider` provider and `$http` service expose `defaults.transformRequest` and From 88322c1af8f1f5a2501a7fd6abbbcfa951225041 Mon Sep 17 00:00:00 2001 From: Georgios Kalpakas Date: Fri, 19 Feb 2016 21:13:52 +0200 Subject: [PATCH 294/354] fix(ngRoute): allow `ngView` to be included in an asynchronously loaded template During it's linking phase, `ngView` relies on the info provided in `$route.current` for instantiating the initial view. `$route.current` is set in the callback of a listener to `$locationChangeSuccess`, which is registered during the instantiation of the `$route` service. Thus, it is crucial that the `$route` service is instantiated before the initial `$locationChangeSuccess` is fired. Since `ngView` declares `$route` as a dependency, the service is instantiated in time if `ngView` is present during the initial load of the page. Yet, in cases where `ngView` is included in a template that is loaded asynchronously (e.g. in another directive's template), the directive factory might not be called soon enough for `$route` to be instantiated before the initial `$locationChangeSuccess` event is fired. This commit fixes it, by always instantiating `$route` up front, during the initialization phase. Fixes #1213 Fixes #6812 Closes #14088 --- src/ngRoute/route.js | 6 +++++- test/ngRoute/directive/ngViewSpec.js | 31 ++++++++++++++++++++++++++++ test/ngRoute/routeSpec.js | 15 ++++++++++++++ 3 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/ngRoute/route.js b/src/ngRoute/route.js index 1db3c68dc447..df40be0dc1f7 100644 --- a/src/ngRoute/route.js +++ b/src/ngRoute/route.js @@ -17,7 +17,11 @@ */ /* global -ngRouteModule */ var ngRouteModule = angular.module('ngRoute', ['ng']). - provider('$route', $RouteProvider), + provider('$route', $RouteProvider). + // Ensure `$route` will be instantiated in time to capture the initial + // `$locationChangeSuccess` event. This is necessary in case `ngView` is + // included in an asynchronously loaded template. + run(['$route', angular.noop]), $routeMinErr = angular.$$minErr('ngRoute'); /** diff --git a/test/ngRoute/directive/ngViewSpec.js b/test/ngRoute/directive/ngViewSpec.js index 39ab1a934fea..5f2333bd2a17 100644 --- a/test/ngRoute/directive/ngViewSpec.js +++ b/test/ngRoute/directive/ngViewSpec.js @@ -986,3 +986,34 @@ describe('ngView animations', function() { )); }); }); + +describe('ngView in async template', function() { + beforeEach(module('ngRoute')); + beforeEach(module(function($compileProvider, $provide, $routeProvider) { + $compileProvider.directive('asyncView', function() { + return {templateUrl: 'async-view.html'}; + }); + + $provide.decorator('$templateRequest', function($timeout) { + return function() { + return $timeout(angular.identity, 500, false, ''); + }; + }); + + $routeProvider.when('/', {template: 'Hello, world !'}); + })); + + + it('should work correctly upon initial page load', + // Injecting `$location` here is necessary, so that it gets instantiated early + inject(function($compile, $location, $rootScope, $timeout) { + var elem = $compile('')($rootScope); + $rootScope.$digest(); + $timeout.flush(500); + + expect(elem.text()).toBe('Hello, world !'); + + dealoc(elem); + }) + ); +}); diff --git a/test/ngRoute/routeSpec.js b/test/ngRoute/routeSpec.js index 889489a0d63d..4c6f6c1541a7 100644 --- a/test/ngRoute/routeSpec.js +++ b/test/ngRoute/routeSpec.js @@ -23,6 +23,21 @@ describe('$route', function() { dealoc(element); }); + it('should be loaded upon initial load (even if `ngView` is loaded async)', function() { + module(function($routeProvider) { + $routeProvider.when('/', {template: 'Hello, world !'}); + }); + + inject(function($location, $rootScope) { + $location.path('/'); + $rootScope.$digest(); + }); + + inject(function($route) { + expect($route.current).toBeDefined(); + }); + }); + it('should allow cancellation via $locationChangeStart via $routeChangeStart', function() { module(function($routeProvider) { $routeProvider.when('/Edit', { From 711aba77272f63bacdef6cd8dcab9a781a83585a Mon Sep 17 00:00:00 2001 From: mohamed amr Date: Sat, 27 Feb 2016 20:23:38 +0200 Subject: [PATCH 295/354] test(ngAria): remove incorrect closing `div` tag after `input` element Closes #14146 Closes #14147 --- test/ngAria/ariaSpec.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/ngAria/ariaSpec.js b/test/ngAria/ariaSpec.js index 73b015f710c3..b85448ad3343 100644 --- a/test/ngAria/ariaSpec.js +++ b/test/ngAria/ariaSpec.js @@ -248,7 +248,7 @@ describe('$aria', function() { }); it('should not add a role to a native checkbox', function() { - compileElement('
      '); + compileElement(''); expect(element.attr('role')).toBe(undefined); }); @@ -258,7 +258,7 @@ describe('$aria', function() { }); it('should not add a role to a native radio button', function() { - compileElement(''); + compileElement(''); expect(element.attr('role')).toBe(undefined); }); @@ -268,7 +268,7 @@ describe('$aria', function() { }); it('should not add a role to a native range input', function() { - compileElement(''); + compileElement(''); expect(element.attr('role')).toBe(undefined); }); }); From bb01b8bf894fdcfaa5226388648eaa3337850b8e Mon Sep 17 00:00:00 2001 From: lordg Date: Sat, 27 Feb 2016 18:30:07 +0200 Subject: [PATCH 296/354] docs(guide/Filters): add title for consistency Closes #14143 --- docs/content/guide/filter.ngdoc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/content/guide/filter.ngdoc b/docs/content/guide/filter.ngdoc index d05f8ae1dcf5..bb1c49408abe 100644 --- a/docs/content/guide/filter.ngdoc +++ b/docs/content/guide/filter.ngdoc @@ -3,6 +3,8 @@ @sortOrder 280 @description +# Filters + A filter formats the value of an expression for display to the user. They can be used in view templates, controllers or services and it is easy to define your own filter. From f5295ea448e6e722340d4028b53cbbdf57a1a7ea Mon Sep 17 00:00:00 2001 From: Martin Staffa Date: Sun, 28 Feb 2016 15:06:11 +0100 Subject: [PATCH 297/354] docs(guide/interpolation): make some minor improvements, add info - highlight that interpolation inside expressions is bad practice - add info about type attr in buttons in IE --- docs/content/guide/interpolation.ngdoc | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/content/guide/interpolation.ngdoc b/docs/content/guide/interpolation.ngdoc index f991cfa74fba..d13335d4a271 100644 --- a/docs/content/guide/interpolation.ngdoc +++ b/docs/content/guide/interpolation.ngdoc @@ -98,16 +98,20 @@ For example, to bind to `viewBox`, we can write: ``` -The following attributes are also known to cause problems when used with normal bindings: +Other attributes may also not work as expected when they contain interpolation markup, and +can be used with `ngAttr` instead. The following is a list of known problematic attributes: -- **size** in `