Skip to content

Commit

Permalink
Update JS third-party libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
vbatoufflet committed Apr 1, 2018
1 parent f4c4eb1 commit a0a8e70
Show file tree
Hide file tree
Showing 361 changed files with 39,649 additions and 37,273 deletions.
22 changes: 11 additions & 11 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,27 @@
"homepage": "https://facette.io/",
"license": "BSD",
"dependencies": {
"angular": "1.6.7",
"angular-bootstrap-colorpicker": "3.0.31",
"angular": "1.6.9",
"angular-bootstrap-colorpicker": "3.0.32",
"angular-bootstrap-datetimepicker": "1.1.4",
"angular-date-time-input": "1.2.1",
"angular-hotkeys": "chieffancypants/angular-hotkeys#1.7.0",
"angular-inview": "2.2.0",
"angular-paging": "2.2.2",
"angular-resource": "1.6.7",
"angular-route": "1.6.7",
"angular-sanitize": "1.6.7",
"angular-tooltips": "tooltips-angular#1.0.4",
"angular-translate": "2.16.0",
"angular-translate-interpolation-messageformat": "2.16.0",
"angular-translate-loader-static-files": "2.16.0",
"angular-resource": "1.6.9",
"angular-route": "1.6.9",
"angular-sanitize": "1.6.9",
"angular-tooltips": "tooltips-angular#1.0.5",
"angular-translate": "2.17.0",
"angular-translate-interpolation-messageformat": "2.17.0",
"angular-translate-loader-static-files": "2.17.0",
"angular-ui-select": "0.19.8",
"angular-ui-tree": "2.22.6",
"angular_page_visibility": "angular-page-visibility#0.0.4",
"d3": "4.12.0",
"font-awesome": "4.7.0",
"jquery": "3.2.1",
"moment": "2.19.3",
"jquery": "3.3.1",
"moment": "2.22.0",
"ng-dialog": "1.4.0",
"ng-sortable": "1.3.8",
"roboto-googlefont": "*"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-bootstrap-colorpicker",
"version": "3.0.31",
"version": "3.0.32",
"main": [
"js/bootstrap-colorpicker-module.js",
"css/colorpicker.css"
Expand All @@ -13,13 +13,13 @@
"tests"
],
"homepage": "https://github.com/buberdds/angular-bootstrap-colorpicker",
"_release": "3.0.31",
"_release": "3.0.32",
"_resolution": {
"type": "version",
"tag": "v3.0.31",
"commit": "bc58297ad5675d4afa721e228bcba9267abab0a0"
"tag": "v3.0.32",
"commit": "7db192ab485f19a7cefad4985f3faf8572270b13"
},
"_source": "https://github.com/buberdds/angular-bootstrap-colorpicker.git",
"_target": "3.0.31",
"_target": "3.0.32",
"_originalSource": "angular-bootstrap-colorpicker"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-bootstrap-colorpicker",
"version": "3.0.30",
"version": "3.0.32",
"main": [
"js/bootstrap-colorpicker-module.js",
"css/colorpicker.css"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,10 +299,12 @@ angular.module('colorpicker.module', [])
sliderHue = colorpickerTemplate.find('colorpicker-hue'),
sliderSaturation = colorpickerTemplate.find('colorpicker-saturation'),
colorpickerPreview = colorpickerTemplate.find('colorpicker-preview'),
pickerColorPointers = colorpickerTemplate.find('i');
pickerColorPointers = colorpickerTemplate.find('i'),
componentWidthWithToolbars = parseInt(componentSize) + 29 + (thisFormat === 'rgba' ? 15 : 0),
componentHeightWithToolbars = parseInt(componentSize) + 55;

$compile(colorpickerTemplate)($scope);
colorpickerTemplate.css('min-width', parseInt(componentSize) + 29 + 'px');
colorpickerTemplate.css('min-width', componentWidthWithToolbars + 'px');
sliderSaturation.css({
'width' : componentSizePx,
'height' : componentSizePx
Expand Down Expand Up @@ -468,7 +470,8 @@ angular.module('colorpicker.module', [])
function getColorpickerTemplatePosition() {
var
positionValue,
positionOffset = Helper.getOffset(elem[0]);
positionOffset = Helper.getOffset(elem[0]),
additionalSpaceBetweenElements = 2;

if(angular.isDefined(attrs.colorpickerParent)) {
positionOffset.left = 0;
Expand All @@ -477,23 +480,23 @@ angular.module('colorpicker.module', [])

if (position === 'top') {
positionValue = {
'top': positionOffset.top - 147,
'top': positionOffset.top - componentHeightWithToolbars - additionalSpaceBetweenElements,
'left': positionOffset.left
};
} else if (position === 'right') {
positionValue = {
'top': positionOffset.top,
'left': positionOffset.left + 126
'left': positionOffset.left + elem[0].offsetWidth + additionalSpaceBetweenElements
};
} else if (position === 'bottom') {
positionValue = {
'top': positionOffset.top + elem[0].offsetHeight + 2,
'top': positionOffset.top + elem[0].offsetHeight + additionalSpaceBetweenElements,
'left': positionOffset.left
};
} else if (position === 'left') {
positionValue = {
'top': positionOffset.top,
'left': positionOffset.left - 150
'left': positionOffset.left - componentWidthWithToolbars - additionalSpaceBetweenElements
};
}
return {
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-bootstrap-colorpicker",
"version": "3.0.30",
"version": "3.0.32",
"description": "Native AngularJS colorpicker directive",
"main": "js/bootstrap-colorpicker-module.js",
"directories": {
Expand Down
12 changes: 6 additions & 6 deletions vendor/bower_components/angular-resource/.bower.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "angular-resource",
"version": "1.6.7",
"version": "1.6.9",
"license": "MIT",
"main": "./angular-resource.js",
"ignore": [],
"dependencies": {
"angular": "1.6.7"
"angular": "1.6.9"
},
"homepage": "https://github.com/angular/bower-angular-resource",
"_release": "1.6.7",
"_release": "1.6.9",
"_resolution": {
"type": "version",
"tag": "v1.6.7",
"commit": "0c706fe974aa8065cb696a14143bada761046b06"
"tag": "v1.6.9",
"commit": "534f78d1eaaad1efcbbebc7966620219d3351b0e"
},
"_source": "https://github.com/angular/bower-angular-resource.git",
"_target": "1.6.7",
"_target": "1.6.9",
"_originalSource": "angular-resource"
}
8 changes: 4 additions & 4 deletions vendor/bower_components/angular-resource/angular-resource.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license AngularJS v1.6.7
* (c) 2010-2017 Google, Inc. http://angularjs.org
* @license AngularJS v1.6.9
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
Expand Down Expand Up @@ -290,7 +290,7 @@ function shallowClearAndCopy(src, dst) {
*
* - `toJSON`: It returns a simple object without any of the extra properties added as part of
* the Resource API. This object can be serialized through {@link angular.toJson} safely
* without attaching Angular-specific fields. Notice that `JSON.stringify` (and
* without attaching AngularJS-specific fields. Notice that `JSON.stringify` (and
* `angular.toJson`) automatically use this method when serializing a Resource instance
* (see [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify#toJSON%28%29_behavior)).
*
Expand Down Expand Up @@ -441,7 +441,7 @@ function shallowClearAndCopy(src, dst) {
*
*/
angular.module('ngResource', ['ng']).
info({ angularVersion: '1.6.7' }).
info({ angularVersion: '1.6.9' }).
provider('$resource', function ResourceProvider() {
var PROTOCOL_AND_IPV6_REGEX = /^https?:\/\/\[[^\]]*][^/]*/;

Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/bower_components/angular-resource/bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "angular-resource",
"version": "1.6.7",
"version": "1.6.9",
"license": "MIT",
"main": "./angular-resource.js",
"ignore": [],
"dependencies": {
"angular": "1.6.7"
"angular": "1.6.9"
}
}
2 changes: 1 addition & 1 deletion vendor/bower_components/angular-resource/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-resource",
"version": "1.6.7",
"version": "1.6.9",
"description": "AngularJS module for interacting with RESTful server-side data sources",
"main": "index.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions vendor/bower_components/angular-route/.bower.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "angular-route",
"version": "1.6.7",
"version": "1.6.9",
"license": "MIT",
"main": "./angular-route.js",
"ignore": [],
"dependencies": {
"angular": "1.6.7"
"angular": "1.6.9"
},
"homepage": "https://github.com/angular/bower-angular-route",
"_release": "1.6.7",
"_release": "1.6.9",
"_resolution": {
"type": "version",
"tag": "v1.6.7",
"commit": "3d186e058b76fa65613d6539820d4360ad1f393b"
"tag": "v1.6.9",
"commit": "93b5dc381eeccf1e3c74dffb9bf8d4df45c95819"
},
"_source": "https://github.com/angular/bower-angular-route.git",
"_target": "1.6.7",
"_target": "1.6.9",
"_originalSource": "angular-route"
}
6 changes: 3 additions & 3 deletions vendor/bower_components/angular-route/angular-route.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license AngularJS v1.6.7
* (c) 2010-2017 Google, Inc. http://angularjs.org
* @license AngularJS v1.6.9
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
Expand Down Expand Up @@ -55,7 +55,7 @@ var noop;
/* global -ngRouteModule */
var ngRouteModule = angular.
module('ngRoute', []).
info({ angularVersion: '1.6.7' }).
info({ angularVersion: '1.6.9' }).
provider('$route', $RouteProvider).
// Ensure `$route` will be instantiated in time to capture the initial `$locationChangeSuccess`
// event (unless explicitly disabled). This is necessary in case `ngView` is included in an
Expand Down
6 changes: 3 additions & 3 deletions vendor/bower_components/angular-route/angular-route.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions vendor/bower_components/angular-route/bower.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "angular-route",
"version": "1.6.7",
"version": "1.6.9",
"license": "MIT",
"main": "./angular-route.js",
"ignore": [],
"dependencies": {
"angular": "1.6.7"
"angular": "1.6.9"
}
}
2 changes: 1 addition & 1 deletion vendor/bower_components/angular-route/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-route",
"version": "1.6.7",
"version": "1.6.9",
"description": "AngularJS router module",
"main": "index.js",
"scripts": {
Expand Down
12 changes: 6 additions & 6 deletions vendor/bower_components/angular-sanitize/.bower.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"name": "angular-sanitize",
"version": "1.6.7",
"version": "1.6.9",
"license": "MIT",
"main": "./angular-sanitize.js",
"ignore": [],
"dependencies": {
"angular": "1.6.7"
"angular": "1.6.9"
},
"homepage": "https://github.com/angular/bower-angular-sanitize",
"_release": "1.6.7",
"_release": "1.6.9",
"_resolution": {
"type": "version",
"tag": "v1.6.7",
"commit": "33f83f6234686d411269c9ce7b292ad51f0b1be1"
"tag": "v1.6.9",
"commit": "ddd35b767b340de4233b2c7a52b89f0ae793a1d5"
},
"_source": "https://github.com/angular/bower-angular-sanitize.git",
"_target": "1.6.7",
"_target": "1.6.9",
"_originalSource": "angular-sanitize"
}
8 changes: 4 additions & 4 deletions vendor/bower_components/angular-sanitize/angular-sanitize.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* @license AngularJS v1.6.7
* (c) 2010-2017 Google, Inc. http://angularjs.org
* @license AngularJS v1.6.9
* (c) 2010-2018 Google, Inc. http://angularjs.org
* License: MIT
*/
(function(window, angular) {'use strict';
Expand Down Expand Up @@ -274,7 +274,7 @@ function $SanitizeProvider() {
optionalEndTagElements);

//Attributes that have href and hence need to be sanitized
var uriAttrs = toMap('background,cite,href,longdesc,src,xlink:href');
var uriAttrs = toMap('background,cite,href,longdesc,src,xlink:href,xml:base');

var htmlAttrs = toMap('abbr,align,alt,axis,bgcolor,border,cellpadding,cellspacing,class,clear,' +
'color,cols,colspan,compact,coords,dir,face,headers,height,hreflang,hspace,' +
Expand Down Expand Up @@ -599,7 +599,7 @@ function sanitizeText(chars) {
// define ngSanitize module and register $sanitize service
angular.module('ngSanitize', [])
.provider('$sanitize', $SanitizeProvider)
.info({ angularVersion: '1.6.7' });
.info({ angularVersion: '1.6.9' });

/**
* @ngdoc filter
Expand Down
Loading

0 comments on commit a0a8e70

Please sign in to comment.