mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-03-03 14:16:23 +00:00
chore(js/css): update generated files
This commit is contained in:
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -2,7 +2,7 @@
|
||||
* AngularJS Material Design
|
||||
* https://github.com/angular/material
|
||||
* @license MIT
|
||||
* v1.2.3
|
||||
* v1.2.4
|
||||
*/
|
||||
(function( window, angular, undefined ){
|
||||
"use strict";
|
||||
@@ -27513,8 +27513,7 @@ angular
|
||||
|
||||
var MD_PANEL_Z_INDEX = 80;
|
||||
var MD_PANEL_HIDDEN = '_md-panel-hidden';
|
||||
var FOCUS_TRAP_TEMPLATE = angular.element(
|
||||
'<div class="_md-panel-focus-trap" tabindex="0"></div>');
|
||||
var FOCUS_TRAP_TEMPLATE;
|
||||
|
||||
var _presets = {};
|
||||
|
||||
@@ -28751,6 +28750,12 @@ MdPanelRef.prototype._configureTrapFocus = function() {
|
||||
var element = this.panelEl;
|
||||
// Set up elements before and after the panel to capture focus and
|
||||
// redirect back into the panel.
|
||||
if (!FOCUS_TRAP_TEMPLATE) {
|
||||
var template = document.createElement('div');
|
||||
template.className = '_md-panel-focus-trap';
|
||||
template.tabIndex = 0;
|
||||
FOCUS_TRAP_TEMPLATE = angular.element(template);
|
||||
}
|
||||
this._topFocusTrap = FOCUS_TRAP_TEMPLATE.clone()[0];
|
||||
this._bottomFocusTrap = FOCUS_TRAP_TEMPLATE.clone()[0];
|
||||
|
||||
@@ -31188,8 +31193,7 @@ SelectProvider.$inject = ["$$interimElementProvider"];
|
||||
OptionController.$inject = ["$element"];
|
||||
var SELECT_EDGE_MARGIN = 8;
|
||||
var selectNextId = 0;
|
||||
var CHECKBOX_SELECTION_INDICATOR =
|
||||
angular.element('<div class="md-container"><div class="md-icon"></div></div>');
|
||||
var CHECKBOX_SELECTION_INDICATOR;
|
||||
|
||||
angular.module('material.components.select', [
|
||||
'material.core',
|
||||
@@ -32447,6 +32451,13 @@ function OptionDirective($mdButtonInkRipple, $mdUtil, $mdTheming) {
|
||||
|
||||
if (selectMenuCtrl.isMultiple) {
|
||||
element.addClass('md-checkbox-enabled');
|
||||
if (!CHECKBOX_SELECTION_INDICATOR) {
|
||||
var indicator = document.createElement('div');
|
||||
indicator.className = 'md-container';
|
||||
indicator.appendChild(document.createElement('div'));
|
||||
indicator.firstChild.className = 'md-icon';
|
||||
CHECKBOX_SELECTION_INDICATOR = angular.element(indicator);
|
||||
}
|
||||
element.prepend(CHECKBOX_SELECTION_INDICATOR.clone());
|
||||
}
|
||||
|
||||
@@ -39652,4 +39663,4 @@ angular.module("material.core").constant("$MD_THEME_CSS", "md-autocomplete.md-TH
|
||||
})();
|
||||
|
||||
|
||||
})(window, window.angular);;window.ngMaterial={version:{full: "1.2.3"}};
|
||||
})(window, window.angular);;window.ngMaterial={version:{full: "1.2.4"}};
|
||||
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user