2018-01-23 15:38:38 +03:00
( function ( global , factory ) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory ( require ( 'bootstrap/js/src/alert' ) , require ( 'bootstrap/js/src/button' ) , require ( 'bootstrap/js/src/carousel' ) , require ( 'bootstrap/js/src/collapse' ) , require ( 'bootstrap/js/src/modal' ) , require ( 'bootstrap/js/src/popover' ) , require ( 'bootstrap/js/src/scrollspy' ) , require ( 'bootstrap/js/src/tab' ) , require ( 'bootstrap/js/src/tooltip' ) , require ( 'bootstrap/js/src/util' ) ) :
typeof define === 'function' && define . amd ? define ( [ 'bootstrap/js/src/alert' , 'bootstrap/js/src/button' , 'bootstrap/js/src/carousel' , 'bootstrap/js/src/collapse' , 'bootstrap/js/src/modal' , 'bootstrap/js/src/popover' , 'bootstrap/js/src/scrollspy' , 'bootstrap/js/src/tab' , 'bootstrap/js/src/tooltip' , 'bootstrap/js/src/util' ] , factory ) :
( factory ( null , null , null , null , null , null , null , null , null , global . Util ) ) ;
} ( this , ( function ( alert , button , carousel , collapse , modal , popover , scrollspy , tab , tooltip , Util ) { 'use strict' ;
Util = Util && Util . hasOwnProperty ( 'default' ) ? Util [ 'default' ] : Util ;
function _defineProperties ( target , props ) {
for ( var i = 0 ; i < props . length ; i ++ ) {
var descriptor = props [ i ] ;
descriptor . enumerable = descriptor . enumerable || false ;
descriptor . configurable = true ;
if ( "value" in descriptor ) descriptor . writable = true ;
Object . defineProperty ( target , descriptor . key , descriptor ) ;
}
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function _createClass ( Constructor , protoProps , staticProps ) {
if ( protoProps ) _defineProperties ( Constructor . prototype , protoProps ) ;
if ( staticProps ) _defineProperties ( Constructor , staticProps ) ;
return Constructor ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function _inheritsLoose ( subClass , superClass ) {
subClass . prototype = Object . create ( superClass . prototype ) ;
subClass . prototype . constructor = subClass ;
subClass . _ _proto _ _ = superClass ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var Util$1 = function ( ) {
2017-12-17 22:35:02 +03:00
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Private TransitionEnd Helpers
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var transitionEnd = false ;
var _transitionEndSelector = "" ;
var TransitionEndEvent = {
WebkitTransition : "webkitTransitionEnd" ,
MozTransition : "transitionend" ,
OTransition : "oTransitionEnd otransitionend" ,
transition : "transitionend"
} ;
function transitionEndTest ( ) {
if ( window . QUnit ) {
return false ;
}
var el = document . createElement ( "bmd" ) ;
for ( var name in TransitionEndEvent ) {
if ( el . style [ name ] !== undefined ) {
return TransitionEndEvent [ name ] ; // { end: TransitionEndEvent[name] }
}
}
return false ;
}
function setTransitionEndSupport ( ) {
2018-01-23 15:38:38 +03:00
transitionEnd = transitionEndTest ( ) ; // generate a concatenated transition end event selector
2017-12-17 22:35:02 +03:00
for ( var name in TransitionEndEvent ) {
_transitionEndSelector += " " + TransitionEndEvent [ name ] ;
}
}
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Public Util Api
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Util$$1 = {
2017-12-17 22:35:02 +03:00
transitionEndSupported : function transitionEndSupported ( ) {
return transitionEnd ;
} ,
transitionEndSelector : function transitionEndSelector ( ) {
return _transitionEndSelector ;
} ,
isChar : function isChar ( event ) {
if ( typeof event . which === "undefined" ) {
return true ;
} else if ( typeof event . which === "number" && event . which > 0 ) {
return ! event . ctrlKey && ! event . metaKey && ! event . altKey && event . which !== 8 && // backspace
event . which !== 9 && // tab
event . which !== 13 && // enter
event . which !== 16 && // shift
event . which !== 17 && // ctrl
event . which !== 20 && // caps lock
event . which !== 27 // escape
;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return false ;
} ,
assert : function assert ( $element , invalidTest , message ) {
if ( invalidTest ) {
if ( ! $element === undefined ) {
$element . css ( "border" , "1px solid red" ) ;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
console . error ( message , $element ) ; // eslint-disable-line no-console
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
throw message ;
}
} ,
describe : function describe ( $element ) {
if ( $element === undefined ) {
return "undefined" ;
} else if ( $element . length === 0 ) {
return "(no matching elements)" ;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return $element [ 0 ] . outerHTML . split ( ">" ) [ 0 ] + ">" ;
}
} ;
setTransitionEndSupport ( ) ;
2018-01-23 15:38:38 +03:00
return Util$$1 ;
2017-12-17 22:35:02 +03:00
} ( jQuery ) ;
var Base = function ( $ ) {
var ClassName = {
BMD _FORM _GROUP : "bmd-form-group" ,
IS _FILLED : "is-filled" ,
IS _FOCUSED : "is-focused"
} ;
var Selector = {
BMD _FORM _GROUP : "." + ClassName . BMD _FORM _GROUP
} ;
var Default = { } ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Base =
/*#__PURE__*/
function ( ) {
2017-12-17 22:35:02 +03:00
/ * *
*
* @ param element
* @ param config
* @ param properties - anything that needs to be set as this [ key ] = value . Works around the need to call ` super ` before using ` this `
* /
2018-01-23 15:38:38 +03:00
function Base ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = { } ;
}
2017-12-17 22:35:02 +03:00
this . $element = $element ;
2018-01-23 15:38:38 +03:00
this . config = $ . extend ( true , { } , Default , config ) ; // set properties for use in the constructor initialization
2017-12-17 22:35:02 +03:00
for ( var key in properties ) {
this [ key ] = properties [ key ] ;
}
}
2018-01-23 15:38:38 +03:00
var _proto = Base . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( dataKey ) {
this . $element . data ( dataKey , null ) ;
this . $element = null ;
this . config = null ;
} ; // ------------------------------------------------------------------------
// protected
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addFormGroupFocus = function addFormGroupFocus ( ) {
if ( ! this . $element . prop ( "disabled" ) ) {
this . $bmdFormGroup . addClass ( ClassName . IS _FOCUSED ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . removeFormGroupFocus = function removeFormGroupFocus ( ) {
this . $bmdFormGroup . removeClass ( ClassName . IS _FOCUSED ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . removeIsFilled = function removeIsFilled ( ) {
this . $bmdFormGroup . removeClass ( ClassName . IS _FILLED ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addIsFilled = function addIsFilled ( ) {
this . $bmdFormGroup . addClass ( ClassName . IS _FILLED ) ;
} ; // Find bmd-form-group
_proto . findMdbFormGroup = function findMdbFormGroup ( raiseError ) {
if ( raiseError === void 0 ) {
raiseError = true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var mfg = this . $element . closest ( Selector . BMD _FORM _GROUP ) ;
if ( mfg . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . BMD _FORM _GROUP + " for " + Util$1 . describe ( this . $element ) ) ;
}
return mfg ;
} ; // ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
return Base ;
} ( ) ;
return Base ;
} ( jQuery ) ;
var BaseInput = function ( $ ) {
var ClassName = {
FORM _GROUP : "form-group" ,
BMD _FORM _GROUP : "bmd-form-group" ,
BMD _LABEL : "bmd-label" ,
BMD _LABEL _STATIC : "bmd-label-static" ,
BMD _LABEL _PLACEHOLDER : "bmd-label-placeholder" ,
BMD _LABEL _FLOATING : "bmd-label-floating" ,
HAS _DANGER : "has-danger" ,
IS _FILLED : "is-filled" ,
IS _FOCUSED : "is-focused" ,
INPUT _GROUP : "input-group"
} ;
var Selector = {
FORM _GROUP : "." + ClassName . FORM _GROUP ,
BMD _FORM _GROUP : "." + ClassName . BMD _FORM _GROUP ,
BMD _LABEL _WILDCARD : "label[class^='" + ClassName . BMD _LABEL + "'], label[class*=' " + ClassName . BMD _LABEL + "']" // match any label variant if specified
2018-01-23 15:38:38 +03:00
} ;
2017-12-17 22:35:02 +03:00
var Default = {
validate : false ,
formGroup : {
required : false
} ,
bmdFormGroup : {
template : "<span class='" + ClassName . BMD _FORM _GROUP + "'></span>" ,
2018-01-23 15:38:38 +03:00
create : true ,
// create a wrapper if form-group not found
2017-12-17 22:35:02 +03:00
required : true // not recommended to turn this off, only used for inline components
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
} ,
label : {
required : false ,
// Prioritized find order for resolving the label to be used as an bmd-label if not specified in the markup
// - a function(thisComponent); or
// - a string selector used like $bmdFormGroup.find(selector)
//
// Note this only runs if $bmdFormGroup.find(Selector.BMD_LABEL_WILDCARD) fails to find a label (as authored in the markup)
//
selectors : [ ".form-control-label" , // in the case of horizontal or inline forms, this will be marked
"> label" // usual case for text inputs, first child. Deeper would find toggle labels so don't do that.
] ,
className : ClassName . BMD _LABEL _STATIC
} ,
requiredClasses : [ ] ,
invalidComponentMatches : [ ] ,
convertInputSizeVariations : true
} ;
var FormControlSizeMarkers = {
"form-control-lg" : "bmd-form-group-lg" ,
"form-control-sm" : "bmd-form-group-sm"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var BaseInput =
/*#__PURE__*/
function ( _Base ) {
_inheritsLoose ( BaseInput , _Base ) ;
2017-12-17 22:35:02 +03:00
/ * *
*
* @ param element
* @ param config
* @ param properties - anything that needs to be set as this [ key ] = value . Works around the need to call ` super ` before using ` this `
* /
2018-01-23 15:38:38 +03:00
function BaseInput ( $element , config , properties ) {
var _this ;
if ( properties === void 0 ) {
properties = { } ;
}
_this = _Base . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ; // Enforce no overlap between components to prevent side effects
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this . _rejectInvalidComponentMatches ( ) ; // Enforce expected structure (if any)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this . rejectWithoutRequiredStructure ( ) ; // Enforce required classes for a consistent rendering
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this . _rejectWithoutRequiredClasses ( ) ; // Resolve the form-group first, it will be used for bmd-form-group if possible
2017-12-17 22:35:02 +03:00
// note: different components have different rules
2018-01-23 15:38:38 +03:00
_this . $formGroup = _this . findFormGroup ( _this . config . formGroup . required ) ; // Will add bmd-form-group to form-group or create an bmd-form-group
2017-12-17 22:35:02 +03:00
// Performance Note: for those forms that are really performance driven, create the markup with the .bmd-form-group to avoid
// rendering changes once added.
2018-01-23 15:38:38 +03:00
_this . $bmdFormGroup = _this . resolveMdbFormGroup ( ) ; // Resolve and mark the bmdLabel if necessary as defined by the config
_this . $bmdLabel = _this . resolveMdbLabel ( ) ; // Signal to the bmd-form-group that a form-control-* variation is being used
2017-12-17 22:35:02 +03:00
_this . resolveMdbFormGroupSizing ( ) ;
_this . addFocusListener ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
_this . addChangeListener ( ) ;
if ( _this . $element . val ( ) != "" ) {
_this . addIsFilled ( ) ;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = BaseInput . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( dataKey ) {
_Base . prototype . dispose . call ( this , dataKey ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $bmdFormGroup = null ;
this . $formGroup = null ;
} ; // ------------------------------------------------------------------------
// protected
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . rejectWithoutRequiredStructure = function rejectWithoutRequiredStructure ( ) { // implement
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addFocusListener = function addFocusListener ( ) {
var _this2 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $element . on ( "focus" , function ( ) {
_this2 . addFormGroupFocus ( ) ;
} ) . on ( "blur" , function ( ) {
_this2 . removeFormGroupFocus ( ) ;
} ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addChangeListener = function addChangeListener ( ) {
var _this3 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $element . on ( "keydown paste" , function ( event ) {
if ( Util$1 . isChar ( event ) ) {
_this3 . addIsFilled ( ) ;
}
} ) . on ( "keyup change" , function ( ) {
// make sure empty is added back when there is a programmatic value change.
// NOTE: programmatic changing of value using $.val() must trigger the change event i.e. $.val('x').trigger('change')
if ( _this3 . isEmpty ( ) ) {
_this3 . removeIsFilled ( ) ;
} else {
_this3 . addIsFilled ( ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
if ( _this3 . config . validate ) {
// Validation events do not bubble, so they must be attached directly to the text: http://jsfiddle.net/PEpRM/1/
// Further, even the bind method is being caught, but since we are already calling #checkValidity here, just alter
// the form-group on change.
//
// NOTE: I'm not sure we should be intervening regarding validation, this seems better as a README and snippet of code.
// BUT, I've left it here for backwards compatibility.
var isValid = typeof _this3 . $element [ 0 ] . checkValidity === "undefined" || _this3 . $element [ 0 ] . checkValidity ( ) ;
if ( isValid ) {
_this3 . removeHasDanger ( ) ;
} else {
_this3 . addHasDanger ( ) ;
}
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addHasDanger = function addHasDanger ( ) {
this . $bmdFormGroup . addClass ( ClassName . HAS _DANGER ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . removeHasDanger = function removeHasDanger ( ) {
this . $bmdFormGroup . removeClass ( ClassName . HAS _DANGER ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . isEmpty = function isEmpty ( ) {
return this . $element . val ( ) === null || this . $element . val ( ) === undefined || this . $element . val ( ) === "" ;
} ; // Will add bmd-form-group to form-group or create a bmd-form-group if necessary
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . resolveMdbFormGroup = function resolveMdbFormGroup ( ) {
var mfg = this . findMdbFormGroup ( false ) ;
if ( mfg === undefined || mfg . length === 0 ) {
if ( this . config . bmdFormGroup . create && ( this . $formGroup === undefined || this . $formGroup . length === 0 ) ) {
// If a form-group doesn't exist (not recommended), take a guess and wrap the element (assuming no label).
// note: it's possible to make this smarter, but I need to see valid cases before adding any complexity.
// this may be an input-group, wrap that instead
if ( this . outerElement ( ) . parent ( ) . hasClass ( ClassName . INPUT _GROUP ) ) {
this . outerElement ( ) . parent ( ) . wrap ( this . config . bmdFormGroup . template ) ;
2017-12-17 22:35:02 +03:00
} else {
2018-01-23 15:38:38 +03:00
this . outerElement ( ) . wrap ( this . config . bmdFormGroup . template ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} else {
// a form-group does exist, add our marker class to it
this . $formGroup . addClass ( ClassName . BMD _FORM _GROUP ) ; // OLD: may want to implement this after all, see how the styling turns out, but using an existing form-group is less manipulation of the dom and therefore preferable
// A form-group does exist, so add an bmd-form-group wrapping it's internal contents
//fg.wrapInner(this.config.bmdFormGroup.template)
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
mfg = this . findMdbFormGroup ( this . config . bmdFormGroup . required ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return mfg ;
} ; // Demarcation element (e.g. first child of a form-group)
// Subclasses such as file inputs may have different structures
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . outerElement = function outerElement ( ) {
return this . $element ;
} ; // Will add bmd-label to bmd-form-group if not already specified
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . resolveMdbLabel = function resolveMdbLabel ( ) {
var label = this . $bmdFormGroup . find ( Selector . BMD _LABEL _WILDCARD ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( label === undefined || label . length === 0 ) {
// we need to find it based on the configured selectors
label = this . findMdbLabel ( this . config . label . required ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( label === undefined || label . length === 0 ) { // no label found, and finder did not require one
} else {
// a candidate label was found, add the configured default class name
label . addClass ( this . config . label . className ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
return label ;
} ; // Find bmd-label variant based on the config selectors
_proto . findMdbLabel = function findMdbLabel ( raiseError ) {
if ( raiseError === void 0 ) {
raiseError = true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var label = null ; // use the specified selector order
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
for ( var _iterator = this . config . label . selectors , _isArray = Array . isArray ( _iterator ) , _i = 0 , _iterator = _isArray ? _iterator : _iterator [ Symbol . iterator ] ( ) ; ; ) {
var _ref ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( _isArray ) {
if ( _i >= _iterator . length ) break ;
_ref = _iterator [ _i ++ ] ;
} else {
_i = _iterator . next ( ) ;
if ( _i . done ) break ;
_ref = _i . value ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _selector = _ref ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( $ . isFunction ( _selector ) ) {
label = _selector ( this ) ;
} else {
label = this . $bmdFormGroup . find ( _selector ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
if ( label !== undefined && label . length > 0 ) {
break ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
if ( label . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . BMD _LABEL _WILDCARD + " within form-group for " + Util$1 . describe ( this . $element ) ) ;
}
return label ;
} ; // Find bmd-form-group
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . findFormGroup = function findFormGroup ( raiseError ) {
if ( raiseError === void 0 ) {
raiseError = true ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var fg = this . $element . closest ( Selector . FORM _GROUP ) ;
if ( fg . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . FORM _GROUP + " for " + Util$1 . describe ( this . $element ) ) ;
}
return fg ;
} ; // Due to the interconnected nature of labels/inputs/help-blocks, signal the bmd-form-group-* size variation based on
// a found form-control-* size
_proto . resolveMdbFormGroupSizing = function resolveMdbFormGroupSizing ( ) {
if ( ! this . config . convertInputSizeVariations ) {
return ;
} // Modification - Change text-sm/lg to form-group-sm/lg instead (preferred standard and simpler css/less variants)
for ( var inputSize in FormControlSizeMarkers ) {
if ( this . $element . hasClass ( inputSize ) ) {
//this.$element.removeClass(inputSize)
this . $bmdFormGroup . addClass ( FormControlSizeMarkers [ inputSize ] ) ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} ; // ------------------------------------------------------------------------
// private
_proto . _rejectInvalidComponentMatches = function _rejectInvalidComponentMatches ( ) {
for ( var _iterator2 = this . config . invalidComponentMatches , _isArray2 = Array . isArray ( _iterator2 ) , _i2 = 0 , _iterator2 = _isArray2 ? _iterator2 : _iterator2 [ Symbol . iterator ] ( ) ; ; ) {
var _ref2 ;
if ( _isArray2 ) {
if ( _i2 >= _iterator2 . length ) break ;
_ref2 = _iterator2 [ _i2 ++ ] ;
} else {
_i2 = _iterator2 . next ( ) ;
if ( _i2 . done ) break ;
_ref2 = _i2 . value ;
}
var _otherComponent = _ref2 ;
_otherComponent . rejectMatch ( this . constructor . name , this . $element ) ;
}
} ;
_proto . _rejectWithoutRequiredClasses = function _rejectWithoutRequiredClasses ( ) {
for ( var _iterator3 = this . config . requiredClasses , _isArray3 = Array . isArray ( _iterator3 ) , _i3 = 0 , _iterator3 = _isArray3 ? _iterator3 : _iterator3 [ Symbol . iterator ] ( ) ; ; ) {
var _ref3 ;
if ( _isArray3 ) {
if ( _i3 >= _iterator3 . length ) break ;
_ref3 = _iterator3 [ _i3 ++ ] ;
} else {
_i3 = _iterator3 . next ( ) ;
if ( _i3 . done ) break ;
_ref3 = _i3 . value ;
}
var _requiredClass = _ref3 ;
if ( _requiredClass . indexOf ( "||" ) !== - 1 ) {
var oneOf = _requiredClass . split ( "||" ) ;
for ( var _iterator4 = oneOf , _isArray4 = Array . isArray ( _iterator4 ) , _i4 = 0 , _iterator4 = _isArray4 ? _iterator4 : _iterator4 [ Symbol . iterator ] ( ) ; ; ) {
var _ref4 ;
if ( _isArray4 ) {
if ( _i4 >= _iterator4 . length ) break ;
_ref4 = _iterator4 [ _i4 ++ ] ;
} else {
_i4 = _iterator4 . next ( ) ;
if ( _i4 . done ) break ;
_ref4 = _i4 . value ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _requiredClass3 = _ref4 ;
if ( this . $element . hasClass ( _requiredClass3 ) ) {
break ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} else if ( this . $element . hasClass ( _requiredClass ) ) {
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} ; // ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
return BaseInput ;
} ( Base ) ;
return BaseInput ;
} ( jQuery ) ;
var BaseSelection = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var Default = {
label : {
2018-01-23 15:38:38 +03:00
required : false // Prioritized find order for resolving the label to be used as an bmd-label if not specified in the markup
2017-12-17 22:35:02 +03:00
// - a function(thisComponent); or
// - a string selector used like $bmdFormGroup.find(selector)
//
// Note this only runs if $bmdFormGroup.find(Selector.BMD_LABEL_WILDCARD) fails to find a label (as authored in the markup)
//
//selectors: [
// `.form-control-label`, // in the case of horizontal or inline forms, this will be marked
// `> label` // usual case for text inputs
//]
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
}
} ;
var Selector = {
LABEL : "label"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var BaseSelection =
/*#__PURE__*/
function ( _BaseInput ) {
_inheritsLoose ( BaseSelection , _BaseInput ) ;
function BaseSelection ( $element , config , properties ) {
var _this ;
// properties = {inputType: checkbox, outerClass: checkbox-inline}
// '.checkbox|switch|radio > label > input[type=checkbox|radio]'
// '.${this.outerClass} > label > input[type=${this.inputType}]'
_this = _BaseInput . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ;
_this . decorateMarkup ( ) ;
return _this ;
} // ------------------------------------------------------------------------
// protected
var _proto = BaseSelection . prototype ;
_proto . decorateMarkup = function decorateMarkup ( ) {
var $decorator = $ ( this . config . template ) ;
this . $element . after ( $decorator ) ; // initialize ripples after decorator has been inserted into DOM
if ( this . config . ripples !== false ) {
$decorator . bmdRipples ( ) ;
}
} ; // Demarcation element (e.g. first child of a form-group)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . outerElement = function outerElement ( ) {
// .checkbox|switch|radio > label > input[type=checkbox|radio]
// label.checkbox-inline > input[type=checkbox|radio]
// .${this.outerClass} > label > input[type=${this.inputType}]
return this . $element . parent ( ) . closest ( "." + this . outerClass ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . rejectWithoutRequiredStructure = function rejectWithoutRequiredStructure ( ) {
2017-12-17 22:35:02 +03:00
// '.checkbox|switch|radio > label > input[type=checkbox|radio]'
// '.${this.outerClass} > label > input[type=${this.inputType}]'
2018-01-23 15:38:38 +03:00
Util$1 . assert ( this . $element , ! this . $element . parent ( ) . prop ( "tagName" ) === "label" , this . constructor . name + "'s " + Util$1 . describe ( this . $element ) + " parent element should be <label>." ) ;
Util$1 . assert ( this . $element , ! this . outerElement ( ) . hasClass ( this . outerClass ) , this . constructor . name + "'s " + Util$1 . describe ( this . $element ) + " outer element should have class " + this . outerClass + "." ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addFocusListener = function addFocusListener ( ) {
var _this2 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
// checkboxes didn't appear to bubble to the document, so we'll bind these directly
this . $element . closest ( Selector . LABEL ) . hover ( function ( ) {
_this2 . addFormGroupFocus ( ) ;
} , function ( ) {
_this2 . removeFormGroupFocus ( ) ;
} ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . addChangeListener = function addChangeListener ( ) {
var _this3 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $element . change ( function ( ) {
_this3 . $element . blur ( ) ;
} ) ;
} ; // ------------------------------------------------------------------------
// private
2017-12-17 22:35:02 +03:00
return BaseSelection ;
} ( BaseInput ) ;
return BaseSelection ;
} ( jQuery ) ;
//import File from './file'
//import Radio from './radio'
//import Textarea from './textarea'
//import Select from './select'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Checkbox = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "checkbox" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
template : "<span class='checkbox-decorator'><span class='check'></span></span>"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Checkbox =
/*#__PURE__*/
function ( _BaseSelection ) {
_inheritsLoose ( Checkbox , _BaseSelection ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function Checkbox ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = {
inputType : NAME ,
outerClass : NAME
} ;
}
return _BaseSelection . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [File, Radio, Text, Textarea, Select]},
Default , config ) , properties ) || this ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _proto = Checkbox . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( dataKey ) {
if ( dataKey === void 0 ) {
dataKey = DATA _KEY ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
_BaseSelection . prototype . dispose . call ( this , dataKey ) ;
} ;
Checkbox . matches = function matches ( $element ) {
// '.checkbox > label > input[type=checkbox]'
if ( $element . attr ( "type" ) === "checkbox" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
Checkbox . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for type='checkbox'." ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Checkbox . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! data ) {
data = new Checkbox ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Checkbox ;
} ( BaseSelection ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Checkbox . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Checkbox ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Checkbox . _jQueryInterface ;
} ;
return Checkbox ;
} ( jQuery ) ;
var CheckboxInline = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "checkboxInline" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
bmdFormGroup : {
2018-01-23 15:38:38 +03:00
create : false ,
// no bmd-form-group creation if form-group not present. It messes with the layout.
2017-12-17 22:35:02 +03:00
required : false
}
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var CheckboxInline =
/*#__PURE__*/
function ( _Checkbox ) {
_inheritsLoose ( CheckboxInline , _Checkbox ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function CheckboxInline ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = {
inputType : "checkbox" ,
outerClass : "checkbox-inline"
} ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return _Checkbox . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var _proto = CheckboxInline . prototype ;
_proto . dispose = function dispose ( ) {
_Checkbox . prototype . dispose . call ( this , DATA _KEY ) ;
} ; //static matches($element) {
// // '.checkbox-inline > input[type=checkbox]'
// if ($element.attr('type') === 'checkbox') {
// return true
// }
// return false
//}
//
//static rejectMatch(component, $element) {
// Util.assert(this.$element, this.matches($element), `${component} component element ${Util.describe($element)} is invalid for type='checkbox'.`)
//}
// ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
CheckboxInline . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! data ) {
data = new CheckboxInline ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return CheckboxInline ;
} ( Checkbox ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = CheckboxInline . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = CheckboxInline ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return CheckboxInline . _jQueryInterface ;
} ;
return CheckboxInline ;
} ( jQuery ) ;
var CollapseInline = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "collapseInline" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Selector = {
ANY _INPUT : "input, select, textarea"
} ;
var ClassName = {
IN : "in" ,
COLLAPSE : "collapse" ,
COLLAPSING : "collapsing" ,
COLLAPSED : "collapsed" ,
WIDTH : "width"
} ;
var Default = { } ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var CollapseInline =
/*#__PURE__*/
function ( _Base ) {
_inheritsLoose ( CollapseInline , _Base ) ;
2017-12-17 22:35:02 +03:00
// $element is expected to be the trigger
// i.e. <button class="btn bmd-btn-icon" for="search" data-toggle="collapse" data-target="#search-field" aria-expanded="false" aria-controls="search-field">
function CollapseInline ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _Base . call ( this , $element , $ . extend ( true , { } , Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
_this . $bmdFormGroup = _this . findMdbFormGroup ( true ) ;
var collapseSelector = $element . data ( "target" ) ;
_this . $collapse = $ ( collapseSelector ) ;
2018-01-23 15:38:38 +03:00
Util$1 . assert ( $element , _this . $collapse . length === 0 , "Cannot find collapse target for " + Util$1 . describe ( $element ) ) ;
Util$1 . assert ( _this . $collapse , ! _this . $collapse . hasClass ( ClassName . COLLAPSE ) , Util$1 . describe ( _this . $collapse ) + " is expected to have the '" + ClassName . COLLAPSE + "' class. It is being targeted by " + Util$1 . describe ( $element ) ) ; // find the first input for focusing
2017-12-17 22:35:02 +03:00
var $inputs = _this . $bmdFormGroup . find ( Selector . ANY _INPUT ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
if ( $inputs . length > 0 ) {
_this . $input = $inputs . first ( ) ;
2018-01-23 15:38:38 +03:00
} // automatically add the marker class to collapse width instead of height - nice convenience because it is easily forgotten
2017-12-17 22:35:02 +03:00
if ( ! _this . $collapse . hasClass ( ClassName . WIDTH ) ) {
_this . $collapse . addClass ( ClassName . WIDTH ) ;
}
if ( _this . $input ) {
// add a listener to set focus
_this . $collapse . on ( "shown.bs.collapse" , function ( ) {
_this . $input . focus ( ) ;
2018-01-23 15:38:38 +03:00
} ) ; // add a listener to collapse field
2017-12-17 22:35:02 +03:00
_this . $input . blur ( function ( ) {
_this . $collapse . collapse ( "hide" ) ;
} ) ;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = CollapseInline . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
_Base . prototype . dispose . call ( this , DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $bmdFormGroup = null ;
this . $collapse = null ;
this . $input = null ;
} ; // ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
CollapseInline . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new CollapseInline ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return CollapseInline ;
} ( Base ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = CollapseInline . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = CollapseInline ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return CollapseInline . _jQueryInterface ;
} ;
return CollapseInline ;
} ( jQuery ) ;
//import Radio from './radio'
//import Switch from './switch'
//import Text from './text'
//import Textarea from './textarea'
//import Select from './select'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var File = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "file" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = { } ;
var ClassName = {
FILE : NAME ,
IS _FILE : "is-file"
} ;
var Selector = {
FILENAMES : "input.form-control[readonly]"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var File =
/*#__PURE__*/
function ( _BaseInput ) {
_inheritsLoose ( File , _BaseInput ) ;
2017-12-17 22:35:02 +03:00
function File ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _BaseInput . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [Checkbox, Radio, Text, Textarea, Select, Switch]},
Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
_this . $bmdFormGroup . addClass ( ClassName . IS _FILE ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = File . prototype ;
_proto . dispose = function dispose ( ) {
_BaseInput . prototype . dispose . call ( this , DATA _KEY ) ;
} ;
File . matches = function matches ( $element ) {
if ( $element . attr ( "type" ) === "file" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
File . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for type='file'." ) ;
} ; // ------------------------------------------------------------------------
// protected
// Demarcation element (e.g. first child of a form-group)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . outerElement = function outerElement ( ) {
// label.file > input[type=file]
return this . $element . parent ( ) . closest ( "." + ClassName . FILE ) ;
} ;
_proto . rejectWithoutRequiredStructure = function rejectWithoutRequiredStructure ( ) {
// label.file > input[type=file]
Util$1 . assert ( this . $element , ! this . outerElement ( ) . prop ( "tagName" ) === "label" , this . constructor . name + "'s " + Util$1 . describe ( this . $element ) + " parent element " + Util$1 . describe ( this . outerElement ( ) ) + " should be <label>." ) ;
Util$1 . assert ( this . $element , ! this . outerElement ( ) . hasClass ( ClassName . FILE ) , this . constructor . name + "'s " + Util$1 . describe ( this . $element ) + " parent element " + Util$1 . describe ( this . outerElement ( ) ) + " should have class ." + ClassName . FILE + "." ) ;
} ;
_proto . addFocusListener = function addFocusListener ( ) {
var _this2 = this ;
this . $bmdFormGroup . on ( "focus" , function ( ) {
_this2 . addFormGroupFocus ( ) ;
} ) . on ( "blur" , function ( ) {
_this2 . removeFormGroupFocus ( ) ;
} ) ;
} ;
_proto . addChangeListener = function addChangeListener ( ) {
var _this3 = this ;
// set the fileinput readonly field with the name of the file
this . $element . on ( "change" , function ( ) {
var value = "" ;
$ . each ( _this3 . $element . files , function ( i , file ) {
value += file . name + " , " ;
2017-12-17 22:35:02 +03:00
} ) ;
2018-01-23 15:38:38 +03:00
value = value . substring ( 0 , value . length - 2 ) ;
if ( value ) {
_this3 . addIsFilled ( ) ;
} else {
_this3 . removeIsFilled ( ) ;
}
_this3 . $bmdFormGroup . find ( Selector . FILENAMES ) . val ( value ) ;
} ) ;
} ; // ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
File . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! data ) {
data = new File ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return File ;
} ( BaseInput ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = File . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = File ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return File . _jQueryInterface ;
} ;
return File ;
} ( jQuery ) ;
//import File from './file'
//import Checkbox from './checkbox'
//import Switch from './switch'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Radio = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "radio" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
template : "<span class='bmd-radio'></span>"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Radio =
/*#__PURE__*/
function ( _BaseSelection ) {
_inheritsLoose ( Radio , _BaseSelection ) ;
function Radio ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = {
inputType : NAME ,
outerClass : NAME
} ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
return _BaseSelection . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [Checkbox, File, Switch, Text]},
Default , config ) , properties ) || this ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _proto = Radio . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( dataKey ) {
if ( dataKey === void 0 ) {
dataKey = DATA _KEY ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
_BaseSelection . prototype . dispose . call ( this , dataKey ) ;
} ;
Radio . matches = function matches ( $element ) {
// '.radio > label > input[type=radio]'
if ( $element . attr ( "type" ) === "radio" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Radio . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for type='radio'." ) ;
} ; // ------------------------------------------------------------------------
// protected
//decorateMarkup() {
// this.$element.after(this.config.template)
//}
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Radio . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Radio ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Radio ;
} ( BaseSelection ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Radio . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Radio ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Radio . _jQueryInterface ;
} ;
return Radio ;
} ( jQuery ) ;
var RadioInline = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "radioInline" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
bmdFormGroup : {
2018-01-23 15:38:38 +03:00
create : false ,
// no bmd-form-group creation if form-group not present. It messes with the layout.
2017-12-17 22:35:02 +03:00
required : false
}
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var RadioInline =
/*#__PURE__*/
function ( _Radio ) {
_inheritsLoose ( RadioInline , _Radio ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function RadioInline ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = {
inputType : "radio" ,
outerClass : "radio-inline"
} ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return _Radio . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var _proto = RadioInline . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
_Radio . prototype . dispose . call ( this , DATA _KEY ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
RadioInline . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new RadioInline ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return RadioInline ;
} ( Radio ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = RadioInline . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = RadioInline ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return RadioInline . _jQueryInterface ;
} ;
return RadioInline ;
} ( jQuery ) ;
var BaseFormControl = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var Default = {
requiredClasses : [ "form-control" ]
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var BaseFormControl =
/*#__PURE__*/
function ( _BaseInput ) {
_inheritsLoose ( BaseFormControl , _BaseInput ) ;
2017-12-17 22:35:02 +03:00
function BaseFormControl ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _BaseInput . call ( this , $element , $ . extend ( true , Default , config ) ) || this ; // Initially mark as empty
2017-12-17 22:35:02 +03:00
if ( _this . isEmpty ( ) ) {
_this . removeIsFilled ( ) ;
}
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
return BaseFormControl ;
} ( BaseInput ) ;
return BaseFormControl ;
} ( jQuery ) ;
//import File from './file'
//import Radio from './radio'
//import Switch from './switch'
//import Text from './text'
//import Textarea from './textarea'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Select = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "select" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
requiredClasses : [ "form-control||custom-select" ]
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Select =
/*#__PURE__*/
function ( _BaseFormControl ) {
_inheritsLoose ( Select , _BaseFormControl ) ;
2017-12-17 22:35:02 +03:00
function Select ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _BaseFormControl . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [Checkbox, File, Radio, Switch, Text, Textarea]},
Default , config ) ) || this ; // floating labels will cover the options, so trigger them to be above (if used)
2017-12-17 22:35:02 +03:00
_this . addIsFilled ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = Select . prototype ;
_proto . dispose = function dispose ( ) {
_BaseFormControl . prototype . dispose . call ( this , DATA _KEY ) ;
} ;
Select . matches = function matches ( $element ) {
if ( $element . prop ( "tagName" ) === "select" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
Select . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for <select>." ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Select . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Select ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Select ;
} ( BaseFormControl ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Select . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Select ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Select . _jQueryInterface ;
} ;
return Select ;
} ( jQuery ) ;
var Switch = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "switch" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = {
template : "<span class='bmd-switch-track'></span>"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Switch =
/*#__PURE__*/
function ( _Checkbox ) {
_inheritsLoose ( Switch , _Checkbox ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function Switch ( $element , config , properties ) {
if ( properties === void 0 ) {
properties = {
inputType : "checkbox" ,
outerClass : "switch"
} ;
}
return _Checkbox . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ; // selector: '.switch > label > input[type=checkbox]'
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _proto = Switch . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
_Checkbox . prototype . dispose . call ( this , DATA _KEY ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Switch . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! data ) {
data = new Switch ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Switch ;
} ( Checkbox ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Switch . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Switch ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Switch . _jQueryInterface ;
} ;
return Switch ;
} ( jQuery ) ;
//import File from './file'
//import Radio from './radio'
//import Switch from './switch'
//import Textarea from './textarea'
//import Select from './select'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Text = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "text" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = { } ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Text =
/*#__PURE__*/
function ( _BaseFormControl ) {
_inheritsLoose ( Text , _BaseFormControl ) ;
2017-12-17 22:35:02 +03:00
function Text ( $element , config ) {
2018-01-23 15:38:38 +03:00
return _BaseFormControl . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [Checkbox, File, Radio, Switch, Select, Textarea]},
Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _proto = Text . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( dataKey ) {
if ( dataKey === void 0 ) {
dataKey = DATA _KEY ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
_BaseFormControl . prototype . dispose . call ( this , dataKey ) ;
} ;
Text . matches = function matches ( $element ) {
if ( $element . attr ( "type" ) === "text" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
Text . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for type='text'." ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Text . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Text ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Text ;
} ( BaseFormControl ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Text . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Text ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Text . _jQueryInterface ;
} ;
return Text ;
} ( jQuery ) ;
//import File from './file'
//import Radio from './radio'
//import Switch from './switch'
//import Text from './text'
//import Select from './select'
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Textarea = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "textarea" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = { } ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Textarea =
/*#__PURE__*/
function ( _BaseFormControl ) {
_inheritsLoose ( Textarea , _BaseFormControl ) ;
2017-12-17 22:35:02 +03:00
function Textarea ( $element , config ) {
2018-01-23 15:38:38 +03:00
return _BaseFormControl . call ( this , $element , $ . extend ( true , //{invalidComponentMatches: [Checkbox, File, Radio, Text, Select, Switch]},
Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var _proto = Textarea . prototype ;
_proto . dispose = function dispose ( ) {
_BaseFormControl . prototype . dispose . call ( this , DATA _KEY ) ;
} ;
Textarea . matches = function matches ( $element ) {
if ( $element . prop ( "tagName" ) === "textarea" ) {
return true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return false ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Textarea . rejectMatch = function rejectMatch ( component , $element ) {
Util$1 . assert ( this . $element , this . matches ( $element ) , component + " component element " + Util$1 . describe ( $element ) + " is invalid for <textarea>." ) ;
} ; // ------------------------------------------------------------------------
// protected
// ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Textarea . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Textarea ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Textarea ;
} ( BaseFormControl ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Textarea . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Textarea ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Textarea . _jQueryInterface ;
} ;
return Textarea ;
} ( jQuery ) ;
/* global Popper */
/ * *
* This is a copy of the Bootstrap ' s original dropdown . js , with the only addition
* of two new classes : 'showing' and 'hiding' , used to handle animaitons .
* /
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
2018-01-23 15:38:38 +03:00
* Bootstrap ( v4 . 1.0 ) : dropdown . js
2017-12-17 22:35:02 +03:00
* Licensed under MIT ( https : //github.com/twbs/bootstrap/blob/master/LICENSE)
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var Dropdown = function ( $ ) {
/ * *
* Check for Popper dependency
* Popper - https : //popper.js.org
* /
if ( typeof Popper === 'undefined' ) {
throw new Error ( 'Bootstrap dropdown require Popper.js (https://popper.js.org)' ) ;
}
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var NAME = 'dropdown' ;
2018-01-23 15:38:38 +03:00
var VERSION = '4.1.0' ;
2017-12-17 22:35:02 +03:00
var DATA _KEY = 'bs.dropdown' ;
2018-01-23 15:38:38 +03:00
var EVENT _KEY = "." + DATA _KEY ;
2017-12-17 22:35:02 +03:00
var DATA _API _KEY = '.data-api' ;
var JQUERY _NO _CONFLICT = $ . fn [ NAME ] ;
var ESCAPE _KEYCODE = 27 ; // KeyboardEvent.which value for Escape (Esc) key
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var SPACE _KEYCODE = 32 ; // KeyboardEvent.which value for space key
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var TAB _KEYCODE = 9 ; // KeyboardEvent.which value for tab key
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var ARROW _UP _KEYCODE = 38 ; // KeyboardEvent.which value for up arrow key
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var ARROW _DOWN _KEYCODE = 40 ; // KeyboardEvent.which value for down arrow key
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var RIGHT _MOUSE _BUTTON _WHICH = 3 ; // MouseEvent.which value for the right button (assuming a right-handed mouse)
2018-01-23 15:38:38 +03:00
var REGEXP _KEYDOWN = new RegExp ( ARROW _UP _KEYCODE + "|" + ARROW _DOWN _KEYCODE + "|" + ESCAPE _KEYCODE ) ;
2017-12-17 22:35:02 +03:00
var Event = {
2018-01-23 15:38:38 +03:00
HIDE : "hide" + EVENT _KEY ,
HIDDEN : "hidden" + EVENT _KEY ,
SHOW : "show" + EVENT _KEY ,
SHOWN : "shown" + EVENT _KEY ,
CLICK : "click" + EVENT _KEY ,
CLICK _DATA _API : "click" + EVENT _KEY + DATA _API _KEY ,
KEYDOWN _DATA _API : "keydown" + EVENT _KEY + DATA _API _KEY ,
KEYUP _DATA _API : "keyup" + EVENT _KEY + DATA _API _KEY ,
2017-12-17 22:35:02 +03:00
TRANSITION _END : 'transitionend webkitTransitionEnd oTransitionEnd animationend webkitAnimationEnd oAnimationEnd'
} ;
var ClassName = {
DISABLED : 'disabled' ,
SHOW : 'show' ,
SHOWING : 'showing' ,
HIDING : 'hiding' ,
DROPUP : 'dropup' ,
MENURIGHT : 'dropdown-menu-right' ,
MENULEFT : 'dropdown-menu-left'
} ;
var Selector = {
DATA _TOGGLE : '[data-toggle="dropdown"]' ,
FORM _CHILD : '.dropdown form' ,
MENU : '.dropdown-menu' ,
NAVBAR _NAV : '.navbar-nav' ,
VISIBLE _ITEMS : '.dropdown-menu .dropdown-item:not(.disabled)'
} ;
var AttachmentMap = {
TOP : 'top-start' ,
TOPEND : 'top-end' ,
BOTTOM : 'bottom-start' ,
BOTTOMEND : 'bottom-end'
} ;
var Default = {
placement : AttachmentMap . BOTTOM ,
offset : 0 ,
flip : true
} ;
var DefaultType = {
placement : 'string' ,
offset : '(number|string)' ,
flip : 'boolean'
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
} ;
2018-01-23 15:38:38 +03:00
var Dropdown =
/*#__PURE__*/
function ( ) {
function Dropdown ( element , config ) {
2017-12-17 22:35:02 +03:00
this . _element = element ;
this . _popper = null ;
this . _config = this . _getConfig ( config ) ;
this . _menu = this . _getMenuElement ( ) ;
this . _inNavbar = this . _detectNavbar ( ) ;
this . _addEventListeners ( ) ;
2018-01-23 15:38:38 +03:00
} // getters
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var _proto = Dropdown . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
// public
_proto . toggle = function toggle ( ) {
var _this = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( this . _element . disabled || $ ( this . _element ) . hasClass ( ClassName . DISABLED ) ) {
return ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var parent = Dropdown . _getParentFromElement ( this . _element ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var isActive = $ ( this . _menu ) . hasClass ( ClassName . SHOW ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Dropdown . _clearMenus ( ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( isActive ) {
return ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var relatedTarget = {
relatedTarget : this . _element
} ;
var showEvent = $ . Event ( Event . SHOW , relatedTarget ) ;
$ ( parent ) . trigger ( showEvent ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( showEvent . isDefaultPrevented ( ) ) {
return ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var element = this . _element ; // for dropup with alignment we use the parent as popper container
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( $ ( parent ) . hasClass ( ClassName . DROPUP ) ) {
if ( $ ( this . _menu ) . hasClass ( ClassName . MENULEFT ) || $ ( this . _menu ) . hasClass ( ClassName . MENURIGHT ) ) {
element = parent ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . _popper = new Popper ( element , this . _menu , this . _getPopperConfig ( ) ) ; // if this is a touch-enabled device we add extra
// empty mouseover listeners to the body's immediate children;
// only needed because of broken event delegation on iOS
// https://www.quirksmode.org/blog/archives/2014/02/mouse_event_bub.html
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( 'ontouchstart' in document . documentElement && ! $ ( parent ) . closest ( Selector . NAVBAR _NAV ) . length ) {
$ ( 'body' ) . children ( ) . on ( 'mouseover' , null , $ . noop ) ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . _element . focus ( ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . _element . setAttribute ( 'aria-expanded' , true ) ;
$ ( this . _menu ) . one ( Event . TRANSITION _END , function ( ) {
$ ( parent ) . trigger ( $ . Event ( Event . SHOWN , relatedTarget ) ) ;
$ ( _this . _menu ) . removeClass ( ClassName . SHOWING ) ;
} ) ;
$ ( this . _menu ) . addClass ( ClassName . SHOW + " " + ClassName . SHOWING ) ;
$ ( parent ) . addClass ( ClassName . SHOW ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
$ . removeData ( this . _element , DATA _KEY ) ;
$ ( this . _element ) . off ( EVENT _KEY ) ;
this . _element = null ;
this . _menu = null ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( this . _popper !== null ) {
this . _popper . destroy ( ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
this . _popper = null ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . update = function update ( ) {
this . _inNavbar = this . _detectNavbar ( ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( this . _popper !== null ) {
this . _popper . scheduleUpdate ( ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} ; // private
_proto . _addEventListeners = function _addEventListeners ( ) {
var _this2 = this ;
$ ( this . _element ) . on ( Event . CLICK , function ( event ) {
event . preventDefault ( ) ;
event . stopPropagation ( ) ;
_this2 . toggle ( ) ;
} ) ;
} ;
_proto . _getConfig = function _getConfig ( config ) {
var elementData = $ ( this . _element ) . data ( ) ;
if ( elementData . placement !== undefined ) {
elementData . placement = AttachmentMap [ elementData . placement . toUpperCase ( ) ] ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
config = $ . extend ( { } , this . constructor . Default , $ ( this . _element ) . data ( ) , config ) ;
Util . typeCheckConfig ( NAME , config , this . constructor . DefaultType ) ;
return config ;
} ;
_proto . _getMenuElement = function _getMenuElement ( ) {
if ( ! this . _menu ) {
var parent = Dropdown . _getParentFromElement ( this . _element ) ;
this . _menu = $ ( parent ) . find ( Selector . MENU ) [ 0 ] ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return this . _menu ;
} ;
_proto . _getPlacement = function _getPlacement ( ) {
var $parentDropdown = $ ( this . _element ) . parent ( ) ;
var placement = this . _config . placement ; // Handle dropup
if ( $parentDropdown . hasClass ( ClassName . DROPUP ) || this . _config . placement === AttachmentMap . TOP ) {
placement = AttachmentMap . TOP ;
if ( $ ( this . _menu ) . hasClass ( ClassName . MENURIGHT ) ) {
placement = AttachmentMap . TOPEND ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} else if ( $ ( this . _menu ) . hasClass ( ClassName . MENURIGHT ) ) {
placement = AttachmentMap . BOTTOMEND ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return placement ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _detectNavbar = function _detectNavbar ( ) {
return $ ( this . _element ) . closest ( '.navbar' ) . length > 0 ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _getPopperConfig = function _getPopperConfig ( ) {
var popperConfig = {
placement : this . _getPlacement ( ) ,
modifiers : {
offset : {
offset : this . _config . offset
} ,
flip : {
enabled : this . _config . flip
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} // Disable Popper.js for Dropdown in Navbar
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
} ;
if ( this . _inNavbar ) {
popperConfig . modifiers . applyStyle = {
enabled : ! this . _inNavbar
} ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return popperConfig ;
} ; // static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Dropdown . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var data = $ ( this ) . data ( DATA _KEY ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var _config = typeof config === 'object' ? config : null ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! data ) {
data = new Dropdown ( this , _config ) ;
$ ( this ) . data ( DATA _KEY , data ) ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( typeof config === 'string' ) {
if ( data [ config ] === undefined ) {
throw new Error ( "No method named \"" + config + "\"" ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
data [ config ] ( ) ;
}
} ) ;
} ;
Dropdown . _clearMenus = function _clearMenus ( event ) {
if ( event && ( event . which === RIGHT _MOUSE _BUTTON _WHICH || event . type === 'keyup' && event . which !== TAB _KEYCODE ) ) {
return ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var toggles = $ . makeArray ( $ ( Selector . DATA _TOGGLE ) ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var _loop = function _loop ( i ) {
var parent = Dropdown . _getParentFromElement ( toggles [ i ] ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var context = $ ( toggles [ i ] ) . data ( DATA _KEY ) ;
var relatedTarget = {
relatedTarget : toggles [ i ]
2017-12-17 22:35:02 +03:00
} ;
2018-01-23 15:38:38 +03:00
if ( ! context ) {
return "continue" ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var dropdownMenu = context . _menu ;
if ( ! $ ( parent ) . hasClass ( ClassName . SHOW ) ) {
return "continue" ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
if ( event && ( event . type === 'click' && /input|textarea/i . test ( event . target . tagName ) || event . type === 'keyup' && event . which === TAB _KEYCODE ) && $ . contains ( parent , event . target ) ) {
return "continue" ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var hideEvent = $ . Event ( Event . HIDE , relatedTarget ) ;
$ ( parent ) . trigger ( hideEvent ) ;
if ( hideEvent . isDefaultPrevented ( ) ) {
return "continue" ;
} // if this is a touch-enabled device we remove the extra
// empty mouseover listeners we added for iOS support
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( 'ontouchstart' in document . documentElement ) {
$ ( 'body' ) . children ( ) . off ( 'mouseover' , null , $ . noop ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
toggles [ i ] . setAttribute ( 'aria-expanded' , 'false' ) ;
$ ( dropdownMenu ) . addClass ( ClassName . HIDING ) . removeClass ( ClassName . SHOW ) ;
$ ( parent ) . removeClass ( ClassName . SHOW ) ;
$ ( dropdownMenu ) . one ( Event . TRANSITION _END , function ( ) {
$ ( parent ) . trigger ( $ . Event ( Event . HIDDEN , relatedTarget ) ) ;
$ ( dropdownMenu ) . removeClass ( ClassName . HIDING ) ;
} ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
for ( var i = 0 ; i < toggles . length ; i ++ ) {
var _ret = _loop ( i ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( _ret === "continue" ) continue ;
}
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Dropdown . _getParentFromElement = function _getParentFromElement ( element ) {
var parent ;
var selector = Util . getSelectorFromElement ( element ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( selector ) {
parent = $ ( selector ) [ 0 ] ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
return parent || element . parentNode ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Dropdown . _dataApiKeydownHandler = function _dataApiKeydownHandler ( event ) {
if ( ! REGEXP _KEYDOWN . test ( event . which ) || /button/i . test ( event . target . tagName ) && event . which === SPACE _KEYCODE || /input|textarea/i . test ( event . target . tagName ) ) {
return ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
event . preventDefault ( ) ;
event . stopPropagation ( ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( this . disabled || $ ( this ) . hasClass ( ClassName . DISABLED ) ) {
return ;
}
var parent = Dropdown . _getParentFromElement ( this ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var isActive = $ ( parent ) . hasClass ( ClassName . SHOW ) ;
if ( ! isActive && ( event . which !== ESCAPE _KEYCODE || event . which !== SPACE _KEYCODE ) || isActive && ( event . which === ESCAPE _KEYCODE || event . which === SPACE _KEYCODE ) ) {
if ( event . which === ESCAPE _KEYCODE ) {
var toggle = $ ( parent ) . find ( Selector . DATA _TOGGLE ) [ 0 ] ;
$ ( toggle ) . trigger ( 'focus' ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
$ ( this ) . trigger ( 'click' ) ;
return ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var items = $ ( parent ) . find ( Selector . VISIBLE _ITEMS ) . get ( ) ;
if ( ! items . length ) {
return ;
}
var index = items . indexOf ( event . target ) ;
if ( event . which === ARROW _UP _KEYCODE && index > 0 ) {
// up
index -- ;
}
if ( event . which === ARROW _DOWN _KEYCODE && index < items . length - 1 ) {
// down
index ++ ;
}
if ( index < 0 ) {
index = 0 ;
}
items [ index ] . focus ( ) ;
} ;
_createClass ( Dropdown , null , [ {
key : "VERSION" ,
get : function get ( ) {
2017-12-17 22:35:02 +03:00
return VERSION ;
}
} , {
2018-01-23 15:38:38 +03:00
key : "Default" ,
get : function get ( ) {
2017-12-17 22:35:02 +03:00
return Default ;
}
} , {
2018-01-23 15:38:38 +03:00
key : "DefaultType" ,
get : function get ( ) {
2017-12-17 22:35:02 +03:00
return DefaultType ;
}
} ] ) ;
return Dropdown ;
} ( ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Data Api implementation
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
$ ( document ) . on ( Event . KEYDOWN _DATA _API , Selector . DATA _TOGGLE , Dropdown . _dataApiKeydownHandler ) . on ( Event . KEYDOWN _DATA _API , Selector . MENU , Dropdown . _dataApiKeydownHandler ) . on ( Event . CLICK _DATA _API + " " + Event . KEYUP _DATA _API , Dropdown . _clearMenus ) . on ( Event . CLICK _DATA _API , Selector . DATA _TOGGLE , function ( event ) {
2017-12-17 22:35:02 +03:00
event . preventDefault ( ) ;
event . stopPropagation ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
Dropdown . _jQueryInterface . call ( $ ( this ) , 'toggle' ) ;
} ) . on ( Event . CLICK _DATA _API , Selector . FORM _CHILD , function ( e ) {
e . stopPropagation ( ) ;
} ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ NAME ] = Dropdown . _jQueryInterface ;
$ . fn [ NAME ] . Constructor = Dropdown ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ NAME ] . noConflict = function ( ) {
$ . fn [ NAME ] = JQUERY _NO _CONFLICT ;
return Dropdown . _jQueryInterface ;
} ;
return Dropdown ;
} ( jQuery ) ;
var BaseLayout = function ( $ ) {
var ClassName = {
CANVAS : "bmd-layout-canvas" ,
CONTAINER : "bmd-layout-container" ,
BACKDROP : "bmd-layout-backdrop"
} ;
var Selector = {
CANVAS : "." + ClassName . CANVAS ,
CONTAINER : "." + ClassName . CONTAINER ,
BACKDROP : "." + ClassName . BACKDROP
} ;
var Default = {
canvas : {
create : true ,
required : true ,
template : "<div class=\"" + ClassName . CANVAS + "\"></div>"
} ,
backdrop : {
create : true ,
required : true ,
template : "<div class=\"" + ClassName . BACKDROP + "\"></div>"
}
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var BaseLayout =
/*#__PURE__*/
function ( _Base ) {
_inheritsLoose ( BaseLayout , _Base ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
function BaseLayout ( $element , config , properties ) {
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( properties === void 0 ) {
properties = { } ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _Base . call ( this , $element , $ . extend ( true , { } , Default , config ) , properties ) || this ;
2017-12-17 22:35:02 +03:00
_this . $container = _this . findContainer ( true ) ;
_this . $backdrop = _this . resolveBackdrop ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
_this . resolveCanvas ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = BaseLayout . prototype ;
_proto . dispose = function dispose ( dataKey ) {
_Base . prototype . dispose . call ( this , dataKey ) ;
this . $container = null ;
this . $backdrop = null ;
} ; // ------------------------------------------------------------------------
// protected
// Will wrap container in bmd-layout-canvas if necessary
_proto . resolveCanvas = function resolveCanvas ( ) {
var bd = this . findCanvas ( false ) ;
if ( bd === undefined || bd . length === 0 ) {
if ( this . config . canvas . create ) {
this . $container . wrap ( this . config . canvas . template ) ;
}
bd = this . findCanvas ( this . config . canvas . required ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return bd ;
} ; // Find closest bmd-layout-container based on the given context
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . findCanvas = function findCanvas ( raiseError , context ) {
if ( raiseError === void 0 ) {
raiseError = true ;
}
if ( context === void 0 ) {
context = this . $container ;
}
var canvas = context . closest ( Selector . CANVAS ) ;
if ( canvas . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . CANVAS + " for " + Util$1 . describe ( context ) ) ;
}
return canvas ;
} ; // Will add bmd-layout-backdrop to bmd-layout-container if necessary
_proto . resolveBackdrop = function resolveBackdrop ( ) {
var bd = this . findBackdrop ( false ) ;
if ( bd === undefined || bd . length === 0 ) {
if ( this . config . backdrop . create ) {
this . $container . append ( this . config . backdrop . template ) ;
}
bd = this . findBackdrop ( this . config . backdrop . required ) ;
}
return bd ;
} ; // Find closest bmd-layout-container based on the given context
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . findBackdrop = function findBackdrop ( raiseError , context ) {
if ( raiseError === void 0 ) {
raiseError = true ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
if ( context === void 0 ) {
context = this . $container ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var backdrop = context . find ( "> " + Selector . BACKDROP ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( backdrop . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . BACKDROP + " for " + Util$1 . describe ( context ) ) ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
return backdrop ;
} ; // Find closest bmd-layout-container based on the given context
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . findContainer = function findContainer ( raiseError , context ) {
if ( raiseError === void 0 ) {
raiseError = true ;
}
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( context === void 0 ) {
context = this . $element ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
var container = context . closest ( Selector . CONTAINER ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( container . length === 0 && raiseError ) {
$ . error ( "Failed to find " + Selector . CONTAINER + " for " + Util$1 . describe ( context ) ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return container ;
} ; // ------------------------------------------------------------------------
// private
// ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
return BaseLayout ;
} ( Base ) ;
return BaseLayout ;
} ( jQuery ) ;
var Drawer = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "drawer" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Keycodes = {
2018-01-23 15:38:38 +03:00
ESCAPE : 27 //ENTER: 13,
2017-12-17 22:35:02 +03:00
//SPACE: 32
2018-01-23 15:38:38 +03:00
} ;
2017-12-17 22:35:02 +03:00
var ClassName = {
IN : "in" ,
DRAWER _IN : "bmd-drawer-in" ,
DRAWER _OUT : "bmd-drawer-out" ,
DRAWER : "bmd-layout-drawer" ,
CONTAINER : "bmd-layout-container"
} ;
var Default = {
focusSelector : "a, button, input"
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Drawer =
/*#__PURE__*/
function ( _BaseLayout ) {
_inheritsLoose ( Drawer , _BaseLayout ) ;
2017-12-17 22:35:02 +03:00
// $element is expected to be the trigger
// i.e. <button class="btn bmd-btn-icon" for="search" data-toggle="drawer" data-target="#my-side-nav-drawer" aria-expanded="false" aria-controls="my-side-nav-drawer">
function Drawer ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _BaseLayout . call ( this , $element , $ . extend ( true , { } , Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
_this . $toggles = $ ( "[data-toggle=\"drawer\"][href=\"#" + _this . $element [ 0 ] . id + "\"], [data-toggle=\"drawer\"][data-target=\"#" + _this . $element [ 0 ] . id + "\"]" ) ;
2018-01-23 15:38:38 +03:00
_this . _addAria ( ) ; // click or escape on the backdrop closes the drawer
2017-12-17 22:35:02 +03:00
_this . $backdrop . keydown ( function ( ev ) {
if ( ev . which === Keycodes . ESCAPE ) {
_this . hide ( ) ;
}
} ) . click ( function ( ) {
_this . hide ( ) ;
2018-01-23 15:38:38 +03:00
} ) ; // escape on the drawer closes it
2017-12-17 22:35:02 +03:00
_this . $element . keydown ( function ( ev ) {
if ( ev . which === Keycodes . ESCAPE ) {
_this . hide ( ) ;
}
2018-01-23 15:38:38 +03:00
} ) ; // any toggle button clicks
2017-12-17 22:35:02 +03:00
_this . $toggles . click ( function ( ) {
_this . toggle ( ) ;
} ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = Drawer . prototype ;
_proto . dispose = function dispose ( ) {
_BaseLayout . prototype . dispose . call ( this , DATA _KEY ) ;
this . $toggles = null ;
} ;
_proto . toggle = function toggle ( ) {
if ( this . _isOpen ( ) ) {
this . hide ( ) ;
} else {
this . show ( ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} ;
_proto . show = function show ( ) {
if ( this . _isForcedClosed ( ) || this . _isOpen ( ) ) {
return ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
this . $toggles . attr ( "aria-expanded" , true ) ;
this . $element . attr ( "aria-expanded" , true ) ;
this . $element . attr ( "aria-hidden" , false ) ; // focus on the first focusable item
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var $focusOn = this . $element . find ( this . config . focusSelector ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( $focusOn . length > 0 ) {
$focusOn . first ( ) . focus ( ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
this . $container . addClass ( ClassName . DRAWER _IN ) ; // backdrop is responsively styled based on bmd-drawer-overlay, therefore style is none of our concern, simply add the marker class and let the scss determine if it should be displayed or not.
this . $backdrop . addClass ( ClassName . IN ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . hide = function hide ( ) {
if ( ! this . _isOpen ( ) ) {
return ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
this . $toggles . attr ( "aria-expanded" , false ) ;
this . $element . attr ( "aria-expanded" , false ) ;
this . $element . attr ( "aria-hidden" , true ) ;
this . $container . removeClass ( ClassName . DRAWER _IN ) ;
this . $backdrop . removeClass ( ClassName . IN ) ;
} ; // ------------------------------------------------------------------------
// private
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _isOpen = function _isOpen ( ) {
return this . $container . hasClass ( ClassName . DRAWER _IN ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _isForcedClosed = function _isForcedClosed ( ) {
return this . $container . hasClass ( ClassName . DRAWER _OUT ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _addAria = function _addAria ( ) {
var isOpen = this . _isOpen ( ) ;
this . $element . attr ( "aria-expanded" , isOpen ) ;
this . $element . attr ( "aria-hidden" , isOpen ) ;
if ( this . $toggles . length ) {
this . $toggles . attr ( "aria-expanded" , isOpen ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} ; // ------------------------------------------------------------------------
// static
Drawer . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Drawer ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Drawer ;
} ( BaseLayout ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Drawer . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Drawer ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Drawer . _jQueryInterface ;
} ;
return Drawer ;
} ( jQuery ) ;
var Ripples = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "ripples" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var ClassName = {
CONTAINER : "ripple-container" ,
DECORATOR : "ripple-decorator"
} ;
var Selector = {
CONTAINER : "." + ClassName . CONTAINER ,
DECORATOR : "." + ClassName . DECORATOR //,
2018-01-23 15:38:38 +03:00
} ;
2017-12-17 22:35:02 +03:00
var Default = {
container : {
template : "<div class='" + ClassName . CONTAINER + "'></div>"
} ,
decorator : {
template : "<div class='" + ClassName . DECORATOR + "'></div>"
} ,
trigger : {
start : "mousedown touchstart" ,
end : "mouseup mouseleave touchend"
} ,
touchUserAgentRegex : /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i ,
duration : 500
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Ripples =
/*#__PURE__*/
function ( ) {
2017-12-17 22:35:02 +03:00
function Ripples ( $element , config ) {
var _this = this ;
2018-01-23 15:38:38 +03:00
this . $element = $element ; // console.log(`Adding ripples to ${Util.describe(this.$element)}`) // eslint-disable-line no-console
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . config = $ . extend ( true , { } , Default , config ) ; // attach initial listener
2017-12-17 22:35:02 +03:00
this . $element . on ( this . config . trigger . start , function ( event ) {
_this . _onStartRipple ( event ) ;
} ) ;
}
2018-01-23 15:38:38 +03:00
var _proto = Ripples . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
this . $element . data ( DATA _KEY , null ) ;
this . $element = null ;
this . $container = null ;
this . $decorator = null ;
this . config = null ;
} ; // ------------------------------------------------------------------------
// private
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _onStartRipple = function _onStartRipple ( event ) {
var _this2 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
// Verify if the user is just touching on a device and return if so
if ( this . _isTouch ( ) && event . type === "mousedown" ) {
return ;
} // Find or create the ripple container element
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . _findOrCreateContainer ( ) ; // Get relY and relX positions of the container element
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var relY = this . _getRelY ( event ) ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var relX = this . _getRelX ( event ) ; // If relY and/or relX are false, return the event
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! relY && ! relX ) {
return ;
} // set the location and color each time (even if element is cached)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $decorator . css ( {
left : relX ,
top : relY ,
"background-color" : this . _getRipplesColor ( )
} ) ; // Make sure the ripple has the styles applied (ugly hack but it works)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . _forceStyleApplication ( ) ; // Turn on the ripple animation
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . rippleOn ( ) ; // Call the rippleEnd function when the transition 'on' ends
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
setTimeout ( function ( ) {
_this2 . rippleEnd ( ) ;
} , this . config . duration ) ; // Detect when the user leaves the element to cleanup if not already done?
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $element . on ( this . config . trigger . end , function ( ) {
if ( _this2 . $decorator ) {
// guard against race condition/mouse attack
_this2 . $decorator . data ( "mousedown" , "off" ) ;
if ( _this2 . $decorator . data ( "animating" ) === "off" ) {
_this2 . rippleOut ( ) ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} ) ;
} ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _findOrCreateContainer = function _findOrCreateContainer ( ) {
if ( ! this . $container || ! this . $container . length > 0 ) {
this . $element . append ( this . config . container . template ) ;
this . $container = this . $element . find ( Selector . CONTAINER ) ;
} // always add the rippleElement, it is always removed
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
this . $container . append ( this . config . decorator . template ) ;
this . $decorator = this . $container . find ( Selector . DECORATOR ) ;
} ; // Make sure the ripple has the styles applied (ugly hack but it works)
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _forceStyleApplication = function _forceStyleApplication ( ) {
return window . getComputedStyle ( this . $decorator [ 0 ] ) . opacity ;
} ;
/ * *
* Get the relX
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _getRelX = function _getRelX ( event ) {
var wrapperOffset = this . $container . offset ( ) ;
var result = null ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! this . _isTouch ( ) ) {
// Get the mouse position relative to the ripple wrapper
result = event . pageX - wrapperOffset . left ;
} else {
// Make sure the user is using only one finger and then get the touch
// position relative to the ripple wrapper
event = event . originalEvent ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( event . touches . length === 1 ) {
result = event . touches [ 0 ] . pageX - wrapperOffset . left ;
} else {
result = false ;
}
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return result ;
} ;
/ * *
* Get the relY
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _getRelY = function _getRelY ( event ) {
var containerOffset = this . $container . offset ( ) ;
var result = null ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
if ( ! this . _isTouch ( ) ) {
/ * *
* Get the mouse position relative to the ripple wrapper
* /
result = event . pageY - containerOffset . top ;
} else {
/ * *
* Make sure the user is using only one finger and then get the touch
* position relative to the ripple wrapper
* /
event = event . originalEvent ;
if ( event . touches . length === 1 ) {
result = event . touches [ 0 ] . pageY - containerOffset . top ;
} else {
result = false ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
return result ;
} ;
/ * *
* Get the ripple color
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _getRipplesColor = function _getRipplesColor ( ) {
var color = this . $element . data ( "ripple-color" ) ? this . $element . data ( "ripple-color" ) : window . getComputedStyle ( this . $element [ 0 ] ) . color ;
return color ;
} ;
/ * *
* Verify if the client is using a mobile device
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _isTouch = function _isTouch ( ) {
return this . config . touchUserAgentRegex . test ( navigator . userAgent ) ;
} ;
/ * *
* End the animation of the ripple
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . rippleEnd = function rippleEnd ( ) {
if ( this . $decorator ) {
// guard against race condition/mouse attack
this . $decorator . data ( "animating" , "off" ) ;
if ( this . $decorator . data ( "mousedown" ) === "off" ) {
this . rippleOut ( this . $decorator ) ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} ;
/ * *
* Turn off the ripple effect
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . rippleOut = function rippleOut ( ) {
var _this3 = this ;
this . $decorator . off ( ) ;
if ( Util$1 . transitionEndSupported ( ) ) {
this . $decorator . addClass ( "ripple-out" ) ;
} else {
this . $decorator . animate ( {
opacity : 0
} , 100 , function ( ) {
_this3 . $decorator . trigger ( "transitionend" ) ;
} ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
this . $decorator . on ( Util$1 . transitionEndSelector ( ) , function ( ) {
if ( _this3 . $decorator ) {
_this3 . $decorator . remove ( ) ;
_this3 . $decorator = null ;
}
} ) ;
} ;
/ * *
* Turn on the ripple effect
* /
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . rippleOn = function rippleOn ( ) {
var _this4 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
var size = this . _getNewSize ( ) ;
if ( Util$1 . transitionEndSupported ( ) ) {
this . $decorator . css ( {
"-ms-transform" : "scale(" + size + ")" ,
"-moz-transform" : "scale(" + size + ")" ,
"-webkit-transform" : "scale(" + size + ")" ,
transform : "scale(" + size + ")"
} ) . addClass ( "ripple-on" ) . data ( "animating" , "on" ) . data ( "mousedown" , "on" ) ;
} else {
this . $decorator . animate ( {
width : Math . max ( this . $element . outerWidth ( ) , this . $element . outerHeight ( ) ) * 2 ,
height : Math . max ( this . $element . outerWidth ( ) , this . $element . outerHeight ( ) ) * 2 ,
"margin-left" : Math . max ( this . $element . outerWidth ( ) , this . $element . outerHeight ( ) ) * - 1 ,
"margin-top" : Math . max ( this . $element . outerWidth ( ) , this . $element . outerHeight ( ) ) * - 1 ,
opacity : 0.2
} , this . config . duration , function ( ) {
_this4 . $decorator . trigger ( "transitionend" ) ;
2017-12-17 22:35:02 +03:00
} ) ;
}
2018-01-23 15:38:38 +03:00
} ;
/ * *
* Get the new size based on the element height / width and the ripple width
* /
_proto . _getNewSize = function _getNewSize ( ) {
return Math . max ( this . $element . outerWidth ( ) , this . $element . outerHeight ( ) ) / this . $decorator . outerWidth ( ) * 2.5 ;
} ; // ------------------------------------------------------------------------
// static
Ripples . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Ripples ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Ripples ;
} ( ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Ripples . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Ripples ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Ripples . _jQueryInterface ;
} ;
return Ripples ;
} ( jQuery ) ;
var Autofill = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "autofill" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = "bmd" + ( NAME . charAt ( 0 ) . toUpperCase ( ) + NAME . slice ( 1 ) ) ;
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
var Default = { } ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var Autofill =
/*#__PURE__*/
function ( _Base ) {
_inheritsLoose ( Autofill , _Base ) ;
2017-12-17 22:35:02 +03:00
function Autofill ( $element , config ) {
2018-01-23 15:38:38 +03:00
var _this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_this = _Base . call ( this , $element , $ . extend ( true , { } , Default , config ) ) || this ;
2017-12-17 22:35:02 +03:00
_this . _watchLoading ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
_this . _attachEventHandlers ( ) ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
return _this ;
}
2018-01-23 15:38:38 +03:00
var _proto = Autofill . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
_Base . prototype . dispose . call ( this , DATA _KEY ) ;
} ; // ------------------------------------------------------------------------
// private
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _watchLoading = function _watchLoading ( ) {
var _this2 = this ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
// After 10 seconds we are quite sure all the needed inputs are autofilled then we can stop checking them
setTimeout ( function ( ) {
clearInterval ( _this2 . _onLoading ) ;
} , 10000 ) ;
} ; // This part of code will detect autofill when the page is loading (username and password inputs for example)
_proto . _onLoading = function _onLoading ( ) {
setInterval ( function ( ) {
$ ( "input[type!=checkbox]" ) . each ( function ( index , element ) {
var $element = $ ( element ) ;
if ( $element . val ( ) && $element . val ( ) !== $element . attr ( "value" ) ) {
$element . trigger ( "change" ) ;
}
} ) ;
} , 100 ) ;
} ;
_proto . _attachEventHandlers = function _attachEventHandlers ( ) {
// Listen on inputs of the focused form
// (because user can select from the autofill dropdown only when the input has focus)
var focused = null ;
$ ( document ) . on ( "focus" , "input" , function ( event ) {
var $inputs = $ ( event . currentTarget ) . closest ( "form" ) . find ( "input" ) . not ( "[type=file]" ) ;
focused = setInterval ( function ( ) {
$inputs . each ( function ( index , element ) {
2017-12-17 22:35:02 +03:00
var $element = $ ( element ) ;
2018-01-23 15:38:38 +03:00
if ( $element . val ( ) !== $element . attr ( "value" ) ) {
2017-12-17 22:35:02 +03:00
$element . trigger ( "change" ) ;
}
} ) ;
} , 100 ) ;
2018-01-23 15:38:38 +03:00
} ) . on ( "blur" , ".form-group input" , function ( ) {
clearInterval ( focused ) ;
} ) ;
} ; // ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
Autofill . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new Autofill ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return Autofill ;
} ( Base ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = Autofill . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = Autofill ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return Autofill . _jQueryInterface ;
} ;
return Autofill ;
} ( jQuery ) ;
/* globals Popper */
Popper . Defaults . modifiers . computeStyle . gpuAcceleration = false ;
/ * *
* $ . bootstrapMaterialDesign ( config ) is a macro class to configure the components generally
* used in Material Design for Bootstrap . You may pass overrides to the configurations
* which will be passed into each component , or you may omit use of this class and
* configure each component separately .
* /
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var BootstrapMaterialDesign = function ( $ ) {
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Constants
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
var NAME = "bootstrapMaterialDesign" ;
var DATA _KEY = "bmd." + NAME ;
var JQUERY _NAME = NAME ; // retain this full name since it is long enough not to conflict
2018-01-23 15:38:38 +03:00
var JQUERY _NO _CONFLICT = $ . fn [ JQUERY _NAME ] ;
2017-12-17 22:35:02 +03:00
/ * *
* Global configuration :
* The global configuration hash will be mixed in to each components ' config .
* e . g . calling $ . bootstrapMaterialDesign ( { global : { validate : true } } ) would pass ` validate:true ` to every component
*
*
* Component configuration :
* - selector : may be a string or an array . Any array will be joined with a comma to generate the selector
* - disable any component by defining it as false with an override . e . g . $ . bootstrapMaterialDesign ( { autofill : false } )
*
* @ see each individual component for more configuration settings .
* /
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
var Default = {
global : {
validate : false ,
label : {
className : "bmd-label-static" // default style of label to be used if not specified in the html markup
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
}
} ,
autofill : {
selector : "body"
} ,
checkbox : {
selector : ".checkbox > label > input[type=checkbox]"
} ,
checkboxInline : {
selector : "label.checkbox-inline > input[type=checkbox]"
} ,
collapseInline : {
selector : '.bmd-collapse-inline [data-toggle="collapse"]'
} ,
drawer : {
selector : ".bmd-layout-drawer"
} ,
file : {
selector : "input[type=file]"
} ,
radio : {
selector : ".radio > label > input[type=radio]"
} ,
radioInline : {
selector : "label.radio-inline > input[type=radio]"
} ,
ripples : {
//selector: ['.btn:not(.btn-link):not(.ripple-none)'] // testing only
selector : [ ".btn:not(.btn-link):not(.ripple-none)" , ".card-image:not(.ripple-none)" , ".navbar a:not(.ripple-none)" , ".dropdown-menu a:not(.ripple-none)" , ".nav-tabs a:not(.ripple-none)" , ".pagination li:not(.active):not(.disabled) a:not(.ripple-none)" , ".ripple" // generic marker class to add ripple to elements
]
} ,
select : {
selector : [ "select" ]
} ,
switch : {
selector : ".switch > label > input[type=checkbox]"
} ,
text : {
// omit inputs we have specialized components to handle - we need to match text, email, etc. The easiest way to do this appears to be just omit the ones we don't want to match and let the rest fall through to this.
selector : [ "input:not([type=hidden]):not([type=checkbox]):not([type=radio]):not([type=file]):not([type=button]):not([type=submit]):not([type=reset])" ]
} ,
textarea : {
selector : [ "textarea" ]
} ,
arrive : true ,
// create an ordered component list for instantiation
2018-01-23 15:38:38 +03:00
instantiation : [ "ripples" , "checkbox" , "checkboxInline" , "collapseInline" , "drawer" , //'file',
2017-12-17 22:35:02 +03:00
"radio" , "radioInline" , "switch" , "text" , "textarea" , "select" , "autofill" ]
} ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* Class Definition
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
2018-01-23 15:38:38 +03:00
var BootstrapMaterialDesign =
/*#__PURE__*/
function ( ) {
2017-12-17 22:35:02 +03:00
function BootstrapMaterialDesign ( $element , config ) {
var _this = this ;
this . $element = $element ;
this . config = $ . extend ( true , { } , Default , config ) ;
var $document = $ ( document ) ;
2018-01-23 15:38:38 +03:00
var _loop = function _loop ( component ) {
// the component's config fragment is passed in directly, allowing users to override
var componentConfig = _this . config [ component ] ; // check to make sure component config is enabled (not `false`)
if ( componentConfig ) {
// assemble the selector as it may be an array
var selector = _this . _resolveSelector ( componentConfig ) ; // mix in global options
componentConfig = $ . extend ( true , { } , _this . config . global , componentConfig ) ; // create the jquery fn name e.g. 'bmdText' for 'text'
var componentName = "" + ( component . charAt ( 0 ) . toUpperCase ( ) + component . slice ( 1 ) ) ;
var jqueryFn = "bmd" + componentName ;
try {
// safely instantiate component on selector elements with config, report errors and move on.
// console.debug(`instantiating: $('${selector}')[${jqueryFn}](${componentConfig})`) // eslint-disable-line no-console
$ ( selector ) [ jqueryFn ] ( componentConfig ) ; // add to arrive if present and enabled
if ( document . arrive && _this . config . arrive ) {
$document . arrive ( selector , function ( ) {
// eslint-disable-line no-loop-func
$ ( this ) [ jqueryFn ] ( componentConfig ) ;
} ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
} catch ( e ) {
var message = "Failed to instantiate component: $('" + selector + "')[" + jqueryFn + "](" + componentConfig + ")" ;
console . error ( message , e , "\nSelected elements: " , $ ( selector ) ) ; // eslint-disable-line no-console
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
throw e ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
} ;
for ( var _iterator = this . config . instantiation , _isArray = Array . isArray ( _iterator ) , _i = 0 , _iterator = _isArray ? _iterator : _iterator [ Symbol . iterator ] ( ) ; ; ) {
var _ref ;
if ( _isArray ) {
if ( _i >= _iterator . length ) break ;
_ref = _iterator [ _i ++ ] ;
} else {
_i = _iterator . next ( ) ;
if ( _i . done ) break ;
_ref = _i . value ;
}
var component = _ref ;
_loop ( component ) ;
2017-12-17 22:35:02 +03:00
}
}
2018-01-23 15:38:38 +03:00
var _proto = BootstrapMaterialDesign . prototype ;
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . dispose = function dispose ( ) {
this . $element . data ( DATA _KEY , null ) ;
this . $element = null ;
this . config = null ;
} ; // ------------------------------------------------------------------------
// private
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
_proto . _resolveSelector = function _resolveSelector ( componentConfig ) {
var selector = componentConfig . selector ;
if ( Array . isArray ( selector ) ) {
selector = selector . join ( ", " ) ;
2017-12-17 22:35:02 +03:00
}
2018-01-23 15:38:38 +03:00
return selector ;
} ; // ------------------------------------------------------------------------
// static
2017-12-17 22:35:02 +03:00
2018-01-23 15:38:38 +03:00
BootstrapMaterialDesign . _jQueryInterface = function _jQueryInterface ( config ) {
return this . each ( function ( ) {
var $element = $ ( this ) ;
var data = $element . data ( DATA _KEY ) ;
if ( ! data ) {
data = new BootstrapMaterialDesign ( $element , config ) ;
$element . data ( DATA _KEY , data ) ;
}
} ) ;
} ;
2017-12-17 22:35:02 +03:00
return BootstrapMaterialDesign ;
} ( ) ;
/ * *
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* jQuery
* -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- -- --
* /
$ . fn [ JQUERY _NAME ] = BootstrapMaterialDesign . _jQueryInterface ;
$ . fn [ JQUERY _NAME ] . Constructor = BootstrapMaterialDesign ;
2018-01-23 15:38:38 +03:00
2017-12-17 22:35:02 +03:00
$ . fn [ JQUERY _NAME ] . noConflict = function ( ) {
$ . fn [ JQUERY _NAME ] = JQUERY _NO _CONFLICT ;
return BootstrapMaterialDesign . _jQueryInterface ;
} ;
return BootstrapMaterialDesign ;
} ( jQuery ) ;
/ *
* This is the main entry point .
*
* You can import other modules here , including external packages . When bundling using rollup you can mark those modules as external and have them excluded or , if they have a jsnext : main entry in their package . json ( like this package does ) , let rollup bundle them into your dist file .
*
* at your application entry point . This is necessary for browsers that do not yet support some ES2015 runtime necessities such as Symbol . We do this in ` index-iife.js ` for our iife rollup bundle .
* /
// Bootstrap components
2018-01-23 15:38:38 +03:00
} ) ) ) ;
2017-12-17 22:35:02 +03:00
//# sourceMappingURL=bootstrap-material-design.js.map