-
Notifications
You must be signed in to change notification settings - Fork 0
/
easydropdown.js
2 lines (2 loc) · 46.1 KB
/
easydropdown.js
1
2
!(function (e, t) { typeof exports === 'object' && typeof module === 'object' ? module.exports = t() : typeof define === 'function' && define.amd ? define([], t) : typeof exports === 'object' ? exports.easydropdown = t() : e.easydropdown = t(); }(window, function () { return (function (e) { var t = {}; function n(o) { if (t[o]) return t[o].exports; var i = t[o] = { i: o, l: !1, exports: {} }; return e[o].call(i.exports, i, i.exports, n), i.l = !0, i.exports; } return n.m = e, n.c = t, n.d = function (e, t, o) { n.o(e, t) || Object.defineProperty(e, t, { enumerable: !0, get: o }); }, n.r = function (e) { typeof Symbol !== 'undefined' && Symbol.toStringTag && Object.defineProperty(e, Symbol.toStringTag, { value: 'Module' }), Object.defineProperty(e, '__esModule', { value: !0 }); }, n.t = function (e, t) { if (1 & t && (e = n(e)), 8 & t) return e; if (4 & t && typeof e === 'object' && e && e.__esModule) return e; var o = Object.create(null); if (n.r(o), Object.defineProperty(o, 'default', { enumerable: !0, value: e }), 2 & t && typeof e !== 'string') for (var i in e) n.d(o, i, function (t) { return e[t]; }.bind(null, i)); return o; }, n.n = function (e) { var t = e && e.__esModule ? function () { return e.default; } : function () { return e; }; return n.d(t, 'a', t), t; }, n.o = function (e, t) { return Object.prototype.hasOwnProperty.call(e, t); }, n.p = '', n(n.s = 21); }([function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(8); var i = n(3); t.ArrayStrategy = i.default, t.default = o.default; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(41); function i(e, t, n, o) { var i = e(o, n); var r = i.maxVisibleItemsOverride > -1 ? i.maxVisibleItemsOverride : n.behavior.maxVisibleItems; var a = o.item.length > r; var u = o.sumItemsHeight(r); t.open(u, i.type, a); } t.dispatchOpen = i; var r = i.bind(null, o.default); t.default = r; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e) { return e.reduce(function (e, t) { if (typeof t === 'string') e.push(t); else { var n = t[0]; var o = t[1]; n && e.push(o); } return e; }, []).join(' '); }; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.PUSH = 'PUSH', e.REPLACE = 'REPLACE'; }(o || (o = {}))), t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t, n) { void 0 === n && (n = !1); var o = e.parentNode; if (n && e.matches(t)) return e; for (; o && o !== document.body;) { if (o.matches && o.matches(t)) return o; if (!o.parentNode) return null; o = o.parentNode; } return null; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.OPTION = '[data-ref~="option"]'; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = function (e, t) { var n = t.actions; var o = t.timers; window.clearTimeout(o.keyingTimeoutId), n.keying(), o.keyingTimeoutId = window.setTimeout(function () { return n.resetKeying(); }, 100), e.disabled = !0, setTimeout(function () { e.disabled = !1, e.focus(); }); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = []; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(26); var i = n(3); var r = n(27); var a = n(28); var u = n(29); var s = n(9); function l(e, t, n) { void 0 === n && (n = null); var a; var d = typeof window !== 'undefined'; var c = []; if (a = n instanceof o.default ? n : new o.default(), typeof n === 'boolean' && !0 === n) a.deep = !0; else if (n && a !== n && typeof n === 'object' && (l(a, n), [i.default.PUSH, i.default.REPLACE].indexOf(a.arrayStrategy) < 0)) throw RangeError(s.INVALID_ARRAY_STRATEGY(a.arrayStrategy)); if (!e || typeof e !== 'object') throw new TypeError(s.TYPE_ERROR_TARGET(e)); if (!t || typeof t !== 'object') throw new TypeError(s.TYPE_ERROR_SOURCE(t)); if (Array.isArray(t)) { if (a.arrayStrategy === i.default.PUSH) return e.push.apply(e, t), e; for (var f = 0; f < t.length; f++)c.push(f.toString()); } else c = Object.getOwnPropertyNames(t); for (var p = 0, h = c; p < h.length; p++) { var v = h[p]; var b = Object.getOwnPropertyDescriptor(t, v); if ((typeof b.get !== 'function' || b.set || a.includeReadOnly) && (b.enumerable || a.includeNonEmurable)) if (!a.deep || typeof t[v] !== 'object' || d && t[v] instanceof window.Node || d && t[v] === window.document.body || d && t[v] === window.document.documentElement || t[v] === null || Array.isArray(t[v]) && a.useReferenceIfArray || !e[v] && a.useReferenceIfTargetUnset) try { e[v] = t[v]; } catch (t) { u.default(t, e, v, a.errorMessage); } else { if (!Object.prototype.hasOwnProperty.call(e, v) || e[v] === null) try { e[v] = Array.isArray(t[v]) ? [] : a.preserveTypeIfTargetUnset ? r.default(t[v]) : {}; } catch (t) { u.default(t, e, v, a.errorMessage); } l(e[v], t[v], a); } } return e; } Object.keys(a.default.prototype).forEach(function (e) { return l[e] = (function (e) { return function () { for (var t, n = [], o = 0; o < arguments.length; o++)n[o] = arguments[o]; return (t = new a.default())[e].apply(t, n); }; }(e)); }), t.default = l; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.MERGE_ERROR = function (e, t) { return void 0 === t && (t = ''), 'Unknown property "' + e + '"' + (t ? '. Did you mean "' + t + '"?' : ''); }, t.TYPE_ERROR_TARGET = function (e) { return '[Helpful Merge] Target "' + e + '" must be a valid object'; }, t.TYPE_ERROR_SOURCE = function (e) { return '[Helpful Merge] Source "' + e + '" must be a valid object'; }, t.INVALID_ARRAY_STRATEGY = function (e) { return '[Helpful Merge] Invalid array strategy "' + e + '"'; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(30); var i = n(31); var r = n(32); var a = function () { this.callbacks = new i.default(), this.classNames = new r.default(), this.behavior = new o.default(), Object.seal(this); }; t.default = a; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.NONE = 'NONE', e.TOP = 'TOP', e.BOTTOM = 'BOTTOM'; }(o || (o = {}))), t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e) { var t = /(ipad|iphone|ipod)/gi.test(e); var n = /android/gi.test(e); var o = /opera mini/gi.test(e); var i = /windows phone/gi.test(e); return !!(t || n || o || i); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.UP = 38, t.DOWN = 40, t.SPACE = 32, t.ENTER = 13, t.ESC = 27; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { var n = t.state; var o = t.actions; var i = t.dom; n.isOpen && (o.close(), i.select.blur()); }; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.ADD = 'ADD', e.EDIT = 'EDIT', e.REMOVE = 'REMOVE'; }(o || (o = {}))), t.default = o; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.NONE = 'NONE', e.FULL = 'FULL', e.REPLACE = 'REPLACE', e.INNER = 'INNER', e.OUTER = 'OUTER'; }(o = t.DomChangeType || (t.DomChangeType = {}))), t.default = o; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.CLOSED = 'CLOSED', e.OPEN_ABOVE = 'OPEN_ABOVE', e.OPEN_BELOW = 'OPEN_BELOW'; }(o || (o = {}))), t.default = o; }, function (e, t, n) { 'use strict'; var o; Object.defineProperty(t, '__esModule', { value: !0 }), (function (e) { e.AT_TOP = 'AT_TOP', e.SCROLLED = 'SCROLLED', e.AT_BOTTOM = 'AT_BOTTOM'; }(o || (o = {}))), t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = (function () { function e() { this.label = '', this.options = [], this.isDisabled = !1; } return Object.defineProperty(e.prototype, 'totalOptions', { get: function () { return this.options.length; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'hasLabel', { get: function () { return this.label !== ''; }, enumerable: !0, configurable: !0 }), e; }()); t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function () { this.label = '', this.value = '', this.isDisabled = !1; }; t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), n(22), n(23); var o = n(24); e.exports = o.default; }, function (e, t) { !(function () { if (typeof window !== 'undefined') try { var e = new window.CustomEvent('test', { cancelable: !0 }); if (e.preventDefault(), !0 !== e.defaultPrevented) throw new Error('Could not prevent default'); } catch (e) { var t = function (e, t) { var n, o; return t = t || { bubbles: !1, cancelable: !1, detail: void 0 }, (n = document.createEvent('CustomEvent')).initCustomEvent(e, t.bubbles, t.cancelable, t.detail), o = n.preventDefault, n.preventDefault = function () { o.call(this); try { Object.defineProperty(this, 'defaultPrevented', { get: function () { return !0; } }); } catch (e) { this.defaultPrevented = !0; } }, n; }; t.prototype = window.Event.prototype, window.CustomEvent = t; } }()); }, function (e, t) { Element.prototype.matches || (Element.prototype.matches = Element.prototype.msMatchesSelector); }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(7); var i = n(25); var r = n(72); function a(e, t) { void 0 === t && (t = {}); var n = e; if (typeof e === 'string' && (n = document.querySelector(e)), !(n instanceof HTMLSelectElement)) throw new TypeError('[EasyDropDown] Invalid select element provided'); if (n.multiple) throw new Error('[EasyDropDown] EasyDropDown does not support the `multiple` attribute on select elements.'); for (var a = 0, u = o.default; a < u.length; a++) { var s = u[a]; if (s.selectElement === n) return new r.default(s); } var l = new i.default(n, t); return o.default.push(l), new r.default(l); } var u; var s = ((u = a).all = function (e) { void 0 === e && (e = {}); var t = document.querySelectorAll('select'); Array.prototype.forEach.call(t, function (t) { return a(t, e); }); }, u.destroy = function () { o.default.slice().forEach(function (e) { return e.destroy(); }); }, u); t.default = s; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = n(10); var r = n(33); var a = n(50); var u = n(1); var s = n(63); var l = n(64); var d = n(65); var c = n(66); var f = n(67); var p = n(69); var h = n(7); var v = n(71); var b = (function () { function e(e, t) { this.config = o.default(new i.default(), t, !0), this.state = p.default.mapFromSelect(e, this.config), this.renderer = new a.default(this.config.classNames), this.dom = this.renderer.render(this.state, e), this.timers = new v.default(), this.actions = f.default.proxyActions(this.state, { closeOthers: d.default.bind(null, this, h.default), scrollToView: c.default.bind(null, this.dom, this.timers) }, this.handleStateUpdate.bind(this)), this.eventBindings = r.default({ actions: this.actions, config: this.config, dom: this.dom, state: this.state, timers: this.timers }), this.timers.pollChangeIntervalId = s.default(this.dom.select, this.state, this.actions, this.config), this.config.behavior.liveUpdates && (this.timers.pollMutationIntervalId = l.default(this.dom.select, this.state, this.refresh.bind(this))); } return Object.defineProperty(e.prototype, 'selectElement', { get: function () { return this.dom.select; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'value', { get: function () { return this.state.value; }, set: function (e) { if (typeof e !== 'string') throw new TypeError('[EasyDropDown] Provided value not a valid string'); this.dom.select.value = e; }, enumerable: !0, configurable: !0 }), e.prototype.open = function () { u.default(this.actions, this.config, this.dom); }, e.prototype.close = function () { this.actions.close(); }, e.prototype.refresh = function () { this.state = o.default(this.state, p.default.mapFromSelect(this.dom.select, this.config)), this.renderer.update(this.state), this.dom.group.length = this.dom.option.length = this.dom.item.length = 0, a.default.queryDomRefs(this.dom, ['group', 'option', 'item']); }, e.prototype.validate = function () { return !(this.state.isRequired && !this.state.hasValue) || (this.actions.invalidate(), !1); }, e.prototype.destroy = function () { this.timers.clear(), this.eventBindings.forEach(function (e) { return e.unbind(); }), this.renderer.destroy(); var e = h.default.indexOf(this); h.default.splice(e, 1); }, e.prototype.handleStateUpdate = function (e, t) { var n = this.config.callbacks; switch (this.renderer.update(e, t), t) { case 'bodyStatus': var o = void 0; typeof (o = e.isOpen ? n.onOpen : n.onClose) === 'function' && o(); break; case 'selectedIndex': typeof (o = n.onSelect) === 'function' && o(e.value); break; case 'isClickSelecting': o = n.onOptionClick; if (!1 === e[t]) { var i = e.getOptionFromIndex(e.focusedIndex).value; typeof o === 'function' && o(i); } } }, e; }()); t.default = b; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(3); var i = n(9); var r = function () { this.deep = !1, this.useReferenceIfTargetUnset = !1, this.useReferenceIfArray = !1, this.preserveTypeIfTargetUnset = !1, this.includeReadOnly = !1, this.includeNonEmurable = !1, this.arrayStrategy = o.default.REPLACE, this.errorMessage = i.MERGE_ERROR, Object.seal(this); }; t.default = r; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e) { var t = e.constructor; return typeof t === 'function' && t !== Object ? new t() : {}; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(8); var i = (function () { function e() { this.target = null, this.sources = [], this.config = {}; } return e.prototype.to = function (e) { return this.target = e, this; }, e.prototype.from = function () { for (var e = [], t = 0; t < arguments.length; t++)e[t] = arguments[t]; return this.sources = e, this; }, e.prototype.with = function (e) { return this.config = e, this; }, e.prototype.exec = function () { var e = this; return this.sources.reduce(function (t, n) { return o.default(t, n, e.config); }, this.target || {}); }, e; }()); t.default = i; }, function (e, t, n) { 'use strict'; function o(e, t, n, o) { var r = i(o.toLowerCase(), e); var a = Math.abs(o.length - t.length); return r > n.totalMatching || r === n.totalMatching && a < n.delta ? { key: o, delta: a, totalMatching: r } : n; } function i(e, t) { for (var n = e.length > t.length ? e : t, o = n === e ? t : e, i = 0, r = 0, a = 0, u = -1; i < n.length; i++) { for (; a === 0 && n[i] !== o[r] && r < o.length;)r++; if (n[i] === o[r]) { if (u !== i - 1 && (a = 0), u = i, r++, ++a === o.length) break; } else { if (a > 1) break; a = r = 0; } } u = -1; for (var s = 0, l = 0, d = 0, c = n.length - 1, f = o.length - 1; s < n.length - i; s++) { for (; d === 0 && n[c - s] !== o[f - l] && l < o.length;)l++; if (n[c - s] === o[f - l]) u !== s - 1 && (d = 0), u = s, d++, l++; else { if (d > 1) break; d = l = 0; } } return Math.min(o.length, a + d); } Object.defineProperty(t, '__esModule', { value: !0 }), t.getTotalMatching = i, t.default = function (e, t, n, i) { if (Object.hasOwnProperty.call(t, n) || !Object.isSealed(t) || Object.isExtensible(t) || !(e instanceof TypeError)) throw e; var r = o.bind(null, n, n.toLowerCase()); var a = { key: '', delta: 1 / 0, totalMatching: 0 }; var u = Object.keys(t).reduce(r, a); var s = u && u.totalMatching > 1 ? u.key : ''; throw new TypeError(i(n, s)); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function () { this.showPlaceholderWhenOpen = !1, this.openOnFocus = !1, this.closeOnSelect = !0, this.useNativeUiOnMobile = !0, this.loop = !1, this.clampMaxVisibleItems = !0, this.liveUpdates = !1, this.maxVisibleItems = 15, Object.seal(this); }; t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function () { this.onOpen = null, this.onClose = null, this.onSelect = null, this.onOptionClick = null, Object.seal(this); }; t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function () { this.root = 'edd-root', this.rootOpen = 'edd-root-open', this.rootOpenAbove = 'edd-root-open-above', this.rootOpenBelow = 'edd-root-open-below', this.rootDisabled = 'edd-root-disabled', this.rootInvalid = 'edd-root-invalid', this.rootFocused = 'edd-root-focused', this.rootHasValue = 'edd-root-has-value', this.rootNative = 'edd-root-native', this.gradientTop = 'edd-gradient-top', this.gradientBottom = 'edd-gradient-bottom', this.head = 'edd-head', this.value = 'edd-value', this.arrow = 'edd-arrow', this.select = 'edd-select', this.body = 'edd-body', this.bodyScrollable = 'edd-body-scrollable', this.bodyAtTop = 'edd-body-at-top', this.bodyAtBottom = 'edd-body-at-bottom', this.itemsList = 'edd-items-list', this.group = 'edd-group', this.groupDisabled = 'edd-group-disabled', this.groupHasLabel = 'edd-group-has-label', this.groupLabel = 'edd-group-label', this.option = 'edd-option', this.optionDisabled = 'edd-option-disabled', this.optionFocused = 'edd-option-focused', this.optionSelected = 'edd-option-selected', Object.seal(this); }; t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(34); var i = n(35); var r = n(36); function a(e, t) { var n = new i.default(t); if (!n.target) return n; var r = function (t) { return n.handler(t, e); }; return n.throttle > 0 ? n.boundHandler = o.default(r, n.throttle) : n.boundHandler = r, n.target.addEventListener(n.type, n.boundHandler), n; } t.bindEvent = a, t.default = function (e) { return r.default(e.dom).map(a.bind(null, e)); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { var n = null; var o = -1 / 0; return function () { for (var i = this, r = [], a = 0; a < arguments.length; a++)r[a] = arguments[a]; var u = Date.now(); var s = function () { n = null, e.apply(i, r), o = u; }; var l = u - o; l >= t ? s() : (clearTimeout(n), n = setTimeout(s, t - l)); }; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = (function () { function e(e) { this.type = '', this.target = null, this.debounce = 0, this.throttle = 0, this.handler = null, this.boundHandler = null, this.passive = !1, o.default(this, e), Object.seal(this); } return e.prototype.unbind = function () { this.target && this.target.removeEventListener(this.type, this.boundHandler); }, e; }()); t.default = i; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(37); var i = n(38); var r = n(39); var a = n(40); var u = n(42); var s = n(43); var l = n(44); var d = n(45); var c = n(46); var f = n(49); var p = n(14); var h = n(14); t.default = function (e) { return [{ target: e.head, type: 'click', handler: a.default }, { target: e.body, type: 'mousedown', handler: i.default }, { target: e.body, type: 'click', handler: o.default }, { target: e.body, type: 'mouseover', handler: r.default }, { target: e.itemsList, type: 'scroll', handler: u.default }, { target: e.select, type: 'keydown', handler: c.default }, { target: e.select, type: 'invalid', handler: d.default }, { target: e.select, type: 'keypress', handler: f.default }, { target: e.select, type: 'focus', handler: l.default }, { target: e.select, type: 'blur', handler: s.default }, { target: document.documentElement, type: 'click', handler: p.default }, { target: window, type: 'resize', handler: h.default, throttle: 100 }]; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(4); var i = n(5); t.default = function (e, t) { t.state; var n = t.actions; var r = t.dom; var a = t.config; e.stopPropagation(); var u = o.default(e.target, i.OPTION, !0); if (u) { var s = Array.prototype.indexOf.call(r.option, u); n.selectOption(s, a.behavior.closeOnSelect); } }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(4); var i = n(5); t.default = function (e, t) { var n = t.actions; e.stopPropagation(), o.default(e.target, i.OPTION, !0) && n.startClickSelecting(); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(4); var i = n(5); t.default = function (e, t) { var n = t.state; var r = t.actions; var a = t.dom; e.stopPropagation(); var u = o.default(e.target, i.OPTION, !0); if (u && !n.isKeying) { var s = Array.prototype.indexOf.call(a.option, u); r.focusOption(s); } }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(1); var i = n(12); function r(e, t, n) { var i = n.state; var r = n.actions; var a = n.dom; var u = n.config; if (!i.isUseNativeMode) { var s = e(window.navigator.userAgent); t.stopPropagation(), i.isClosed ? (o.default(r, u, a), s ? r.focus() : a.select.focus()) : r.close(); } } t.handleHeadClick = r; var a = r.bind(null, i.default); t.default = a; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(11); function i(e, t, n, i) { var r = o.default.NONE; var a = -1; if (e <= n && t <= n) { var u = Math.max(t, e); r = e < t ? o.default.TOP : o.default.BOTTOM, a = Math.floor(u / i); } else e <= n ? r = o.default.TOP : t <= n && (r = o.default.BOTTOM); return { type: r, maxVisibleItemsOverride: a }; } t.mapCollisionData = i, t.default = function (e, t) { var n = e.head.getBoundingClientRect(); var r = window.innerHeight; var a = n.top - 10; var u = r - n.bottom - 10; if (e.option.length < 1) return { type: o.default.NONE, maxVisibleItemsOverride: -1 }; var s = Math.min(t.behavior.maxVisibleItems, e.item.length); return i(a, u, e.sumItemsHeight(s), e.sumItemsHeight(1)); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { t.state; var n = t.actions; var o = t.dom; e.stopPropagation(); var i = o.itemsList; var r = i.offsetHeight; var a = i.scrollHeight; var u = i.scrollTop; u === 0 ? n.topOut() : u === a - r ? n.bottomOut() : n.scroll(); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { var n = t.actions; var o = t.state; var i = t.config; o.isKeying || (n.blur(), i.behavior.openOnFocus && !o.isClickSelecting && n.close()); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(1); t.default = function (e, t) { var n = t.actions; var i = t.config; var r = t.dom; var a = t.state; n.focus(), i.behavior.openOnFocus && !a.isUseNativeMode && o.default(n, i, r); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { var n = t.actions; t.config, t.dom, n.invalidate(); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(1); var i = n(6); var r = n(13); var a = n(47); var u = n(48); t.default = function (e, t) { var n = e.keyCode; var s = e.target; var l = t.state; var d = t.actions; var c = t.dom; var f = t.config; if (!l.isUseNativeMode && !l.isDisabled) switch (n) { case r.DOWN: a.default(e, t); break; case r.UP: u.default(e, t); break; case r.SPACE: if (l.isSearching) return void e.stopPropagation(); case r.ENTER: e.stopPropagation(), e.preventDefault(), i.default(s, t), l.isOpen ? d.selectOption(l.focusedIndex, f.behavior.closeOnSelect) : o.default(d, f, c); break; case r.ESC: d.close(); } }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(1); var i = n(6); t.default = function (e, t) { var n = e.metaKey; var r = e.target; var a = t.state; var u = t.dom; var s = t.actions; var l = t.config; var d = a.focusedIndex > -1 ? a.focusedIndex : a.selectedIndex; var c = 0; var f = 1; e.preventDefault(), i.default(r, t), n && (f = Math.round(Math.max(a.totalOptions / 2, l.behavior.maxVisibleItems))); do { d += f, f = 1, d >= a.totalOptions && (d = l.behavior.loop ? 0 : a.totalOptions - 1), s.focusOption(d, !0), c++; } while (a.focusedOption && a.focusedOption.isDisabled && c <= a.totalOptions); a.isClosed && o.default(s, l, u); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(1); var i = n(6); t.default = function (e, t) { var n = e.metaKey; var r = e.target; var a = t.state; var u = t.config; var s = t.dom; var l = t.actions; var d = a.focusedIndex > -1 ? a.focusedIndex : a.selectedIndex; var c = 0; var f = 1; e.preventDefault(), i.default(r, t), n && (f = Math.round(Math.max(a.totalOptions / 2, u.behavior.maxVisibleItems))); do { d -= f, f = 1, d < 0 && (d = u.behavior.loop ? a.totalOptions - 1 : 0), l.focusOption(d, !0), c++; } while (a.focusedOption && a.focusedOption.isDisabled && c < a.totalOptions); a.isClosed && o.default(l, u, s); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(13); t.default = function (e, t, n) { var i = e.keyCode; var r = t.actions; var a = t.timers; void 0 === n && (n = 1200), t.state.isUseNativeMode || [o.UP, o.DOWN].includes(i) || (window.clearTimeout(a.searchTimeoutId), r.search(), a.searchTimeoutId = window.setTimeout(function () { return r.resetSearch(); }, n)); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(51); var i = n(58); var r = n(59); var a = n(60); var u = n(62); var s = (function () { function e(e) { this.dom = new r.default(), this.classNames = e; } return e.prototype.render = function (t, n) { var a = o.default(t, this.classNames); var u = i.default(a); return this.dom = new r.default(), this.dom.root = u, this.dom.option.length = this.dom.group.length = 0, e.queryDomRefs(this.dom), this.injectSelect(n), this.dom; }, e.prototype.update = function (e, t) { var n = o.default(e, this.classNames); var r = i.default(n); var s = a.default(this.dom.root, r); u.default(this.dom.root, s), t === 'selectedIndex' && this.syncSelectWithValue(e.value); }, e.prototype.destroy = function () { this.dom.select.classList.remove(this.classNames.select); try { this.dom.root.parentElement.replaceChild(this.dom.select, this.dom.root); } catch (e) { } }, e.prototype.injectSelect = function (e) { var t = e.parentElement; var n = this.dom.select; if (!t) throw new Error('[EasyDropDown] The provided `<select>` element must exist within a document'); t.replaceChild(this.dom.root, e), n.parentElement.replaceChild(e, n), e.className = this.classNames.select, e.setAttribute('aria-hidden', 'true'), this.dom.select = e; }, e.prototype.syncSelectWithValue = function (e) { if (this.dom.select.value !== e) { var t = new CustomEvent('change', { bubbles: !0 }); this.dom.select.value = e, this.dom.select.dispatchEvent(t); } }, e.queryDomRefs = function (e, t) { return void 0 === t && (t = Object.keys(e)), t.reduce(function (e, t) { var n = '[data-ref~="' + t + '"]'; var o = e.root.querySelectorAll(n); if (o.length < 1 || t === 'root') return e; var i = o[0]; var r = e[t]; return r === null ? e[t] = i : Array.isArray(r) && Array.prototype.push.apply(r, o), e; }, e); }, e; }()); t.default = s; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(2); var i = n(52); var r = n(55); t.default = function (e, t) { return '\n <div\n class="' + o.default([t.root, [e.isDisabled, t.rootDisabled], [e.isInvalid, t.rootInvalid], [e.isOpen, t.rootOpen], [e.isFocused, t.rootFocused], [e.hasValue, t.rootHasValue], [e.isOpenAbove, t.rootOpenAbove], [e.isOpenBelow, t.rootOpenBelow], [e.isUseNativeMode, t.rootNative]]) + '"\n role="widget combobox"\n aria-haspopup="listbox"\n ' + (e.isOpen ? 'aria-expanded="true"' : '') + '\n ' + (e.isRequired ? 'aria-required="true"' : '') + '\n ' + (e.isDisabled ? 'aria-disabled="true"' : '') + '\n ' + (e.isInvalid ? 'aria-invalid="true"' : '') + '\n >\n ' + r.default(e, t) + '\n ' + (e.isUseNativeMode ? '' : i.default(e, t)) + '\n </div>\n '; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(2); var i = n(53); t.default = function (e, t) { var n = o.default([t.body, [e.isAtTop, t.bodyAtTop], [e.isAtBottom, t.bodyAtBottom], [e.isScrollable, t.bodyScrollable]]); var r = e.isOpen ? 'style="max-height: ' + e.maxBodyHeight + 'px;"' : ''; return '\n <div\n class="' + n + '"\n data-ref="body"\n role="listbox"\n ' + (e.isOpen ? '' : 'aria-hidden') + '\n >\n <div class="' + t.itemsList + '"\n data-ref="itemsList"\n ' + r + '>\n ' + e.groups.map(function (n) { return i.default(n, e, t); }).join('') + '\n </div>\n <div class=' + t.gradientTop + ' role="presentation"></div>\n <div class=' + t.gradientBottom + ' role="presentation"></div>\n </div>\n '; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(2); var i = n(54); t.default = function (e, t, n) { return '\n <div class="' + o.default([n.group, [e.isDisabled, n.groupDisabled], [e.hasLabel, n.groupHasLabel]]) + '" data-ref="group" role="group">\n ' + (e.hasLabel ? '<div class="' + n.groupLabel + '" data-ref="item">' + e.label + '</div>' : '') + '\n ' + e.options.map(function (e) { return i.default(e, t, n); }).join('') + '\n </div>\n '; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(2); t.default = function (e, t, n) { var i = t.selectedOption === e; return '\n <div\n class="' + o.default([n.option, [i, n.optionSelected], [e === t.focusedOption, n.optionFocused], [e.isDisabled, n.optionDisabled]]) + '"\n data-ref="option item"\n role="option"\n title="' + e.label + '"\n ' + (i ? 'aria-selected="true"' : '') + '\n ' + (e.isDisabled ? 'aria-disabled="true"' : '') + '\n >\n ' + e.label + '\n </div>\n '; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(56); var i = n(57); t.default = function (e, t) { return '\n <div class="' + t.head + '" data-ref="head">\n ' + i.default(e, t) + '\n ' + o.default(e, t) + '\n <select class="' + t.select + '" data-ref="select"></select>\n </div>\n'; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = function (e, t) { return '<div class="' + t.arrow + '" role="presentation"></div>'; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = function (e, t) { return '\n <div\n class="' + t.value + '"\n data-ref="value"\n ' + (e.isPlaceholderShown ? 'aria-placeholder="' + e.humanReadableValue + '"' : '') + '\n >\n ' + e.humanReadableValue + '\n </div>\n '; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e) { var t = document.createElement('div'); return t.innerHTML = e, t.firstElementChild; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = (function () { function e() { this.select = null, this.root = null, this.head = null, this.value = null, this.body = null, this.arrow = null, this.itemsList = null, this.item = [], this.group = [], this.option = []; } return e.prototype.sumItemsHeight = function (e) { void 0 === e && (e = 1 / 0); for (var t = 0, n = 0, o = void 0; (o = this.item[n]) && n !== e; n++)t += o.offsetHeight; return t; }, e; }()); t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = n(15); var r = n(16); var a = n(61); function u(e, t) { for (var n = Math.max(e.attributes.length, t.attributes.length), o = {}, a = [], u = 0; u < n; u++) { var s = e.attributes[u]; var l = t.attributes[u]; s && void 0 === o[s.name] && (o[s.name] = []), l && void 0 === o[l.name] && (o[l.name] = []), s && (o[s.name][0] = s.value), l && (o[l.name][1] = l.value); } var d = Object.keys(o); d.length > 1 && d.sort(); u = 0; for (var c = void 0; c = d[u]; u++) { var f = o[c]; var p = { type: null, name: c, value: null }; f[0] !== f[1] && (void 0 === f[0] ? (p.type = i.default.ADD, p.value = f[1]) : void 0 === f[1] ? (p.type = i.default.REMOVE, p.value = '') : (p.type = i.default.EDIT, p.value = f[1]), a.push(p)); } return { type: r.default.OUTER, attributeChanges: a }; } t.default = function e(t, n) { var i = -1; var s = new a.default(); if (t instanceof HTMLSelectElement) return s.type = r.default.NONE, s; if (t instanceof Text && n instanceof Text) t.textContent === n.textContent ? s.type = r.default.NONE : (s.type = r.default.INNER, s.newTextContent = n.textContent); else if (t instanceof HTMLElement && n instanceof HTMLElement) if (t.tagName !== n.tagName) s.type = r.default.REPLACE, s.newNode = n; else if (t.outerHTML === n.outerHTML) s.type = r.default.NONE; else if (t.innerHTML === n.innerHTML) o.default(s, u(t, n)); else if (o.default(s, u(t, n)), s.attributeChanges.length > 0 ? s.type = r.default.FULL : s.type = r.default.INNER, (i = t.childNodes.length) > 0 && i === n.childNodes.length) for (var l = 0, d = void 0; d = t.childNodes[l]; l++)s.childCommands.push(e(d, n.childNodes[l])); else s.newInnerHtml = n.innerHTML; else s.type = r.default.REPLACE, s.newNode = n; return s; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function () { this.newNode = null, this.newInnerHtml = '', this.newTextContent = '', this.attributeChanges = [], this.childCommands = [], this.index = null; }; t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(15); var i = n(16); function r(e, t) { var n = window.requestAnimationFrame; t.forEach(function (t) { n && ['class', 'style'].indexOf(t.name) > -1 ? n(function () { return a(e, t); }) : a(e, t); }); } function a(e, t) { switch (t.type) { case o.default.ADD: case o.default.EDIT: e.setAttribute(t.name, t.value); break; case o.default.REMOVE: e.removeAttribute(t.name); } } t.default = function e(t, n) { switch (n.type) { case i.default.NONE: return t; case i.default.REPLACE: return t.parentElement.replaceChild(n.newNode, t), n.newNode; case i.default.INNER: return t instanceof Text ? t.textContent = n.newTextContent : n.childCommands.length > 0 ? n.childCommands.forEach(function (n, o) { return e(t.childNodes[o], n); }) : t.innerHTML = n.newInnerHtml, t; case i.default.OUTER: return r(t, n.attributeChanges), t; case i.default.FULL: return n.childCommands.length > 0 ? n.childCommands.forEach(function (n, o) { return e(t.childNodes[o], n); }) : t.innerHTML = n.newInnerHtml, r(t, n.attributeChanges), t; } }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = function (e, t, n, o) { var i = e.value; return window.setInterval(function () { if (e.value !== i) { var r = t.getOptionIndexFromValue(e.value); n.selectOption(r, o.behavior.closeOnSelect), n.focusOption(r, !0); } i = e.value; }, 100); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); t.default = function (e, t, n) { var o = e.outerHTML; return window.setInterval(function () { var i = e.outerHTML; i === o || t.isKeying || n(), o = i; }, 300); }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }), t.default = function (e, t) { for (var n = 0, o = t; n < o.length; n++) { var i = o[n]; i !== e && i.actions.close(); } }; }, function (e, t, n) { 'use strict'; function o(e, t, n, o, i) { var r; return t < e ? t - i : (r = t + n - (e + o)) > 0 ? e + r + i : e; } Object.defineProperty(t, '__esModule', { value: !0 }), t.getScrollTop = o, t.default = function (e, t, n, i) { void 0 === i && (i = !1); var r = Math.max(0, n.focusedIndex > -1 ? n.focusedIndex : n.selectedIndex); var a = e.option[r]; if (a) { var u = i ? n.maxBodyHeight / 2 - a.offsetHeight / 2 : 0; var s = o(e.itemsList.scrollTop, a.offsetTop, a.offsetHeight, n.maxBodyHeight, u); s !== e.itemsList.scrollTop && (e.itemsList.scrollTop = s); } }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = n(68); var r = (function () { function e() { } return e.proxyActions = function (t, n, r) { var a = e.createStateProxy(t, r); var u = i.default(a); return o.default(u, n), u; }, e.createStateProxy = function (t, n) { return Object.seal(e.getPropertyDescriptorsFromValue(t, n).reduce(function (e, t) { var n = t.key; var o = t.get; var i = t.set; return Object.defineProperty(e, n, { enumerable: !0, get: o, set: i }); }, {})); }, e.getPropertyDescriptorsFromValue = function (t, n) { var o = Object.getPrototypeOf(t); return Object.keys(t).concat(Object.keys(o)).reduce(function (i, r) { var a = typeof (Object.getOwnPropertyDescriptor(t, r) || Object.getOwnPropertyDescriptor(o, r)).get === 'function'; return i.push({ get: e.readPropertyValue.bind(null, t, r), set: a ? void 0 : e.updatePropertyValue.bind(null, t, r, n), key: r }), i; }, []); }, e.readPropertyValue = function (e, t) { return e[t]; }, e.updatePropertyValue = function (e, t, n, o) { e[t] !== o && (e[t] = o, n(e, t)); }, e; }()); t.default = r; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(11); var i = n(17); var r = n(18); t.default = function (e) { return { focus: function () { e.isFocused = !0; }, blur: function () { e.isFocused = !1; }, invalidate: function () { e.isInvalid = !0; }, validate: function () { e.isInvalid = !1; }, topOut: function () { e.scrollStatus = r.default.AT_TOP; }, bottomOut: function () { e.scrollStatus = r.default.AT_BOTTOM; }, scroll: function () { e.scrollStatus = r.default.SCROLLED; }, makeScrollable: function () { e.isScrollable = !0; }, makeUnscrollable: function () { e.isScrollable = !1; }, open: function (t, n, r) { if (!e.isDisabled) { switch (this.closeOthers(), n) { case o.default.NONE: case o.default.TOP: e.bodyStatus = i.default.OPEN_BELOW; break; case o.default.BOTTOM: e.bodyStatus = i.default.OPEN_ABOVE; }e.isScrollable = r, e.maxBodyHeight = t, this.scrollToView(e, !0); } }, close: function () { e.bodyStatus = i.default.CLOSED, e.focusedIndex = -1, this.blur(); }, startClickSelecting: function () { e.isClickSelecting = !0; }, selectOption: function (t, n) { void 0 === n && (n = !0); var o = e.getOptionFromIndex(t); e.isClickSelecting = !1, t > -1 && (!o || o.isDisabled) || (e.selectedIndex = t, e.isInvalid && e.hasValue && this.validate(), e.isSearching ? this.scrollToView(e) : n && this.close()); }, focusOption: function (t, n) { void 0 === n && (n = !1); var o = Math.abs(t - e.focusedIndex) > 1; e.focusedIndex = t, n && this.scrollToView(e, o); }, search: function () { e.isSearching = !0; }, resetSearch: function () { e.isSearching = !1; }, keying: function () { e.isKeying = !0; }, resetKeying: function () { e.isKeying = !1; }, useNative: function () { e.isUseNativeMode = !0; } }; }; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = n(12); var r = n(19); var a = n(20); var u = n(70); var s = (function () { function e() { } return e.mapFromSelect = function (t, n) { var o = new u.default(null, n); var r = !1; o.name = t.name, o.isDisabled = t.disabled, o.isRequired = t.required, o.isUseNativeMode = n.behavior.useNativeUiOnMobile && i.default(window.navigator.userAgent); for (var a = 0, s = void 0; s = t.children[a]; a++) if (a !== 0 || s.getAttribute('data-placeholder') === null) if (s instanceof HTMLOptionElement) !1 === r && (o.groups.push(e.mapGroup()), r = !0), o.lastGroup.options.push(e.mapOption(s)), s.selected && (o.selectedIndex = o.totalOptions - 1); else { if (!(s instanceof HTMLOptGroupElement)) throw new TypeError('[EasyDropDown] Invalid child tag "' + s.tagName + '" found in provided `<select>` element'); r = !0, o.groups.push(e.mapGroup(s)); for (var l = 0, d = void 0; d = s.children[l]; l++)o.lastGroup.options.push(e.mapOption(d, s)), d.selected && (o.selectedIndex = o.totalOptions - 1); r = !1; } else o.placeholder = s.textContent, s.value = ''; return Object.seal(o); }, e.mapGroup = function (e) { return void 0 === e && (e = null), o.default(new r.default(), { label: e ? e.label : '', isDisabled: !!e && e.disabled }); }, e.mapOption = function (e, t) { if (void 0 === t && (t = null), !(e instanceof HTMLOptionElement)) throw new TypeError('[EasyDropDown] Invalid markup structure'); var n = t !== null && t.disabled; return o.default(new a.default(), { label: e.textContent, value: e.value, isDisabled: e.disabled || n }); }, e; }()); t.default = s; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = n(0); var i = n(10); var r = n(17); var a = n(18); var u = n(19); var s = n(20); var l = (function () { function e(e, t) { void 0 === e && (e = null), void 0 === t && (t = new i.default()), this.groups = [], this.focusedIndex = -1, this.selectedIndex = -1, this.maxVisibleItemsOverride = -1, this.maxBodyHeight = -1, this.name = '', this.placeholder = '', this.scrollStatus = a.default.AT_TOP, this.bodyStatus = r.default.CLOSED, this.isDisabled = !1, this.isRequired = !1, this.isInvalid = !1, this.isFocused = !1, this.isUseNativeMode = !1, this.isScrollable = !1, this.isClickSelecting = !1, this.isSearching = !1, this.isKeying = !1, this.config = t, e && (o.default(this, e), this.groups = this.groups.map(function (e) { var t = o.default(new u.default(), e); return t.options = t.options.map(function (e) { return o.default(new s.default(), e); }), t; })); } return Object.defineProperty(e.prototype, 'totalGroups', { get: function () { return this.groups.length; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'lastGroup', { get: function () { return this.groups[this.groups.length - 1]; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'totalOptions', { get: function () { return this.groups.reduce(function (e, t) { return e + t.totalOptions; }, 0); }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'selectedOption', { get: function () { return this.getOptionFromIndex(this.selectedIndex); }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'focusedOption', { get: function () { return this.getOptionFromIndex(this.focusedIndex); }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'value', { get: function () { return this.selectedOption ? this.selectedOption.value : ''; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'humanReadableValue', { get: function () { return !this.hasValue && this.hasPlaceholder || this.config.behavior.showPlaceholderWhenOpen && this.hasPlaceholder && this.isOpen ? this.placeholder : this.label; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'label', { get: function () { return this.selectedOption ? this.selectedOption.label : ''; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'hasPlaceholder', { get: function () { return this.placeholder !== ''; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isPlaceholderShown', { get: function () { return this.hasPlaceholder && !this.hasValue; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'hasValue', { get: function () { return this.value !== ''; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isGrouped', { get: function () { return Boolean(this.groups.find(function (e) { return e.hasLabel; })); }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isOpen', { get: function () { return this.bodyStatus !== r.default.CLOSED; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isClosed', { get: function () { return this.bodyStatus === r.default.CLOSED; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isOpenAbove', { get: function () { return this.bodyStatus === r.default.OPEN_ABOVE; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isOpenBelow', { get: function () { return this.bodyStatus === r.default.OPEN_BELOW; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isAtTop', { get: function () { return this.scrollStatus === a.default.AT_TOP; }, enumerable: !0, configurable: !0 }), Object.defineProperty(e.prototype, 'isAtBottom', { get: function () { return this.scrollStatus === a.default.AT_BOTTOM; }, enumerable: !0, configurable: !0 }), e.prototype.getOptionFromIndex = function (e) { for (var t = 0, n = 0, o = this.groups; n < o.length; n++) { var i = o[n]; if (e < 0) break; if (e <= Math.max(0, t + i.totalOptions - 1)) return i.options[e - t]; t += i.totalOptions; } return null; }, e.prototype.getOptionIndexFromValue = function (e) { for (var t = -1, n = 0, o = this.groups; n < o.length; n++) for (var i = 0, r = o[n].options; i < r.length; i++) { if (t++, r[i].value === e) return t; } return -1; }, e; }()); t.default = l; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = (function () { function e() { } return e.prototype.clear = function () { var e = this; Object.keys(this).forEach(function (t) { return window.clearInterval(e[t]); }); }, e; }()); t.default = o; }, function (e, t, n) { 'use strict'; Object.defineProperty(t, '__esModule', { value: !0 }); var o = function (e) { this.open = e.open.bind(e), this.close = e.close.bind(e), this.refresh = e.refresh.bind(e), this.destroy = e.destroy.bind(e), this.validate = e.validate.bind(e), Object.defineProperties(this, { value: { get: function () { return e.value; }, set: function (t) { return e.value = t; } } }); }; t.default = o; }])); }));
// # sourceMappingURL=easydropdown.js.map