From 3ac6a1f81074fd0cf20b38e782ba405ae172dbc0 Mon Sep 17 00:00:00 2001 From: InverseBot Date: Fri, 15 Apr 2016 01:44:33 -0400 Subject: [PATCH] (js/css) Update generated files --- .../js/vendor/angular-material.js | 138 ++++++++++++++---- .../js/vendor/angular-material.min.js | 12 +- UI/WebServerResources/js/vendor/lodash.js | 36 +++-- UI/WebServerResources/js/vendor/lodash.min.js | 10 +- 4 files changed, 137 insertions(+), 59 deletions(-) diff --git a/UI/WebServerResources/js/vendor/angular-material.js b/UI/WebServerResources/js/vendor/angular-material.js index 2cbd3339d..8d06d254c 100644 --- a/UI/WebServerResources/js/vendor/angular-material.js +++ b/UI/WebServerResources/js/vendor/angular-material.js @@ -2,7 +2,7 @@ * Angular Material Design * https://github.com/angular/material * @license MIT - * v1.1.0-rc3-master-30e6657 + * v1.1.0-rc3-master-fbf17db */ (function( window, angular, undefined ){ "use strict"; @@ -7051,7 +7051,7 @@ angular.module('material.components.chips', [ * or one that should be observed and dynamically interpolated. */ var STATIC_COLOR_EXPRESSION = /^{((\s|,)*?["'a-zA-Z-]+?\s*?:\s*?('|")[a-zA-Z0-9-.]*('|"))+\s*}$/; - var COLOR_PALETTES = undefined; + var colorPalettes = undefined; /** * @ngdoc module @@ -7086,7 +7086,7 @@ angular.module('material.components.chips', [ * */ function MdColorsService($mdTheming, $mdColorPalette, $mdUtil, $parse) { - COLOR_PALETTES = COLOR_PALETTES || Object.keys($mdColorPalette); + colorPalettes = colorPalettes || Object.keys($mdColorPalette); // Publish service instance return { @@ -7189,12 +7189,12 @@ angular.module('material.components.chips', [ // If the next section is one of the palettes we assume it's a two word palette // Two word palette can be also written in camelCase, forming camelCase to dash-case - var isTwoWord = parts.length > 1 && COLOR_PALETTES.indexOf(parts[1]) !== -1; + var isTwoWord = parts.length > 1 && colorPalettes.indexOf(parts[1]) !== -1; var palette = parts[0].replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase(); if (isTwoWord) palette = parts[0] + '-' + parts.splice(1, 1); - if (COLOR_PALETTES.indexOf(palette) === -1) { + if (colorPalettes.indexOf(palette) === -1) { // If the palette is not in the palette list it's one of primary/accent/warn/background var scheme = $mdTheming.THEMES[theme].colors[palette]; if (!scheme) { @@ -11179,15 +11179,17 @@ MdDividerDirective.$inject = ["$mdTheming"]; * * * - * - * - * - * + * + * + * + * + * * - * - * - * - * + * + * + * + * + * * * * @@ -11319,6 +11321,7 @@ MdDividerDirective.$inject = ["$mdTheming"]; } } })(); + })(); (function(){ "use strict"; @@ -14013,6 +14016,7 @@ angular.module('material.components.select', [ .directive('mdSelectMenu', SelectMenuDirective) .directive('mdOption', OptionDirective) .directive('mdOptgroup', OptgroupDirective) + .directive('mdSelectHeader', SelectHeaderDirective) .provider('$mdSelect', SelectProvider); /** @@ -14059,6 +14063,27 @@ angular.module('material.components.select', [ * * * + * With a select-header + * + * When a developer needs to put more than just a text label in the + * md-select-menu, they should use the md-select-header. + * The user can put custom HTML inside of the header and style it to their liking. + * One common use case of this would be a sticky search bar. + * + * When using the md-select-header the labels that would previously be added to the + * OptGroupDirective are ignored. + * + * + * + * + * + * Neighborhoods - + * + * {{ opt }} + * + * + * + * * ## Selects and object equality * When using a `md-select` to pick from a list of objects, it is important to realize how javascript handles * equality. Consider the following example: @@ -14202,7 +14227,11 @@ function SelectDirective($mdSelect, $mdUtil, $mdTheming, $mdAria, $compile, $par }; if (containerCtrl.input) { - throw new Error(" can only have *one* child ,