uniform-ui 2.3.5 → 2.3.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5ee8e0b603653407ba912e094246075c11185a9a4bdaebed02a7f25a5046677f
4
- data.tar.gz: 3479264ee4480f9e8e73d549216d94afab1d26307b164d6fb5d05310488a75a9
3
+ metadata.gz: 4ed62635ad685c1847b43fba14dc9525ebb6d26ce694b577f473d546ef8c0ffb
4
+ data.tar.gz: 19147fe5893fbe9d7289a940e2c8a34df20b2c1d5c368b3ac86137a68102d7b8
5
5
  SHA512:
6
- metadata.gz: 4c0f7f138450830356276a63e9272fee5ec6b2da795df327733c9d2f317d8fdf8ef15f9b5625df1073e7d643bbf72083eb3294add8ea71fc020ffe7684d6fdb0
7
- data.tar.gz: 1d61e6a926c7b2133ff79f5114ca91f08749553d5d5b98d729cea88631595d07d0deb6c7e0ef9777758a657ebc93085f7ed1a6debddc215ccca12fc56e9a2122
6
+ metadata.gz: d49850cb8ddc5dfa0a9859d1038c03d5e1ab589e806909279f1130b5ce6179b7311353b5053117958bd681ec4908179e2f344189d8fb9727e1e2412fd8fe4b1a
7
+ data.tar.gz: 3fe3254a00713fe3ec03c7443bd6877cf7aeed1c869337cc86b4bb087cb654dc9a4b4b14464b89e685ef65e5b9b6afb2406a39a82e3fa1b1790848472348e12f
@@ -71,7 +71,7 @@ export default class Modal extends Component {
71
71
 
72
72
  var closeButton = document.createElement('div');
73
73
  Helpers.addClass(closeButton, 'uniformModal-close');
74
- container.appendChild(closeButton);
74
+ this.el.appendChild(closeButton);
75
75
 
76
76
  this.el.style.top = window.scrollY;
77
77
  this.listenTo(this.overlay, 'click', this.close);
@@ -115,7 +115,7 @@ export default class Popover extends Component {
115
115
  } else if (leftAlign == 'right'){
116
116
  position.left = offset.left + Helpers.outerWidth(this.options.anchor);
117
117
  } else if (leftAlign.includes("px")){
118
- position.left = offset.left + Helpers.outerWidth(this.options.anchor) + parseInt(leftAlign);
118
+ position.left = offset.left + parseInt(leftAlign);
119
119
  }
120
120
 
121
121
  if(topAlign == 'top'){
@@ -132,7 +132,7 @@ export default class Popover extends Component {
132
132
  } else if (topAlign == 'bottom'){
133
133
  position.top = offset.top + Helpers.outerHeight(this.options.anchor);
134
134
  } else if (topAlign.includes("px")){
135
- position.top = offset.top + Helpers.outerHeight(this.options.anchor) + parseInt(topAlign);
135
+ position.top = offset.top + parseInt(topAlign);
136
136
  }
137
137
 
138
138
  if(this.options.offset.left) position.left += parseInt(this.options.offset.left);
@@ -1,4 +1,6 @@
1
1
  import Component from './component';
2
+ import Popover from './popover';
3
+ import Modal from './modal';
2
4
  import { check as checkIcon, arrow_down as arrowIcon } from './icons';
3
5
  import * as Helpers from './dom-helpers';
4
6
 
@@ -6,7 +8,7 @@ import * as Helpers from './dom-helpers';
6
8
  options
7
9
  class: String, appended to uniformSelect-edit button as class
8
10
  limit: int | false - number of options to limit to, or false to not limit
9
- showAll: function(select_options) to run if/when "Show All" is clicked
11
+ showAll: function(button_options) to run if/when "Show All" is clicked
10
12
  label: string, used for mobile menu
11
13
  container: selector for where to render dropdown
12
14
  */
@@ -16,9 +18,9 @@ export default class Select extends Component {
16
18
  this.options = {
17
19
  label: false,
18
20
  class: "",
19
- showAll: function (select_options){
20
- Helpers.removeClass(select_options.querySelectorAll('button.hide'), 'hide');
21
- var button = select_options.querySelector('.uniformSelect-show-all');
21
+ showAll: function (button_options){
22
+ Helpers.removeClass(button_options.querySelectorAll('button.hide'), 'hide');
23
+ var button = button_options.querySelector('.uniformSelect-show-all');
22
24
  button.parentNode.removeChild(button);
23
25
 
24
26
  return false;
@@ -29,92 +31,69 @@ export default class Select extends Component {
29
31
 
30
32
  Object.assign(this.options, this.pick(options, Object.keys(this.options)));
31
33
 
32
- var showing, lastScrollPosition, select_options;
33
-
34
- this.listenTo(this.el, 'change', this.updateSelect);
34
+ this.listenTo(this.el, 'change', this.renderSelected);
35
35
  this.listenTo(this.el, 'close', this.hideOptions);
36
- this.listenTo(this.el, 'revealed', this.resize);
37
36
  this.el.uniformSelect = this;
38
37
 
39
- this.listenTo(window, 'resize', this.resize);
40
- this.listenTo(window, 'scroll', this.updatePosition);
41
- this.listenTo(document, 'click', this.outsideClick);
42
- this.listenTo(document, 'keyup', this.keyup);
43
-
44
38
  this.activeIcon = document.createElement('span');
45
- Helpers.addClass(this.activeIcon, 'uniformSelect-option-icon');
46
39
  this.activeIcon.innerHTML = checkIcon;
40
+ Helpers.addClass(this.activeIcon, 'uniformSelect-option-icon');
47
41
  }
48
-
49
- outsideClick (e) {
50
- if (!this.showing) return;
51
- if (e.target === this.select_options) return;
52
- if (this.container.contains(e.target)) return;
53
- if (this.select_options.contains(e.target)) return;
54
- this.hideOptions();
55
- }
56
-
57
- keyup (e) {
58
- if(e.which === 27) this.hideOptions();
42
+
43
+ remove () {
44
+ Component.prototype.remove.apply(this, arguments);
45
+ this.edit_button.parentNode.removeChild(this.edit_button);
46
+ delete this.this.edit_button;
47
+
48
+ this.activeIcon.parentNode.removeChild(this.activeIcon);
49
+ delete this.activeIcon;
50
+
51
+ if(this.button_options_popover) this.button_options_popover.remove();
52
+ if(this.button_options_modal) this.button_options_modal.remove();
53
+
54
+ if(this.button_options) {
55
+ this.button_options.parentNode.removeChild(this.button_options);
56
+ delete this.button_options;
57
+ }
59
58
  }
60
59
 
61
60
  render () {
62
- this.container = document.createElement('div');
63
- Helpers.addClass(this.container, 'uniformSelect-container');
64
-
65
- this.edit_button = Helpers.createElement(`<button type='button' class='uniformSelect-edit uniformInput outline block ${this.options.class}'><span class="text-js"></span><span class="uniformSelect-edit-icon">${arrowIcon}</span></button>`);
66
- this.container.appendChild(this.edit_button);
61
+ this.edit_button = Helpers.createElement(`
62
+ <button type='button' class='uniformSelect-edit uniformInput outline block ${this.options.class}'>
63
+ <span class="text-js"></span>
64
+ <span class="uniformSelect-edit-icon">${arrowIcon}</span>
65
+ </button>
66
+ `);
67
67
 
68
68
  if (this.el.name) {
69
- Helpers.addClass(this.container, this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g, '-'));
69
+ Helpers.addClass(this.edit_button, this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g, '-'));
70
70
  }
71
71
  this.el.style.display = "none";
72
- this.el.insertAdjacentElement('beforebegin', this.container);
73
- this.updateSelect();
74
- this.resize();
72
+ this.el.insertAdjacentElement('beforebegin', this.edit_button);
73
+
74
+ // Set Min-Width for when empty
75
+ const option = this.el.querySelectorAll("option")[0];
76
+ this.edit_button.querySelector('.text-js').style.opacity = 0;
77
+ this.edit_button.querySelector('.text-js').innerHTML = option.textContent;
78
+ const min_width = this.edit_button.querySelector('.text-js').offsetWidth;
79
+ this.edit_button.style.minWidth = min_width + "px";
80
+ this.edit_button.querySelector('.text-js').innerHTML = "";
81
+ this.edit_button.querySelector('.text-js').style.opacity = null;
82
+
83
+ this.renderSelected();
75
84
 
76
85
  this.listenTo(this.edit_button, 'click', this.showOptions);
77
86
  this.listenTo(this.edit_button, 'click', '.uniformSelect-remove', this.removeSelection);
78
- }
79
-
80
- resize () {
81
- // to keep button from extending beyond available width
82
- var children = [];
83
- var childrenCount = this.edit_button.children.length;
84
- for(var i = 0; i < childrenCount; i++){
85
- children.push(this.edit_button.children[0]);
86
- this.edit_button.children[0].parentNode.removeChild(this.edit_button.children[0]);
87
- }
88
-
89
- this.edit_button.innerHTML = '';
90
- this.edit_button.style.width = "auto";
91
- this.edit_button.style.maxWidth = "100%";
92
- this.edit_button.style.minWidth = this.container.offsetWidth + "px";
93
87
 
94
- Helpers.each(children, function(child){
95
- this.edit_button.appendChild(child);
96
- }.bind(this));
97
-
98
- if(typeof this.select_options === "undefined") return;
99
- if(window.innerWidth < 720) return;
100
-
101
- this.select_options.style.position = 'absolute';
102
- this.select_options.style.top = Helpers.offset(this.container).top + this.container.offsetHeight + "px";
103
- this.select_options.style.left = Helpers.offset(this.container).left + 1 + "px";
104
- this.select_options.style.minWidth = this.container.offsetWidth - 1 + "px";
88
+ return this;
105
89
  }
106
90
 
107
91
  renderOptions () {
108
- this.select_options = Helpers.createElement("<div class='uniformSelect-options'>");
109
- if (this.options.label) {
110
- this.select_options.append(`<div class="uniformSelect-label hide show-sm margin-bottom text-bold">${this.options.label}</div>`)
111
- }
92
+ this.button_options = Helpers.createElement("<div class='uniformSelect-options'>");
112
93
  if (this.el.name) {
113
- Helpers.addClass(this.select_options, this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g, '-'));
94
+ Helpers.addClass(this.button_options, this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g, '-'));
114
95
  }
115
- this.select_options.style.fontSize = Helpers.css(this.el, 'font-size');
116
- this.select_options.style.display = 'none';
117
- this.options.container.appendChild(this.select_options);
96
+ this.button_options.style.fontSize = Helpers.css(this.el, 'font-size');
118
97
 
119
98
  Helpers.each(this.el.querySelectorAll('option'), function(el, index){
120
99
  var button = Helpers.createElement("<button type='button' class='uniformSelect-option block outline text-left'>");
@@ -128,16 +107,17 @@ export default class Select extends Component {
128
107
  } else if (this.options.limit && index > this.options.limit) {
129
108
  Helpers.addClass(button, 'hide');
130
109
  }
131
- this.select_options.append(button);
132
- this.listenTo(button, 'click', this.selectOption);
110
+ this.button_options.append(button);
133
111
  }.bind(this));
134
112
 
135
- var actions_el = Helpers.createElement('<div class="uniformSelect-options-actions"></div>');
113
+ this.listenTo(this.button_options, 'click', '.uniformSelect-option', this.selectOption);
114
+
115
+ const actions_el = Helpers.createElement('<div class="uniformSelect-options-actions"></div>');
136
116
  if (this.options.limit && this.el.querySelectorAll('option').length > this.options.limit) {
137
- var show_all_button = Helpers.createElement("<button type='button' class='uniformSelect-show-all outline blue' style='display: block; border: none'>Show All</button>");
117
+ const show_all_button = Helpers.createElement("<button type='button' class='uniformSelect-show-all outline blue' style='display: block; border: none'>Show All</button>");
138
118
  this.listenTo(show_all_button, 'click', function(e){
139
119
  Helpers.trigger(this.el, 'show_all');
140
- if (this.options.showAll) this.options.showAll(this.select_options);
120
+ if (this.options.showAll) this.options.showAll(this.button_options);
141
121
  e.preventDefault();
142
122
  e.stopPropagation();
143
123
  })
@@ -149,39 +129,88 @@ export default class Select extends Component {
149
129
  actions_el.appendChild(done_button);
150
130
  }
151
131
  if (!Helpers.is_empty(actions_el)) {
152
- this.select_options.appendChild(actions_el);
132
+ this.button_options.appendChild(actions_el);
153
133
  }
134
+ }
154
135
 
155
- Helpers.trigger(this.el, 'rendered');
136
+ renderSelected () {
137
+ const selected_options = Helpers.filter(this.el.querySelectorAll("option"), function(el){
138
+ return el.selected;
139
+ });
140
+ const html = Helpers.map(selected_options, function(el){
141
+ return this.el.multiple ? `<span class="uniformSelect-selection">${el.textContent}<span class="uniformSelect-remove"></span></span>` : el.textContent;
142
+ }.bind(this)).join(" ");
143
+
144
+ if (html == "") {
145
+ this.edit_button.querySelector('.text-js').innerHTML = "&nbsp;"
146
+ } else {
147
+ this.edit_button.querySelector('.text-js').innerHTML = html;
148
+ }
149
+
150
+ if(this.button_options) {
151
+ Helpers.each(this.button_options.querySelectorAll('.uniformSelect-option'), function(el) {
152
+ if(el.option.selected){
153
+ Helpers.addClass(el, 'active');
154
+ el.append(this.activeIcon.cloneNode(true));
155
+ } else {
156
+ Helpers.removeClass(el, 'active');
157
+ Helpers.each(el.querySelectorAll('.uniformSelect-option-icon'), Helpers.remove);
158
+ }
159
+ }.bind(this))
160
+ }
156
161
  }
157
162
 
158
163
  hideOptions () {
159
- if(typeof this.select_options === "undefined") return;
160
- this.showing = false;
161
- this.select_options.style.display = "none";
162
- Helpers.removeClass(this.select_options, 'fixed');
164
+ if(!this.button_options) return;
165
+ if(this.button_options_modal) this.button_options_modal.close();
166
+ if(this.button_options_popover) {
167
+ this.button_options_popover.remove();
168
+ delete this.button_options_popover;
169
+ }
163
170
  Helpers.removeClass(this.edit_button, 'active');
164
- Helpers.removeClass(document.body, 'uniformModal-hideBody');
165
-
166
- if(this.lastScrollPosition && window.innerWidth < 720) window.scrollTo(0, this.lastScrollPosition);
167
- Helpers.trigger(this.el, 'hidden:options');
168
171
  }
169
172
 
170
- showOptions() {
171
- if (this.showing){
172
- this.hideOptions();
173
- return false;
174
- }
175
- this.showing = true;
176
- if(!this.select_options) this.renderOptions();
177
- this.resize();
178
- this.select_options.style.display = "block";
173
+ showOptions(e) {
174
+ if(Helpers.hasClass(e.target, 'uniformSelect-remove')) return;
175
+ if(this.button_options_modal) return this.hideOptions();
176
+ if(this.button_options_popover) return this.hideOptions();
177
+ if(!this.button_options) this.renderOptions();
179
178
  Helpers.addClass(this.edit_button, 'active');
180
- this.lastScrollPosition = window.scrollY;
181
- this.updatePosition();
182
- Helpers.addClass(document.body, 'uniformModal-hideBody');
183
- if (this.options.container == document.body) {
184
- Helpers.removeClass(document.body, 'uniformModal-hideBody');
179
+ // For Mobile: Render Full Screen
180
+ if(window.innerWidth < 720) {
181
+ const content = Helpers.createElement('<div class="uniformSelect-modal">');
182
+ content.append(this.button_options);
183
+ if (this.options.label) {
184
+ content.append(`<div class="uniformSelect-label margin-bottom text-bold">${this.options.label}</div>`);
185
+ }
186
+ this.button_options_modal = new Modal({
187
+ content: content,
188
+ klass: '-reset'
189
+ }).render();
190
+ this.button_options_modal.on('closed', () => {
191
+ Helpers.removeClass(this.edit_button, 'active');
192
+ delete this.button_options_modal;
193
+ });
194
+ this.listenTo(content, 'click', function(e){
195
+ if(e.target == content) {
196
+ this.button_options_modal.close()
197
+ }
198
+ });
199
+ // For Larger: Render Popover
200
+ } else {
201
+ this.button_options.style.minWidth = this.edit_button.offsetWidth + "px";
202
+ this.button_options_popover = new Popover({
203
+ offset: {top: 1},
204
+ anchor: this.edit_button,
205
+ align: '0px bottom',
206
+ content: this.button_options,
207
+ container: this.options.container
208
+ }).render()
209
+ this.button_options_popover.on('hidden', () => {
210
+ Helpers.removeClass(this.edit_button, 'active');
211
+ this.button_options_popover.remove();
212
+ delete this.button_options_popover;
213
+ })
185
214
  }
186
215
  }
187
216
 
@@ -192,29 +221,12 @@ export default class Select extends Component {
192
221
  }), function (child) {
193
222
  child.selected = false;
194
223
  });
195
- Helpers.each(this.select_options.querySelectorAll('.uniformSelect-option.active .uniformSelect-option-icon'), Helpers.remove);
196
- Helpers.removeClass(this.select_options.querySelectorAll('.uniformSelect-option.active'), 'active');
224
+ Helpers.each(this.button_options.querySelectorAll('.uniformSelect-option.active .uniformSelect-option-icon'), Helpers.remove);
225
+ Helpers.removeClass(this.button_options.querySelectorAll('.uniformSelect-option.active'), 'active');
197
226
  }
198
- Helpers.toggleClass(e.currentTarget, 'active');
199
- e.currentTarget.option.selected = Helpers.hasClass(e.currentTarget, 'active');
200
- this.updateOptions();
201
- Helpers.trigger(this.el, 'change');
202
- }
203
-
204
- updateSelect () {
205
- if (!this.el.multiple) this.hideOptions();
206
- var value = Helpers.map(Helpers.filter(this.el.querySelectorAll("option"), function(el){
207
- return el.selected;
208
- }), function(el){
209
- return this.el.multiple ? `<span class="uniformSelect-selection">${el.textContent}<span class="uniformSelect-remove"></span></span>` : el.textContent;
210
- }.bind(this)).join(" ");
211
-
212
- if (value == "") value = "&nbsp;";
213
- this.edit_button.querySelector('.text-js').innerHTML = value;
214
- }
215
-
216
- updateOptions () {
217
- Helpers.each(this.select_options.querySelectorAll("button"), function(button) {
227
+ Helpers.toggleClass(e.target, 'active');
228
+ e.target.option.selected = Helpers.hasClass(e.target, 'active');
229
+ Helpers.each(this.button_options.querySelectorAll("button"), function(button) {
218
230
  if(!button.option) return;
219
231
  Helpers.toggleClass(button, 'active', button.option.selected);
220
232
  if (Helpers.hasClass(button, 'active')) {
@@ -223,30 +235,7 @@ export default class Select extends Component {
223
235
  Helpers.each(button.querySelectorAll('.uniformSelect-option-icon'), Helpers.remove);
224
236
  }
225
237
  }.bind(this))
226
- }
227
-
228
- updatePosition () {
229
- if(!this.select_options) return;
230
-
231
- var fixedParents = Helpers.filter(Helpers.ancestors(this.container), function (el){
232
- return Helpers.css(el, 'position') == 'fixed';
233
- });
234
-
235
- if (Helpers.hasClass(this.select_options, 'fixed')) {
236
- if (fixedParents.length == 0) {
237
- this.select_options.style.position = 'absolute';
238
- this.select_options.style.top = Helpers.offset(this.container).top + this.container.offsetHeight + "px";
239
- Helpers.removeClass(this.select_options, 'fixed');
240
- }
241
- } else if(fixedParents.length > 0) {
242
- if (window.innerWidth > 720) {
243
- this.lastScrollPosition = false;
244
- }
245
- this.select_options.style.position = 'fixed';
246
- this.select_options.style.top = Helpers.offset(this.container).top + this.container.offsetHeight + "px";
247
- this.select_options.style.left = Helpers.offset(this.container).left + "px";
248
- Helpers.addClass(this.select_options, 'fixed');
249
- }
238
+ Helpers.trigger(this.el, 'change');
250
239
  }
251
240
 
252
241
  removeSelection(e) {
@@ -256,7 +245,6 @@ export default class Select extends Component {
256
245
  })[0];
257
246
  if(!target) return;
258
247
  target.selected = false;
259
- this.updatePosition();
260
248
  Helpers.trigger(this.el, 'change');
261
249
  }
262
250
  }
@@ -1 +1 @@
1
- !function(){"use strict";function t(t,e){return t(e={exports:{}},e.exports),e.exports}var y=t(function(t){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)}),v=t(function(t){var e=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=e)}),m=(v.version,function(i,o,t){if(function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!")}(i),void 0===o)return i;switch(t){case 1:return function(t){return i.call(o,t)};case 2:return function(t,e){return i.call(o,t,e)};case 3:return function(t,e,n){return i.call(o,t,e,n)}}return function(){return i.apply(o,arguments)}}),c=function(t){return"object"==typeof t?null!==t:"function"==typeof t},s=function(t){if(!c(t))throw TypeError(t+" is not an object!");return t},a=function(t){try{return!!t()}catch(t){return!0}},i=!a(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}),e=y.document,n=c(e)&&c(e.createElement),o=function(t){return n?e.createElement(t):{}},r=!i&&!a(function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}),l=function(t,e){if(!c(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!c(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!c(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!c(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")},u=Object.defineProperty,h={f:i?Object.defineProperty:function(t,e,n){if(s(t),e=l(e,!0),s(n),r)try{return u(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},x=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},S=i?function(t,e,n){return h.f(t,e,x(1,n))}:function(t,e,n){return t[e]=n,t},f={}.hasOwnProperty,g=function(t,e){return f.call(t,e)},b="prototype",w=function(t,e,n){var i,o,r,s=t&w.F,l=t&w.G,c=t&w.S,a=t&w.P,u=t&w.B,h=t&w.W,f=l?v:v[e]||(v[e]={}),p=f[b],d=l?y:c?y[e]:(y[e]||{})[b];for(i in l&&(n=e),n)(o=!s&&d&&void 0!==d[i])&&g(f,i)||(r=o?d[i]:n[i],f[i]=l&&"function"!=typeof d[i]?n[i]:u&&o?m(r,y):h&&d[i]==r?function(i){var t=function(t,e,n){if(this instanceof i){switch(arguments.length){case 0:return new i;case 1:return new i(t);case 2:return new i(t,e)}return new i(t,e,n)}return i.apply(this,arguments)};return t[b]=i[b],t}(r):a&&"function"==typeof r?m(Function.call,r):r,a&&((f.virtual||(f.virtual={}))[i]=r,t&w.R&&p&&!p[i]&&S(p,i,r)))};w.F=1,w.G=2,w.S=4,w.P=8,w.B=16,w.W=32,w.U=64,w.R=128;var p,_=w,d={}.toString,k=function(t){return d.call(t).slice(8,-1)},O=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==k(t)?t.split(""):Object(t)},T=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},E=function(t){return O(T(t))},P=Math.ceil,j=Math.floor,C=function(t){return isNaN(t=+t)?0:(0<t?j:P)(t)},L=Math.min,z=Math.max,M=Math.min,A=t(function(t){var e="__core-js_shared__",n=y[e]||(y[e]={});(t.exports=function(t,e){return n[t]||(n[t]=void 0!==e?e:{})})("versions",[]).push({version:v.version,mode:"pure",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})}),N=0,H=Math.random(),I=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++N+H).toString(36))},F=A("keys"),q=function(t){return F[t]||(F[t]=I(t))},R=(p=!1,function(t,e,n){var i,o,r,s,l=E(t),c=0<(i=l.length)?L(C(i),9007199254740991):0,a=(r=c,(o=C(o=n))<0?z(o+r,0):M(o,r));if(p&&e!=e){for(;a<c;)if((s=l[a++])!=s)return!0}else for(;a<c;a++)if((p||a in l)&&l[a]===e)return p||a||0;return!p&&-1}),W=q("IE_PROTO"),D=function(t,e){var n,i=E(t),o=0,r=[];for(n in i)n!=W&&g(i,n)&&r.push(n);for(;e.length>o;)g(i,n=e[o++])&&(~R(r,n)||r.push(n));return r},B="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),G=Object.keys||function(t){return D(t,B)},Y={f:Object.getOwnPropertySymbols},V={f:{}.propertyIsEnumerable},K=function(t){return Object(T(t))},J=Object.assign,U=!J||a(function(){var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach(function(t){e[t]=t}),7!=J({},t)[n]||Object.keys(J({},e)).join("")!=i})?function(t,e){for(var n=K(t),i=arguments.length,o=1,r=Y.f,s=V.f;o<i;)for(var l,c=O(arguments[o++]),a=r?G(c).concat(r(c)):G(c),u=a.length,h=0;h<u;)s.call(c,l=a[h++])&&(n[l]=c[l]);return n}:J;_(_.S+_.F,"Object",{assign:U});var X=v.Object.assign,Q="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff",Z="["+Q+"]",tt=RegExp("^"+Z+Z+"*"),et=RegExp(Z+Z+"*$"),nt=function(t,e,n){var i={},o=a(function(){return!!Q[t]()||"​…"!="​…"[t]()}),r=i[t]=o?e(it):Q[t];n&&(i[n]=r),_(_.P+_.F*o,"String",i)},it=nt.trim=function(t,e){return t=String(T(t)),1&e&&(t=t.replace(tt,"")),2&e&&(t=t.replace(et,"")),t},ot=nt,rt=y.parseInt,st=ot.trim,lt=/^[-+]?0[xX]/,ct=8!==rt(Q+"08")||22!==rt(Q+"0x16")?function(t,e){var n=st(String(t),3);return rt(n,e>>>0||(lt.test(n)?16:10))}:rt;_(_.G+_.F*(parseInt!=ct),{parseInt:ct});var at=v.parseInt,ut=Array.isArray||function(t){return"Array"==k(t)};_(_.S,"Array",{isArray:ut});var ht=v.Array.isArray;var ft=function(t){if(ht(t))return t},pt=function(t,e){return{value:e,done:!!t}},dt={},yt=S,vt=i?Object.defineProperties:function(t,e){s(t);for(var n,i=G(e),o=i.length,r=0;r<o;)h.f(t,n=i[r++],e[n]);return t},mt=y.document,gt=mt&&mt.documentElement,bt=q("IE_PROTO"),wt=function(){},kt="prototype",xt=function(){var t,e=o("iframe"),n=B.length;for(e.style.display="none",gt.appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),xt=t.F;n--;)delete xt[kt][B[n]];return xt()},St=Object.create||function(t,e){var n;return null!==t?(wt[kt]=s(t),n=new wt,wt[kt]=null,n[bt]=t):n=xt(),void 0===e?n:vt(n,e)},_t=t(function(t){var e=A("wks"),n=y.Symbol,i="function"==typeof n;(t.exports=function(t){return e[t]||(e[t]=i&&n[t]||(i?n:I)("Symbol."+t))}).store=e}),Ot=h.f,Tt=_t("toStringTag"),Et=function(t,e,n){t&&!g(t=n?t:t.prototype,Tt)&&Ot(t,Tt,{configurable:!0,value:e})},Pt={};S(Pt,_t("iterator"),function(){return this});var jt=q("IE_PROTO"),Ct=Object.prototype,Lt=Object.getPrototypeOf||function(t){return t=K(t),g(t,jt)?t[jt]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?Ct:null},zt=_t("iterator"),Mt=!([].keys&&"next"in[].keys()),At="values",Nt=function(){return this},Ht=function(t,e,n,i,o,r,s){var l,c,a;c=e,a=i,(l=n).prototype=St(Pt,{next:x(1,a)}),Et(l,c+" Iterator");var u,h,f,p=function(t){if(!Mt&&t in m)return m[t];switch(t){case"keys":case At:return function(){return new n(this,t)}}return function(){return new n(this,t)}},d=e+" Iterator",y=o==At,v=!1,m=t.prototype,g=m[zt]||m["@@iterator"]||o&&m[o],b=g||p(o),w=o?y?p("entries"):b:void 0,k="Array"==e&&m.entries||g;if(k&&(f=Lt(k.call(new t)))!==Object.prototype&&f.next&&Et(f,d,!0),y&&g&&g.name!==At&&(v=!0,b=function(){return g.call(this)}),s&&(Mt||v||!m[zt])&&S(m,zt,b),dt[e]=b,dt[d]=Nt,o)if(u={values:y?b:p(At),keys:r?b:p("keys"),entries:w},s)for(h in u)h in m||yt(m,h,u[h]);else _(_.P+_.F*(Mt||v),e,u);return u};Ht(Array,"Array",function(t,e){this._t=E(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,pt(1)):pt(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values");dt.Arguments=dt.Array;for(var It=_t("toStringTag"),Ft="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),qt=0;qt<Ft.length;qt++){var Rt=Ft[qt],$t=y[Rt],Wt=$t&&$t.prototype;Wt&&!Wt[It]&&S(Wt,It,Rt),dt[Rt]=dt.Array}var Dt,Bt=(Dt=!0,function(t,e){var n,i,o=String(T(t)),r=C(e),s=o.length;return r<0||s<=r?Dt?"":void 0:(n=o.charCodeAt(r))<55296||56319<n||r+1===s||(i=o.charCodeAt(r+1))<56320||57343<i?Dt?o.charAt(r):n:Dt?o.slice(r,r+2):i-56320+(n-55296<<10)+65536});Ht(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=Bt(e,n),this._i+=t.length,{value:t,done:!1})});var Gt=_t("toStringTag"),Yt="Arguments"==k(function(){return arguments}()),Vt=_t("iterator"),Kt=v.getIteratorMethod=function(t){if(null!=t)return t[Vt]||t["@@iterator"]||dt[(e=t,void 0===e?"Undefined":null===e?"Null":"string"==typeof(i=function(t,e){try{return t[e]}catch(t){}}(n=Object(e),Gt))?i:Yt?k(n):"Object"==(o=k(n))&&"function"==typeof n.callee?"Arguments":o)];var e,n,i,o},Jt=v.getIterator=function(t){var e=Kt(t);if("function"!=typeof e)throw TypeError(t+" is not iterable!");return s(e.call(t))};var Ut=function(t,e){var n=[],i=!0,o=!1,r=void 0;try{for(var s,l=Jt(t);!(i=(s=l.next()).done)&&(n.push(s.value),!e||n.length!==e);i=!0);}catch(t){o=!0,r=t}finally{try{i||null==l.return||l.return()}finally{if(o)throw r}}return n};var Xt=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")};var Qt=function(t,e){return ft(t)||Ut(t,e)||Xt()},Zt=function(t,e){var n=(v.Object||{})[t]||Object[t],i={};i[t]=e(n),_(_.S+_.F*a(function(){n(1)}),"Object",i)};Zt("keys",function(){return function(t){return G(K(t))}});var te=v.Object.keys;var ee=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")};_(_.S+_.F*!i,"Object",{defineProperty:h.f});var ne=v.Object,ie=function(t,e,n){return ne.defineProperty(t,e,n)};function oe(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),ie(t,i.key,i)}}var re=function(t,e,n){return e&&oe(t.prototype,e),n&&oe(t,n),t},se={f:_t},le=se.f("iterator"),ce=t(function(t){var n=I("meta"),e=h.f,i=0,o=Object.isExtensible||function(){return!0},r=!a(function(){return o(Object.preventExtensions({}))}),s=function(t){e(t,n,{value:{i:"O"+ ++i,w:{}}})},l=t.exports={KEY:n,NEED:!1,fastKey:function(t,e){if(!c(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!g(t,n)){if(!o(t))return"F";if(!e)return"E";s(t)}return t[n].i},getWeak:function(t,e){if(!g(t,n)){if(!o(t))return!0;if(!e)return!1;s(t)}return t[n].w},onFreeze:function(t){return r&&l.NEED&&o(t)&&!g(t,n)&&s(t),t}}}),ae=(ce.KEY,ce.NEED,ce.fastKey,ce.getWeak,ce.onFreeze,h.f),ue=function(t){var e=v.Symbol||(v.Symbol={});"_"==t.charAt(0)||t in e||ae(e,t,{value:se.f(t)})},he=B.concat("length","prototype"),fe={f:Object.getOwnPropertyNames||function(t){return D(t,he)}},pe=fe.f,de={}.toString,ye="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],ve={f:function(t){return ye&&"[object Window]"==de.call(t)?function(t){try{return pe(t)}catch(t){return ye.slice()}}(t):pe(E(t))}},me=Object.getOwnPropertyDescriptor,ge={f:i?me:function(t,e){if(t=E(t),e=l(e,!0),r)try{return me(t,e)}catch(t){}if(g(t,e))return x(!V.f.call(t,e),t[e])}},be=ce.KEY,we=ge.f,ke=h.f,xe=ve.f,Se=y.Symbol,_e=y.JSON,Oe=_e&&_e.stringify,Te="prototype",Ee=_t("_hidden"),Pe=_t("toPrimitive"),je={}.propertyIsEnumerable,Ce=A("symbol-registry"),Le=A("symbols"),ze=A("op-symbols"),Me=Object[Te],Ae="function"==typeof Se,Ne=y.QObject,He=!Ne||!Ne[Te]||!Ne[Te].findChild,Ie=i&&a(function(){return 7!=St(ke({},"a",{get:function(){return ke(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=we(Me,e);i&&delete Me[e],ke(t,e,n),i&&t!==Me&&ke(Me,e,i)}:ke,Fe=function(t){var e=Le[t]=St(Se[Te]);return e._k=t,e},qe=Ae&&"symbol"==typeof Se.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof Se},Re=function(t,e,n){return t===Me&&Re(ze,e,n),s(t),e=l(e,!0),s(n),g(Le,e)?(n.enumerable?(g(t,Ee)&&t[Ee][e]&&(t[Ee][e]=!1),n=St(n,{enumerable:x(0,!1)})):(g(t,Ee)||ke(t,Ee,x(1,{})),t[Ee][e]=!0),Ie(t,e,n)):ke(t,e,n)},$e=function(t,e){s(t);for(var n,i=function(t){var e=G(t),n=Y.f;if(n)for(var i,o=n(t),r=V.f,s=0;o.length>s;)r.call(t,i=o[s++])&&e.push(i);return e}(e=E(e)),o=0,r=i.length;o<r;)Re(t,n=i[o++],e[n]);return t},We=function(t){var e=je.call(this,t=l(t,!0));return!(this===Me&&g(Le,t)&&!g(ze,t))&&(!(e||!g(this,t)||!g(Le,t)||g(this,Ee)&&this[Ee][t])||e)},De=function(t,e){if(t=E(t),e=l(e,!0),t!==Me||!g(Le,e)||g(ze,e)){var n=we(t,e);return!n||!g(Le,e)||g(t,Ee)&&t[Ee][e]||(n.enumerable=!0),n}},Be=function(t){for(var e,n=xe(E(t)),i=[],o=0;n.length>o;)g(Le,e=n[o++])||e==Ee||e==be||i.push(e);return i},Ge=function(t){for(var e,n=t===Me,i=xe(n?ze:E(t)),o=[],r=0;i.length>r;)!g(Le,e=i[r++])||n&&!g(Me,e)||o.push(Le[e]);return o};Ae||(yt((Se=function(){if(this instanceof Se)throw TypeError("Symbol is not a constructor!");var e=I(0<arguments.length?arguments[0]:void 0),n=function(t){this===Me&&n.call(ze,t),g(this,Ee)&&g(this[Ee],e)&&(this[Ee][e]=!1),Ie(this,e,x(1,t))};return i&&He&&Ie(Me,e,{configurable:!0,set:n}),Fe(e)})[Te],"toString",function(){return this._k}),ge.f=De,h.f=Re,fe.f=ve.f=Be,V.f=We,Y.f=Ge,se.f=function(t){return Fe(_t(t))}),_(_.G+_.W+_.F*!Ae,{Symbol:Se});for(var Ye="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),Ve=0;Ye.length>Ve;)_t(Ye[Ve++]);for(var Ke=G(_t.store),Je=0;Ke.length>Je;)ue(Ke[Je++]);_(_.S+_.F*!Ae,"Symbol",{for:function(t){return g(Ce,t+="")?Ce[t]:Ce[t]=Se(t)},keyFor:function(t){if(!qe(t))throw TypeError(t+" is not a symbol!");for(var e in Ce)if(Ce[e]===t)return e},useSetter:function(){He=!0},useSimple:function(){He=!1}}),_(_.S+_.F*!Ae,"Object",{create:function(t,e){return void 0===e?St(t):$e(St(t),e)},defineProperty:Re,defineProperties:$e,getOwnPropertyDescriptor:De,getOwnPropertyNames:Be,getOwnPropertySymbols:Ge}),_e&&_(_.S+_.F*(!Ae||a(function(){var t=Se();return"[null]"!=Oe([t])||"{}"!=Oe({a:t})||"{}"!=Oe(Object(t))})),"JSON",{stringify:function(t){for(var e,n,i=[t],o=1;arguments.length>o;)i.push(arguments[o++]);if(n=e=i[1],(c(e)||void 0!==t)&&!qe(t))return ut(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!qe(e))return e}),i[1]=e,Oe.apply(_e,i)}}),Se[Te][Pe]||S(Se[Te],Pe,Se[Te].valueOf),Et(Se,"Symbol"),Et(Math,"Math",!0),Et(y.JSON,"JSON",!0),ue("asyncIterator"),ue("observable");var Ue=v.Symbol,Xe=t(function(e){function n(t){return(n="function"==typeof Ue&&"symbol"==typeof le?function(t){return typeof t}:function(t){return t&&"function"==typeof Ue&&t.constructor===Ue&&t!==Ue.prototype?"symbol":typeof t})(t)}function i(t){return"function"==typeof Ue&&"symbol"===n(le)?e.exports=i=function(t){return n(t)}:e.exports=i=function(t){return t&&"function"==typeof Ue&&t.constructor===Ue&&t!==Ue.prototype?"symbol":n(t)},i(t)}e.exports=i});var Qe=function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t};var Ze=function(t,e){return!e||"object"!==Xe(e)&&"function"!=typeof e?Qe(t):e};Zt("getPrototypeOf",function(){return function(t){return Lt(K(t))}});var tn=v.Object.getPrototypeOf,en=function(t,e){if(s(t),!c(e)&&null!==e)throw TypeError(e+": can't set as prototype!")},nn={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,i){try{(i=m(Function.call,ge.f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,e){return en(t,e),n?t.__proto__=e:i(t,e),t}}({},!1):void 0),check:en};_(_.S,"Object",{setPrototypeOf:nn.set});var on=v.Object.setPrototypeOf,rn=t(function(e){function n(t){return e.exports=n=on?tn:function(t){return t.__proto__||tn(t)},n(t)}e.exports=n});_(_.S,"Object",{create:St});var sn=v.Object,ln=function(t,e){return sn.create(t,e)},cn=t(function(n){function i(t,e){return n.exports=i=on||function(t,e){return t.__proto__=e,t},i(t,e)}n.exports=i});var an=function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=ln(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&cn(t,e)};function un(t,e){return t.classList?t.classList.contains(e):new RegExp("(^| )"+e+"( |$)","gi").test(t.className)}function hn(e,t){e.classList?yn(t.split(" "),function(t){e.classList.add(t)}):e.className+=" "+t}function fn(t,n){var e=function(e){e.classList?n.split(" ").forEach(function(t){return e.classList.remove(t)}):e.className=e.className.replace(new RegExp("(^|\\b)"+n.split(" ").join("|")+"(\\b|$)","gi")," ")};NodeList.prototype.isPrototypeOf(t)?yn(t,e):e(t)}function pn(t,e,n){if(t.classList)t.classList.toggle(e,n);else{var i=t.className.split(" "),o=i.indexOf(e);!1===n||!0!==n&&0<=o?i.splice(o,1):i.push(e),t.className=i.join(" ")}}function dn(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!1),t.dispatchEvent(n)}function yn(t,e){for(var n=0;n<t.length;n++)e(t[n],n)}function vn(t,e){return getComputedStyle(t)[e]}function mn(t){t.parentNode.removeChild(t)}function gn(t){var e=document.createElement("div");return e.innerHTML=t,e.children[0]}function bn(t,e){var n=[];return yn(t,function(t){e(t)&&n.push(t)}),n}function wn(t){var e=t.getBoundingClientRect();return{top:e.top+window.scrollY,left:e.left+window.scrollX}}function kn(t){var e=t.offsetHeight,n=getComputedStyle(t);return e+=at(n.marginTop)+at(n.marginBottom)}function xn(t){var e=t.offsetWidth,n=getComputedStyle(t);return e+=at(n.marginLeft)+at(n.marginRight)}var Sn=function(){function e(t){ee(this,e),t=t||{},this.eventListens=new Array,this.eventListeners=new Array,this.el=t.el||document.createElement("div"),this.cid=function(t){window.idCounter||(window.idCounter=0);var e=++window.idCounter+"";return t?t+e:e}("c"),this.on=function(t,e){this.eventListeners.push({type:t,handler:e})},this.off=function(e,t){this.eventListeners&&(this.eventListeners=this.eventListeners.filter(function(t){return!(t.type==e&&t.handler)}))}.bind(this),this.trigger=function(e){this.eventListeners&&this.eventListeners.forEach(function(t){"*"!=t.type&&"all"!=t.type&&e!=t.type||t.handler(e,this)})},this.initialize(t)}return re(e,[{key:"pick",value:function(e,t){var n={};return t.forEach(function(t){void 0!==e[t]&&(n[t]=e[t])}),n}},{key:"listenTo",value:function(t,e,n,i,o){"string"!=typeof n&&(o=i,i=n,n=!1),o||(o=this);var r=[t,e,function(t){if(!n||un(t.target,n.replace(".","")))return i.bind(o).apply(void 0,arguments)}.bind(o)];this.eventListens.push(r),t.addEventListener(e,r[2])}},{key:"listenToOnce",value:function(n,i,o,r){r||(r=this);var t=function t(e){return n.removeEventListener(i,t),o.apply(r,arguments)},e=[n,i,t];this.eventListens.push(e),n.addEventListener(i,t)}},{key:"remove",value:function(){this.trigger("removed"),this.eventListens&&this.eventListens.forEach(function(t){t[0].removeEventListener(t[1],t[2])}),delete this.eventListens,delete this.eventListeners,this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el),delete this.el}},{key:"initialize",value:function(){}}]),e}(),_n=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(t){t=t||{},this.options={align:"center bottom",trigger:"click",show_arrow:!0,hide_sm:!1,square:!1,container:document.body,offset:{}},this.options.container=this.options.container||document.body,X(this.options,this.pick(t,te(this.options))),this.content=t.content,this.dropdown=document.createElement("div"),(this.el.dropdown=this).listenTo(this.el,this.options.trigger,this.toggle),this.listenTo(this.el,"mousedown",function(){this.mousedown=!0}),this.listenTo(this.el,"mouseup",function(){this.mousedown=!1}),this.listenTo(this.el,"focus",function(){this.mousedown||this.show()}),this.listenTo(document,"focus",this.outsideClick),this.listenTo(document,this.options.trigger,this.outsideClick),this.listenTo(document,"keyup",this.keyup),this.listenTo(window,"resize",this.resize)}},{key:"render",value:function(){if(hn(this.dropdown,"uniformDropdown-dropdown"),hn(this.dropdown,"absolute"),this.dropdown.style.minWidth=xn(this.el),this.dropdown.innerHTML=this.content.innerHTML?this.content.innerHTML:this.content,this.options.show_arrow){hn(this.dropdown,"has-pointer");var t=document.createElement("div");hn(t,"uniformDropdown-pointer"),this.dropdown.appendChild(t)}return pn(this.dropdown,"square",this.options.square),this.dropdown.style.display="none",this.options.container.appendChild(this.dropdown),fn(this.dropdown.querySelectorAll(".hidden"),"hidden"),this}},{key:"resize",value:function(){this.setPosition();var t=this.options.align.split(" "),e=!1;wn(this.dropdown).top+kn(this.dropdown)>Math.max(document.body.offsetHeight,window.innerHeight)&&(t[1]="top",e=!0),wn(this.dropdown).top<0&&(t[1]="bottom",e=!0),wn(this.dropdown).left<0&&(t[0]="right",e=!0),wn(this.dropdown).left+xn(this.dropdown)>document.body.offsetWidth&&(t[0]="left",e=!0),e&&this.setPosition(t.join(" "))}},{key:"setPosition",value:function(t){var e=(t=t||this.options.align).split(" "),n=Qt(e,2),i=n[0],o=n[1];i=i||"bottom",o=o||"bottom";var r=wn(this.el),s=this.options.container;"static"==getComputedStyle(s).position&&(s=s.offsetParent),s||(s=document.body);var l=wn(s);r={top:r.top-l.top,left:r.left-l.left};var c={};"left"==i?c.right=xn(s)-r.left:"center"==i?c.left=r.left+xn(this.el)/2-xn(this.dropdown)/2:"right"==i?c.left=r.left+xn(this.el):i.includes("%")?c.left=r.left+xn(this.el)*at(i)/100:i.includes("px")&&(c.left=r.left+xn(this.el)+at(i)),"top"==o?c.top=r.top-kn(this.dropdown):"center"==o?c.top=r.top+kn(this.el)/2-kn(this.dropdown)/2:"bottom"==o?c.top=r.top+kn(this.el):o.includes("%")?c.top=r.top+kn(this.el)*at(o)/100:o.includes("px")&&(c.top=r.top+kn(this.el)+at(o)),this.options.offset.left&&(c.left+=at(this.options.offset.left)),this.options.offset.top&&(c.top+=at(this.options.offset.top)),this.options.offset.left&&(c.right-=at(this.options.offset.left)),this.dropdown.style.left="auto",this.dropdown.style.right="auto",fn(this.dropdown,"popover-left popover-right popover-center popover-top popover-bottom"),hn(this.dropdown,"popover-"+o),hn(this.dropdown,"popover-"+i),te(c).forEach(function(t){this.dropdown.style[t]=c[t]+"px"},this)}},{key:"remove",value:function(){Sn.prototype.remove.apply(this,arguments),this.dropdown.parentNode&&this.dropdown.parentNode.removeChild(this.dropdown),delete this.dropdown}},{key:"toggle",value:function(t){un(this.el,"active")&&"click"==t.type?this.hide():this.show()}},{key:"show",value:function(t){t||(t={}),this.options.hide_sm&&window.innerWidth<720||(this.dropdown||this.render(),this.dropdown.style.display="block",hn(this.el,"active"),this.resize(),this.overlay=document.createElement("div"),hn(this.overlay,"uniformOverlay"),document.body.appendChild(this.overlay),window.innerWidth<720&&(this.lastScrollPosition=window.scrollY,hn(document.body,"uniformModal-hideBody")),this.listenTo(this.overlay,"click",this.hide),t.silent||this.trigger("shown"))}},{key:"hide",value:function(t){t||(t={}),this.dropdown&&un(this.el,"active")&&(this.dropdown.style.display="none",fn(this.el,"active"),this.overlay&&this.overlay.parentNode&&this.overlay.parentNode.removeChild(this.overlay),window.innerWidth<720&&(fn(document.body,"uniformModal-hideBody"),window.scrollTo(0,this.lastScrollPosition)),t.silent||this.trigger("hidden"))}},{key:"outsideClick",value:function(t){this.dropdown&&null!==this.dropdown.offsetParent&&t.target!==this.el&&t.target!==this.overlay&&(this.el.contains(t.target)||this.dropdown.contains(t.target)||this.hide())}},{key:"keyup",value:function(t){27==t.which&&this.hide()}}]),e}(),Sn,"Dropdown"),On=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(t){this.listenTo(this.el,"change",this.change)}},{key:"render",value:function(){var t=un(this.el,"uniformRadio")?"uniformRadio":"uniformCheckbox";return this.checkbox=document.createElement("div"),hn(this.checkbox,"".concat(t,"-indicator")),this.el.className&&""!=this.el.className.replace(t,"")&&hn(this.checkbox,this.el.className.replace(t,"")),pn(this.checkbox,"checked",this.el.checked),this.el.parentNode.insertBefore(this.checkbox,this.el.nextSibling),this.listenTo(this.checkbox,"click",this.click),this}},{key:"click",value:function(t){this.el.disabled||(this.el.checked=!this.el.checked,dn(this.el,"change"),t.preventDefault())}},{key:"change",value:function(){pn(this.checkbox,"checked",this.el.checked)}}]),e}(),Sn,"Checkbox"),Tn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(t){this.options={},this.options.klass=t.klass||!1,this.content=t.content,hn(this.el,"uniformModal"),this.listenTo(document,"keyup",this.keyup),this.listenTo(this.el,"click",this.checkCloseButton)}},{key:"keyup",value:function(t){27==t.which&&this.close()}},{key:"render",value:function(){var t="function"==typeof this.content?this.content():this.content;this.highest_z_index=0,this.overlay=document.createElement("div"),hn(this.overlay,"uniformModal-overlay"),this.blur=document.createElement("div"),hn(this.blur,"uniformModal-blur"),this.original_scroll=window.scrollY,this.blur.style.top=0-this.original_scroll+"px",0<document.body.querySelectorAll(".uniformModal").length&&(this.highest_z_index=Math.max(Array.prototype.map.call(document.body.querySelectorAll(".uniformModal"),function(t){return at(vn(t,"zIndex"))})),this.el.style.zIndex=this.highest_z_index+2),this.el.appendChild(this.overlay);for(var e=document.body.children[0];e;){var n=e;e=n.nextElementSibling,n.matches('[blurrable="false"]')||this.blur.appendChild(n)}hn(document.body,"uniformModal-active"),document.body.appendChild(this.blur),document.body.appendChild(this.el);var i=document.createElement("div");hn(i,"uniformModal-container"),t instanceof Node?i.appendChild(t):i.innerHTML=t;var o=document.createElement("div");return hn(o,"uniformModal-close"),i.appendChild(o),this.el.style.top=window.scrollY,this.listenTo(this.overlay,"click",this.close),this.el.appendChild(i),this.options.klass&&hn(i,this.options.klass),t.innerHTML&&dn(t,"rendered"),this.trigger("rendered"),this}},{key:"checkCloseButton",value:function(t){un(t.target,"uniformModal-close")&&this.close()}},{key:"close",value:function(){fn(document.querySelectorAll("uniformModal-active"),"uniformModal-active");for(var t=this.blur.children,e=t.length,n=0;n<e;n++)document.body.appendChild(t[0]);this.blur.parentNode&&this.blur.parentNode.removeChild(this.blur),window.scrollTo(0,this.original_scroll),this.trigger("closed"),this.remove()}},{key:"remove",value:function(){Sn.prototype.remove.apply(this,arguments),this.overlay&&this.overlay.parentNode&&this.overlay.parentNode.removeChild(this.overlay),delete this.overlay}}]),e}(),Sn,"Modal"),En='\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" viewBox="0 0 32 32">\n<path d="M28.998 8.531l-2.134-2.134c-0.394-0.393-1.030-0.393-1.423 0l-12.795 12.795-6.086-6.13c-0.393-0.393-1.029-0.393-1.423 0l-2.134 2.134c-0.393 0.394-0.393 1.030 0 1.423l8.924 8.984c0.393 0.393 1.030 0.393 1.423 0l15.648-15.649c0.393-0.392 0.393-1.030 0-1.423z"></path>\n</svg>\n'.trim(),Pn='\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" viewBox="0 0 20 20">\n<path d="M13.418 7.601c0.271-0.268 0.709-0.268 0.979 0s0.271 0.701 0 0.969l-3.907 3.83c-0.271 0.268-0.709 0.268-0.979 0l-3.908-3.83c-0.27-0.268-0.27-0.701 0-0.969s0.708-0.268 0.979 0l3.418 3.14 3.418-3.14z"></path>\n</svg>\n'.trim(),jn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.options={label:!1,class:"",showAll:function(t){fn(t.querySelectorAll("button.hide"),"hide");var e=t.querySelector(".uniformSelect-show-all");return e.parentNode.removeChild(e),!1},limit:8,container:document.body},X(this.options,this.pick(t,te(this.options))),this.listenTo(this.el,"change",this.updateSelect),this.listenTo(this.el,"close",this.hideOptions),this.listenTo(this.el,"revealed",this.resize),(this.el.uniformSelect=this).listenTo(window,"resize",this.resize),this.listenTo(window,"scroll",this.updatePosition),this.listenTo(document,"click",this.outsideClick),this.listenTo(document,"keyup",this.keyup),this.activeIcon=document.createElement("span"),hn(this.activeIcon,"uniformSelect-option-icon"),this.activeIcon.innerHTML=En}},{key:"outsideClick",value:function(t){this.showing&&t.target!==this.select_options&&(this.container.contains(t.target)||this.select_options.contains(t.target)||this.hideOptions())}},{key:"keyup",value:function(t){27===t.which&&this.hideOptions()}},{key:"render",value:function(){this.container=document.createElement("div"),hn(this.container,"uniformSelect-container"),this.edit_button=gn("<button type='button' class='uniformSelect-edit uniformInput outline block ".concat(this.options.class,'\'><span class="text-js"></span><span class="uniformSelect-edit-icon">').concat(Pn,"</span></button>")),this.container.appendChild(this.edit_button),this.el.name&&hn(this.container,this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g,"-")),this.el.style.display="none",this.el.insertAdjacentElement("beforebegin",this.container),this.updateSelect(),this.resize(),this.listenTo(this.edit_button,"click",this.showOptions),this.listenTo(this.edit_button,"click",".uniformSelect-remove",this.removeSelection)}},{key:"resize",value:function(){for(var t=[],e=this.edit_button.children.length,n=0;n<e;n++)t.push(this.edit_button.children[0]),this.edit_button.children[0].parentNode.removeChild(this.edit_button.children[0]);this.edit_button.innerHTML="",this.edit_button.style.width="auto",this.edit_button.style.maxWidth="100%",this.edit_button.style.minWidth=this.container.offsetWidth+"px",yn(t,function(t){this.edit_button.appendChild(t)}.bind(this)),void 0!==this.select_options&&(window.innerWidth<720||(this.select_options.style.position="absolute",this.select_options.style.top=wn(this.container).top+this.container.offsetHeight+"px",this.select_options.style.left=wn(this.container).left+1+"px",this.select_options.style.minWidth=this.container.offsetWidth-1+"px"))}},{key:"renderOptions",value:function(){this.select_options=gn("<div class='uniformSelect-options'>"),this.options.label&&this.select_options.append('<div class="uniformSelect-label hide show-sm margin-bottom text-bold">'.concat(this.options.label,"</div>")),this.el.name&&hn(this.select_options,this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g,"-")),this.select_options.style.fontSize=vn(this.el,"font-size"),this.select_options.style.display="none",this.options.container.appendChild(this.select_options),yn(this.el.querySelectorAll("option"),function(t,e){var n=gn("<button type='button' class='uniformSelect-option block outline text-left'>");n.option=t,n.textContent=t.textContent,n.value=t.value,""==n.textContent&&(n.innerHTML="<span class='text-italic text-muted'>None</span>"),t.selected?(hn(n,"active"),n.append(this.activeIcon.cloneNode(!0))):this.options.limit&&e>this.options.limit&&hn(n,"hide"),this.select_options.append(n),this.listenTo(n,"click",this.selectOption)}.bind(this));var t=gn('<div class="uniformSelect-options-actions"></div>');if(this.options.limit&&this.el.querySelectorAll("option").length>this.options.limit){var e=gn("<button type='button' class='uniformSelect-show-all outline blue' style='display: block; border: none'>Show All</button>");this.listenTo(e,"click",function(t){dn(this.el,"show_all"),this.options.showAll&&this.options.showAll(this.select_options),t.preventDefault(),t.stopPropagation()}),t.appendChild(e)}if(this.el.multiple){var n=gn("<button type='button' class='uniformSelect-done block outline blue'>Done</button>");this.listenTo(n,"click",this.hideOptions),t.appendChild(n)}""!==t.innerHTML&&this.select_options.appendChild(t),dn(this.el,"rendered")}},{key:"hideOptions",value:function(){void 0!==this.select_options&&(this.showing=!1,this.select_options.style.display="none",fn(this.select_options,"fixed"),fn(this.edit_button,"active"),fn(document.body,"uniformModal-hideBody"),this.lastScrollPosition&&window.innerWidth<720&&window.scrollTo(0,this.lastScrollPosition),dn(this.el,"hidden:options"))}},{key:"showOptions",value:function(){if(this.showing)return this.hideOptions(),!1;this.showing=!0,this.select_options||this.renderOptions(),this.resize(),this.select_options.style.display="block",hn(this.edit_button,"active"),this.lastScrollPosition=window.scrollY,this.updatePosition(),hn(document.body,"uniformModal-hideBody"),this.options.container==document.body&&fn(document.body,"uniformModal-hideBody")}},{key:"selectOption",value:function(t){this.el.multiple||(yn(bn(this.el.querySelectorAll("option"),function(t){return t.selected}),function(t){t.selected=!1}),yn(this.select_options.querySelectorAll(".uniformSelect-option.active .uniformSelect-option-icon"),mn),fn(this.select_options.querySelectorAll(".uniformSelect-option.active"),"active")),pn(t.currentTarget,"active"),t.currentTarget.option.selected=un(t.currentTarget,"active"),this.updateOptions(),dn(this.el,"change")}},{key:"updateSelect",value:function(){this.el.multiple||this.hideOptions();var t=function(t,e){for(var n=[],i=0;i<t.length;i++)n.push(e(t[i],i));return n}(bn(this.el.querySelectorAll("option"),function(t){return t.selected}),function(t){return this.el.multiple?'<span class="uniformSelect-selection">'.concat(t.textContent,'<span class="uniformSelect-remove"></span></span>'):t.textContent}.bind(this)).join(" ");""==t&&(t="&nbsp;"),this.edit_button.querySelector(".text-js").innerHTML=t}},{key:"updateOptions",value:function(){yn(this.select_options.querySelectorAll("button"),function(t){t.option&&(pn(t,"active",t.option.selected),un(t,"active")?t.append(this.activeIcon.cloneNode(!0)):yn(t.querySelectorAll(".uniformSelect-option-icon"),mn))}.bind(this))}},{key:"updatePosition",value:function(){if(this.select_options){var t=bn(function(t){var e=[];for(t=t.parentElement;t;)e.push(t),t=t.parentElement;return e}(this.container),function(t){return"fixed"==vn(t,"position")});un(this.select_options,"fixed")?0==t.length&&(this.select_options.style.position="absolute",this.select_options.style.top=wn(this.container).top+this.container.offsetHeight+"px",fn(this.select_options,"fixed")):0<t.length&&(720<window.innerWidth&&(this.lastScrollPosition=!1),this.select_options.style.position="fixed",this.select_options.style.top=wn(this.container).top+this.container.offsetHeight+"px",this.select_options.style.left=wn(this.container).left+"px",hn(this.select_options,"fixed"))}}},{key:"removeSelection",value:function(e){e.preventDefault();var t=bn(this.el.querySelectorAll("option"),function(t){return t.innerText.trim()==e.target.parentNode.innerText.trim()})[0];t&&(t.selected=!1,this.updatePosition(),dn(this.el,"change"))}}]),e}(),Sn,"Select"),Cn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(){this.label=this.el.querySelector("label"),this.input=this.el.querySelector("#"+this.label.getAttribute("for")),this.startingHeight,this.listenTo(this.input,"focus",this.activate),this.listenTo(this.input,"blur",this.deactivate),this.listenTo(this.input,"revealed",this.render)}},{key:"render",value:function(){if(null!==this.input.offsetParent&&!un(this.el,"enabled")){var t,e=at(vn(this.input,"paddingBottom"));this.startingHeight=this.input.offsetHeight,hn(this.el,"enabled"),hn(this.el,"inactive"),this.input.style.paddingTop=e+e/2+"px",this.input.style.paddingBottom=e-e/2-2+"px",this.label.style.position="absolute",this.label.style.top=0,this.label.style.left=this.label.offsetLeft,this.label.style.paddingLeft=vn(this.input,"paddingLeft"),this.label.style.height=this.startingHeight,this.label.style.lineHeight=this.startingHeight+"px",t=this.input,document.activeElement===t&&this.activate(),void 0!==this.input.value&&""!=this.input.value&&this.activate()}}},{key:"activate",value:function(t){void 0!==t&&hn(this.el,"active"),un(this.el,"float")||(hn(this.el,"float"),fn(this.el,"inactive"),this.label.style.lineHeight=this.startingHeight/2+"px")}},{key:"deactivate",value:function(t){void 0!==t&&fn(this.el,"active"),""==this.input.value&&(fn(this.el,"float"),hn(this.el,"inactive"),this.label.style.lineHeight=this.startingHeight+"px")}}]),e}(),Sn,"FloatingLabel"),Ln=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(){this.listenTo(window,"resize",this.resize),dn(window,"resize")}},{key:"resize",value:function(){var t=this.el.offsetWidth;720<t&&!un(this.el,"md-size")?(hn(this.el,"md-size"),dn(window,"resized-md")):t<720&&un(this.el,"md-size")&&fn(this.el,"md-size"),1080<t&&!un(this.el,"lg-size")?(hn(this.el,"lg-size"),dn(window,"resized-lg")):t<1080&&un(this.el,"lg-size")&&fn(this.el,"lg-size"),1440<t&&!un(this.el,"xl-size")?(hn(this.el,"xl-size"),dn(window,"resized-xl")):t<1440&&un(this.el,"xl-size")&&fn(this.el,"xl-size"),t<720&&!un(this.el,"sm-size")?(hn(this.el,"sm-size"),dn(window,"resized-sm")):720<t&&un(this.el,"sm-size")&&fn(this.el,"sm-size")}}]),e}(),Sn,"Resizer"),zn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(t){var e=this;this.showing=!1,t=t||{},this.options={zIndex:2,container:document.body,align:"center bottom",anchor:document.body,content:"needs content",offset:{left:0,top:0}},X(this.options,this.pick(t,te(this.options))),this.listenTo(document,"click",this.checkFocus),this.listenTo(document,"focusin",this.checkFocus),this.listenTo(document,"keyup",this.checkEscape),this.listenTo(window,"resize",function(){e.resize.bind(e)()}),"string"==typeof this.options.container&&(this.options.container=function(t,e){if(t.closest)return t.closest(e);for(;t;){if(Element.prototype.matches?t.matches(e):t.msMatchesSelector(e))return t;t=t.parentElement}}(this.options.anchor,this.options.container),this.options.container=this.options.container||document.body)}},{key:"render",value:function(){return this.showing=!0,this.el.style.position="absolute",this.el.style.zIndex=this.options.zIndex,this.options.content instanceof Node?this.el.appendChild(this.options.content):this.el.innerHTML=this.options.content,this.options.container.appendChild(this.el),this.resize(),this.trigger("shown"),this}},{key:"resize",value:function(){this.setPosition();var t=this.el.getBoundingClientRect(),e=document.body.getBoundingClientRect(),n=window.innerHeight;if(window.innerWidth,t.bottom>e.bottom&&t.bottom>n){var i=e.bottom-t.bottom;null!=this.el.style.top&&(this.el.style.top=at(this.el.style.top)-i+"px"),null!=this.el.style.bottom&&(this.el.style.bottom=at(this.el.style.bottom)+i+"px")}if(t.top<e.top){var o=e.top-t.top;null!=this.el.style.top&&(this.el.style.top=at(this.el.style.top)+o+"px"),null!=this.el.style.bottom&&(this.el.style.bottom=at(this.el.style.bottom)-o+"px")}if(t.left<e.left){var r=e.left-t.left;null!=this.el.style.left&&(this.el.style.left=at(this.el.style.left)+r+"px"),null!=this.el.style.right&&(this.el.style.right=at(this.el.style.right)-r+"px")}if(t.right>e.right){var s=e.right-t.right;null!=this.el.style.left&&(this.el.style.left=at(this.el.style.left)+s+"px"),null!=this.el.style.right&&(this.el.style.right=at(this.el.style.right)-s+"px")}}},{key:"setPosition",value:function(t){var e=(t=t||this.options.align).split(" "),n=Qt(e,2),i=n[0],o=n[1];i=i||"bottom";var r=wn(this.options.anchor),s=this.options.container;"static"==getComputedStyle(s).position&&(s=s.offsetParent),s||(s=document.body);var l=wn(s);r={top:r.top-l.top,left:r.left-l.left};var c={};if("left"==i?c.right=xn(s)-r.left:"center"==i?c.left=r.left+xn(this.options.anchor)/2-xn(this.el)/2:"right"==i?c.left=r.left+xn(this.options.anchor):i.includes("px")&&(c.left=r.left+xn(this.options.anchor)+at(i)),"top"==o){var a=kn(s);s==document.body&&"static"==getComputedStyle(s).position?a=window.innerHeight:s==document.body&&(a=Math.max(a,document.body.clientHeight)),c.bottom=a-r.top}else"center"==o?(c.top=r.top+kn(this.options.anchor)/2,c.transform="translateY(-50%)"):"bottom"==o?c.top=r.top+kn(this.options.anchor):o.includes("px")&&(c.top=r.top+kn(this.options.anchor)+at(o));this.options.offset.left&&(c.left+=at(this.options.offset.left)),this.options.offset.left&&(c.right-=at(this.options.offset.left)),this.options.offset.top&&(c.top+=at(this.options.offset.top)),this.options.offset.top&&(c.bottom-=at(this.options.offset.top)),this.el.style.left=null,this.el.style.right=null,this.el.style.top=null,this.el.style.bottom=null,this.el.style.transform=null,fn(this.el,"popover-left popover-right popover-center popover-top popover-bottom"),hn(this.el,"popover-"+o),hn(this.el,"popover-"+i),te(c).forEach(function(t){this.el.style[t]=c[t]+("transform"!=t?"px":"")},this)}},{key:"checkFocus",value:function(t){t.defaultPrevented||this.showing&&t.target!==this.el&&t.target!=this.options.anchor&&(this.el.contains(t.target)||this.options.anchor.contains(t.target)||this.hide())}},{key:"checkEscape",value:function(t){27==t.which&&this.hide()}},{key:"isHidden",value:function(){return!this.showing}},{key:"hide",value:function(t){t=t||{},this.showing&&(this.el.style.display="none",!(this.showing=!1)!==t.silent&&this.trigger("hidden"))}},{key:"show",value:function(){this.showing||(this.el.style.display="block",this.showing=!0,this.trigger("shown"))}},{key:"toggle",value:function(t){(t=t||this.showing)?this.hide():this.show()}}]),e}(),Sn,"Popover"),Mn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return an(e,Sn),re(e,[{key:"initialize",value:function(t){t=t||{},this.options={align:"top",container:!1},X(this.options,this.pick(t,te(this.options))),this.enabled=!0,this.message=t.message,(t.el.tooltip=this).listenTo(this.el,"mouseenter",this.show),this.listenTo(this.el,"mouseleave",this.hide)}},{key:"render",value:function(){return this}},{key:"show",value:function(){this.enabled&&(clearTimeout(this.hide_timeout),this.popup?this.popup.show():this.popup=new zn({content:"<div class=\"uniformTooltip-popup\">\n <div class='uniformTooltip-pointer'></div>\n ".concat(this.message,"\n </div>"),anchor:this.el,align:"top"==this.options.align?"center top":"center 100%",offset:{top:-7},container:this.options.container||document.body}).render())}},{key:"hide",value:function(){var t=this;this.hide_timeout=setTimeout(function(){t.popup.remove(),delete t.popup},300)}},{key:"disable",value:function(){this.enabled=!1}},{key:"enabled",value:function(){this.enabled=!0}}]),e}(),Sn,"Tooltip"),An=Object.freeze({Dropdown:_n,Checkbox:On,Modal:Tn,Select:jn,FloatingLabel:Cn,Resizer:Ln,Tooltip:Mn,Popover:zn});window.Uniform=An,$&&($.fn.uniformDropdown=function(){return this.each(function(){var n=$(this),t={el:this};void 0!==n.data("dropdown-align")&&(t.align=n.data("dropdown-align")),void 0!==n.data("dropdown-trigger")&&(t.trigger=n.data("dropdown-trigger")),void 0!==n.data("dropdown-show_arrow")&&(t.show_arrow=n.data("dropdown-show_arrow")),void 0!==n.data("dropdown-square")&&(t.square=n.data("dropdown-square")),void 0!==n.data("dropdown-hide_sm")&&(t.hide_sm=n.data("dropdown-hide_sm")),void 0!==n.data("dropdown-content")&&(t.content="<div class='pad'>".concat(n.data("dropdown-content"),"</div>")),void 0!==n.data("dropdown-target")&&(t.content=$(n.data("dropdown-target"))[0]);var e=new _n(t);e.on("*",function(t,e){n.trigger("dropdown-"+t,e)}),e.render()})},$.fn.uniformCheckbox=function(){return this.each(function(){$(this);new On({el:this}).render()})},$.fn.uniformRadio=$.fn.uniformCheckbox,$.fn.uniformFloatingLabel=function(){return this.each(function(){new Cn({el:this}).render()})},$.fn.uniformModal=function(){return this.click(function(){var n=$(this),t={klass:n.data("modal-klass"),content:n.data("modal-content")};if(n.data("modal-target")){var e=$(n.data("modal-target")).clone();e.removeClass("hidden"),t.content=e[0]}new Tn(t).render().on("*",function(t,e){n.trigger("modal-"+t,e)})})},$.fn.uniformResizer=function(){return this.each(function(){new Ln({el:this})})},$.fn.uniformSelect=function(){return this.each(function(){var t={el:this};X(t,$(this).data()),new jn(t).render()})},$.fn.uniformTooltip=function(){return this.each(function(){var n=$(this),t=new Mn({message:n.data("tooltip-message"),container:n.data("tooltip-container"),el:this});t.on("*",function(t,e){n.trigger("tooltip-"+t,e)}),t.render()})},$.fn.uniformTristate=function(){return this.each(function(){var i=$(this);function e(t){if(0==t.length)i.addClass("-null"),$(i.find("input")[1]).prop("checked",!0);else{var e=t.index(),n=0==e?"-true":1==e?"-null":"-false";i.removeClass("-true -null -false"),i.addClass(n)}}i.on("change","input",function(t){e($(t.currentTarget))}),e(i.find("input:checked")),i.on("blur","input",function(t){i.removeClass("-focus")}),i.on("focus","input",function(t){i.addClass("-focus")})})})}();
1
+ !function(){"use strict";function t(t,e){return t(e={exports:{}},e.exports),e.exports}var v=t(function(t){var e=t.exports="undefined"!=typeof window&&window.Math==Math?window:"undefined"!=typeof self&&self.Math==Math?self:Function("return this")();"number"==typeof __g&&(__g=e)}),y=t(function(t){var e=t.exports={version:"2.5.7"};"number"==typeof __e&&(__e=e)}),m=(y.version,function(i,o,t){if(function(t){if("function"!=typeof t)throw TypeError(t+" is not a function!")}(i),void 0===o)return i;switch(t){case 1:return function(t){return i.call(o,t)};case 2:return function(t,e){return i.call(o,t,e)};case 3:return function(t,e,n){return i.call(o,t,e,n)}}return function(){return i.apply(o,arguments)}}),u=function(t){return"object"==typeof t?null!==t:"function"==typeof t},s=function(t){if(!u(t))throw TypeError(t+" is not an object!");return t},c=function(t){try{return!!t()}catch(t){return!0}},i=!c(function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}),e=v.document,n=u(e)&&u(e.createElement),o=function(t){return n?e.createElement(t):{}},r=!i&&!c(function(){return 7!=Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}),l=function(t,e){if(!u(t))return t;var n,i;if(e&&"function"==typeof(n=t.toString)&&!u(i=n.call(t)))return i;if("function"==typeof(n=t.valueOf)&&!u(i=n.call(t)))return i;if(!e&&"function"==typeof(n=t.toString)&&!u(i=n.call(t)))return i;throw TypeError("Can't convert object to primitive value")},a=Object.defineProperty,h={f:i?Object.defineProperty:function(t,e,n){if(s(t),e=l(e,!0),s(n),r)try{return a(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported!");return"value"in n&&(t[e]=n.value),t}},_=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}},x=i?function(t,e,n){return h.f(t,e,_(1,n))}:function(t,e,n){return t[e]=n,t},f={}.hasOwnProperty,b=function(t,e){return f.call(t,e)},g="prototype",w=function(t,e,n){var i,o,r,s=t&w.F,l=t&w.G,u=t&w.S,c=t&w.P,a=t&w.B,h=t&w.W,f=l?y:y[e]||(y[e]={}),p=f[g],d=l?v:u?v[e]:(v[e]||{})[g];for(i in l&&(n=e),n)(o=!s&&d&&void 0!==d[i])&&b(f,i)||(r=o?d[i]:n[i],f[i]=l&&"function"!=typeof d[i]?n[i]:a&&o?m(r,v):h&&d[i]==r?function(i){var t=function(t,e,n){if(this instanceof i){switch(arguments.length){case 0:return new i;case 1:return new i(t);case 2:return new i(t,e)}return new i(t,e,n)}return i.apply(this,arguments)};return t[g]=i[g],t}(r):c&&"function"==typeof r?m(Function.call,r):r,c&&((f.virtual||(f.virtual={}))[i]=r,t&w.R&&p&&!p[i]&&x(p,i,r)))};w.F=1,w.G=2,w.S=4,w.P=8,w.B=16,w.W=32,w.U=64,w.R=128;var p,S=w,d={}.toString,k=function(t){return d.call(t).slice(8,-1)},O=Object("z").propertyIsEnumerable(0)?Object:function(t){return"String"==k(t)?t.split(""):Object(t)},T=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t},j=function(t){return O(T(t))},E=Math.ceil,L=Math.floor,C=function(t){return isNaN(t=+t)?0:(0<t?L:E)(t)},P=Math.min,z=Math.max,M=Math.min,A=t(function(t){var e="__core-js_shared__",n=v[e]||(v[e]={});(t.exports=function(t,e){return n[t]||(n[t]=void 0!==e?e:{})})("versions",[]).push({version:y.version,mode:"pure",copyright:"© 2018 Denis Pushkarev (zloirock.ru)"})}),N=0,H=Math.random(),q=function(t){return"Symbol(".concat(void 0===t?"":t,")_",(++N+H).toString(36))},I=A("keys"),F=function(t){return I[t]||(I[t]=q(t))},R=(p=!1,function(t,e,n){var i,o,r,s,l=j(t),u=0<(i=l.length)?P(C(i),9007199254740991):0,c=(r=u,(o=C(o=n))<0?z(o+r,0):M(o,r));if(p&&e!=e){for(;c<u;)if((s=l[c++])!=s)return!0}else for(;c<u;c++)if((p||c in l)&&l[c]===e)return p||c||0;return!p&&-1}),D=F("IE_PROTO"),W=function(t,e){var n,i=j(t),o=0,r=[];for(n in i)n!=D&&b(i,n)&&r.push(n);for(;e.length>o;)b(i,n=e[o++])&&(~R(r,n)||r.push(n));return r},B="constructor,hasOwnProperty,isPrototypeOf,propertyIsEnumerable,toLocaleString,toString,valueOf".split(","),G=Object.keys||function(t){return W(t,B)},Y={f:Object.getOwnPropertySymbols},V={f:{}.propertyIsEnumerable},K=function(t){return Object(T(t))},J=Object.assign,U=!J||c(function(){var t={},e={},n=Symbol(),i="abcdefghijklmnopqrst";return t[n]=7,i.split("").forEach(function(t){e[t]=t}),7!=J({},t)[n]||Object.keys(J({},e)).join("")!=i})?function(t,e){for(var n=K(t),i=arguments.length,o=1,r=Y.f,s=V.f;o<i;)for(var l,u=O(arguments[o++]),c=r?G(u).concat(r(u)):G(u),a=c.length,h=0;h<a;)s.call(u,l=c[h++])&&(n[l]=u[l]);return n}:J;S(S.S+S.F,"Object",{assign:U});var X=y.Object.assign,Q="\t\n\v\f\r   ᠎              \u2028\u2029\ufeff",Z="["+Q+"]",tt=RegExp("^"+Z+Z+"*"),et=RegExp(Z+Z+"*$"),nt=function(t,e,n){var i={},o=c(function(){return!!Q[t]()||"​…"!="​…"[t]()}),r=i[t]=o?e(it):Q[t];n&&(i[n]=r),S(S.P+S.F*o,"String",i)},it=nt.trim=function(t,e){return t=String(T(t)),1&e&&(t=t.replace(tt,"")),2&e&&(t=t.replace(et,"")),t},ot=nt,rt=v.parseInt,st=ot.trim,lt=/^[-+]?0[xX]/,ut=8!==rt(Q+"08")||22!==rt(Q+"0x16")?function(t,e){var n=st(String(t),3);return rt(n,e>>>0||(lt.test(n)?16:10))}:rt;S(S.G+S.F*(parseInt!=ut),{parseInt:ut});var ct=y.parseInt,at=Array.isArray||function(t){return"Array"==k(t)};S(S.S,"Array",{isArray:at});var ht=y.Array.isArray;var ft=function(t){if(ht(t))return t},pt=function(t,e){return{value:e,done:!!t}},dt={},vt=x,yt=i?Object.defineProperties:function(t,e){s(t);for(var n,i=G(e),o=i.length,r=0;r<o;)h.f(t,n=i[r++],e[n]);return t},mt=v.document,bt=mt&&mt.documentElement,gt=F("IE_PROTO"),wt=function(){},kt="prototype",_t=function(){var t,e=o("iframe"),n=B.length;for(e.style.display="none",bt.appendChild(e),e.src="javascript:",(t=e.contentWindow.document).open(),t.write("<script>document.F=Object<\/script>"),t.close(),_t=t.F;n--;)delete _t[kt][B[n]];return _t()},xt=Object.create||function(t,e){var n;return null!==t?(wt[kt]=s(t),n=new wt,wt[kt]=null,n[gt]=t):n=_t(),void 0===e?n:yt(n,e)},St=t(function(t){var e=A("wks"),n=v.Symbol,i="function"==typeof n;(t.exports=function(t){return e[t]||(e[t]=i&&n[t]||(i?n:q)("Symbol."+t))}).store=e}),Ot=h.f,Tt=St("toStringTag"),jt=function(t,e,n){t&&!b(t=n?t:t.prototype,Tt)&&Ot(t,Tt,{configurable:!0,value:e})},Et={};x(Et,St("iterator"),function(){return this});var Lt=F("IE_PROTO"),Ct=Object.prototype,Pt=Object.getPrototypeOf||function(t){return t=K(t),b(t,Lt)?t[Lt]:"function"==typeof t.constructor&&t instanceof t.constructor?t.constructor.prototype:t instanceof Object?Ct:null},zt=St("iterator"),Mt=!([].keys&&"next"in[].keys()),At="values",Nt=function(){return this},Ht=function(t,e,n,i,o,r,s){var l,u,c;u=e,c=i,(l=n).prototype=xt(Et,{next:_(1,c)}),jt(l,u+" Iterator");var a,h,f,p=function(t){if(!Mt&&t in m)return m[t];switch(t){case"keys":case At:return function(){return new n(this,t)}}return function(){return new n(this,t)}},d=e+" Iterator",v=o==At,y=!1,m=t.prototype,b=m[zt]||m["@@iterator"]||o&&m[o],g=b||p(o),w=o?v?p("entries"):g:void 0,k="Array"==e&&m.entries||b;if(k&&(f=Pt(k.call(new t)))!==Object.prototype&&f.next&&jt(f,d,!0),v&&b&&b.name!==At&&(y=!0,g=function(){return b.call(this)}),s&&(Mt||y||!m[zt])&&x(m,zt,g),dt[e]=g,dt[d]=Nt,o)if(a={values:v?g:p(At),keys:r?g:p("keys"),entries:w},s)for(h in a)h in m||vt(m,h,a[h]);else S(S.P+S.F*(Mt||y),e,a);return a};Ht(Array,"Array",function(t,e){this._t=j(t),this._i=0,this._k=e},function(){var t=this._t,e=this._k,n=this._i++;return!t||n>=t.length?(this._t=void 0,pt(1)):pt(0,"keys"==e?n:"values"==e?t[n]:[n,t[n]])},"values");dt.Arguments=dt.Array;for(var qt=St("toStringTag"),It="CSSRuleList,CSSStyleDeclaration,CSSValueList,ClientRectList,DOMRectList,DOMStringList,DOMTokenList,DataTransferItemList,FileList,HTMLAllCollection,HTMLCollection,HTMLFormElement,HTMLSelectElement,MediaList,MimeTypeArray,NamedNodeMap,NodeList,PaintRequestList,Plugin,PluginArray,SVGLengthList,SVGNumberList,SVGPathSegList,SVGPointList,SVGStringList,SVGTransformList,SourceBufferList,StyleSheetList,TextTrackCueList,TextTrackList,TouchList".split(","),Ft=0;Ft<It.length;Ft++){var Rt=It[Ft],$t=v[Rt],Dt=$t&&$t.prototype;Dt&&!Dt[qt]&&x(Dt,qt,Rt),dt[Rt]=dt.Array}var Wt,Bt=(Wt=!0,function(t,e){var n,i,o=String(T(t)),r=C(e),s=o.length;return r<0||s<=r?Wt?"":void 0:(n=o.charCodeAt(r))<55296||56319<n||r+1===s||(i=o.charCodeAt(r+1))<56320||57343<i?Wt?o.charAt(r):n:Wt?o.slice(r,r+2):i-56320+(n-55296<<10)+65536});Ht(String,"String",function(t){this._t=String(t),this._i=0},function(){var t,e=this._t,n=this._i;return n>=e.length?{value:void 0,done:!0}:(t=Bt(e,n),this._i+=t.length,{value:t,done:!1})});var Gt=St("toStringTag"),Yt="Arguments"==k(function(){return arguments}()),Vt=St("iterator"),Kt=y.getIteratorMethod=function(t){if(null!=t)return t[Vt]||t["@@iterator"]||dt[(e=t,void 0===e?"Undefined":null===e?"Null":"string"==typeof(i=function(t,e){try{return t[e]}catch(t){}}(n=Object(e),Gt))?i:Yt?k(n):"Object"==(o=k(n))&&"function"==typeof n.callee?"Arguments":o)];var e,n,i,o},Jt=y.getIterator=function(t){var e=Kt(t);if("function"!=typeof e)throw TypeError(t+" is not iterable!");return s(e.call(t))};var Ut=function(t,e){var n=[],i=!0,o=!1,r=void 0;try{for(var s,l=Jt(t);!(i=(s=l.next()).done)&&(n.push(s.value),!e||n.length!==e);i=!0);}catch(t){o=!0,r=t}finally{try{i||null==l.return||l.return()}finally{if(o)throw r}}return n};var Xt=function(){throw new TypeError("Invalid attempt to destructure non-iterable instance")};var Qt=function(t,e){return ft(t)||Ut(t,e)||Xt()},Zt=function(t,e){var n=(y.Object||{})[t]||Object[t],i={};i[t]=e(n),S(S.S+S.F*c(function(){n(1)}),"Object",i)};Zt("keys",function(){return function(t){return G(K(t))}});var te=y.Object.keys;var ee=function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")};S(S.S+S.F*!i,"Object",{defineProperty:h.f});var ne=y.Object,ie=function(t,e,n){return ne.defineProperty(t,e,n)};function oe(t,e){for(var n=0;n<e.length;n++){var i=e[n];i.enumerable=i.enumerable||!1,i.configurable=!0,"value"in i&&(i.writable=!0),ie(t,i.key,i)}}var re=function(t,e,n){return e&&oe(t.prototype,e),n&&oe(t,n),t},se={f:St},le=se.f("iterator"),ue=t(function(t){var n=q("meta"),e=h.f,i=0,o=Object.isExtensible||function(){return!0},r=!c(function(){return o(Object.preventExtensions({}))}),s=function(t){e(t,n,{value:{i:"O"+ ++i,w:{}}})},l=t.exports={KEY:n,NEED:!1,fastKey:function(t,e){if(!u(t))return"symbol"==typeof t?t:("string"==typeof t?"S":"P")+t;if(!b(t,n)){if(!o(t))return"F";if(!e)return"E";s(t)}return t[n].i},getWeak:function(t,e){if(!b(t,n)){if(!o(t))return!0;if(!e)return!1;s(t)}return t[n].w},onFreeze:function(t){return r&&l.NEED&&o(t)&&!b(t,n)&&s(t),t}}}),ce=(ue.KEY,ue.NEED,ue.fastKey,ue.getWeak,ue.onFreeze,h.f),ae=function(t){var e=y.Symbol||(y.Symbol={});"_"==t.charAt(0)||t in e||ce(e,t,{value:se.f(t)})},he=B.concat("length","prototype"),fe={f:Object.getOwnPropertyNames||function(t){return W(t,he)}},pe=fe.f,de={}.toString,ve="object"==typeof window&&window&&Object.getOwnPropertyNames?Object.getOwnPropertyNames(window):[],ye={f:function(t){return ve&&"[object Window]"==de.call(t)?function(t){try{return pe(t)}catch(t){return ve.slice()}}(t):pe(j(t))}},me=Object.getOwnPropertyDescriptor,be={f:i?me:function(t,e){if(t=j(t),e=l(e,!0),r)try{return me(t,e)}catch(t){}if(b(t,e))return _(!V.f.call(t,e),t[e])}},ge=ue.KEY,we=be.f,ke=h.f,_e=ye.f,xe=v.Symbol,Se=v.JSON,Oe=Se&&Se.stringify,Te="prototype",je=St("_hidden"),Ee=St("toPrimitive"),Le={}.propertyIsEnumerable,Ce=A("symbol-registry"),Pe=A("symbols"),ze=A("op-symbols"),Me=Object[Te],Ae="function"==typeof xe,Ne=v.QObject,He=!Ne||!Ne[Te]||!Ne[Te].findChild,qe=i&&c(function(){return 7!=xt(ke({},"a",{get:function(){return ke(this,"a",{value:7}).a}})).a})?function(t,e,n){var i=we(Me,e);i&&delete Me[e],ke(t,e,n),i&&t!==Me&&ke(Me,e,i)}:ke,Ie=function(t){var e=Pe[t]=xt(xe[Te]);return e._k=t,e},Fe=Ae&&"symbol"==typeof xe.iterator?function(t){return"symbol"==typeof t}:function(t){return t instanceof xe},Re=function(t,e,n){return t===Me&&Re(ze,e,n),s(t),e=l(e,!0),s(n),b(Pe,e)?(n.enumerable?(b(t,je)&&t[je][e]&&(t[je][e]=!1),n=xt(n,{enumerable:_(0,!1)})):(b(t,je)||ke(t,je,_(1,{})),t[je][e]=!0),qe(t,e,n)):ke(t,e,n)},$e=function(t,e){s(t);for(var n,i=function(t){var e=G(t),n=Y.f;if(n)for(var i,o=n(t),r=V.f,s=0;o.length>s;)r.call(t,i=o[s++])&&e.push(i);return e}(e=j(e)),o=0,r=i.length;o<r;)Re(t,n=i[o++],e[n]);return t},De=function(t){var e=Le.call(this,t=l(t,!0));return!(this===Me&&b(Pe,t)&&!b(ze,t))&&(!(e||!b(this,t)||!b(Pe,t)||b(this,je)&&this[je][t])||e)},We=function(t,e){if(t=j(t),e=l(e,!0),t!==Me||!b(Pe,e)||b(ze,e)){var n=we(t,e);return!n||!b(Pe,e)||b(t,je)&&t[je][e]||(n.enumerable=!0),n}},Be=function(t){for(var e,n=_e(j(t)),i=[],o=0;n.length>o;)b(Pe,e=n[o++])||e==je||e==ge||i.push(e);return i},Ge=function(t){for(var e,n=t===Me,i=_e(n?ze:j(t)),o=[],r=0;i.length>r;)!b(Pe,e=i[r++])||n&&!b(Me,e)||o.push(Pe[e]);return o};Ae||(vt((xe=function(){if(this instanceof xe)throw TypeError("Symbol is not a constructor!");var e=q(0<arguments.length?arguments[0]:void 0),n=function(t){this===Me&&n.call(ze,t),b(this,je)&&b(this[je],e)&&(this[je][e]=!1),qe(this,e,_(1,t))};return i&&He&&qe(Me,e,{configurable:!0,set:n}),Ie(e)})[Te],"toString",function(){return this._k}),be.f=We,h.f=Re,fe.f=ye.f=Be,V.f=De,Y.f=Ge,se.f=function(t){return Ie(St(t))}),S(S.G+S.W+S.F*!Ae,{Symbol:xe});for(var Ye="hasInstance,isConcatSpreadable,iterator,match,replace,search,species,split,toPrimitive,toStringTag,unscopables".split(","),Ve=0;Ye.length>Ve;)St(Ye[Ve++]);for(var Ke=G(St.store),Je=0;Ke.length>Je;)ae(Ke[Je++]);S(S.S+S.F*!Ae,"Symbol",{for:function(t){return b(Ce,t+="")?Ce[t]:Ce[t]=xe(t)},keyFor:function(t){if(!Fe(t))throw TypeError(t+" is not a symbol!");for(var e in Ce)if(Ce[e]===t)return e},useSetter:function(){He=!0},useSimple:function(){He=!1}}),S(S.S+S.F*!Ae,"Object",{create:function(t,e){return void 0===e?xt(t):$e(xt(t),e)},defineProperty:Re,defineProperties:$e,getOwnPropertyDescriptor:We,getOwnPropertyNames:Be,getOwnPropertySymbols:Ge}),Se&&S(S.S+S.F*(!Ae||c(function(){var t=xe();return"[null]"!=Oe([t])||"{}"!=Oe({a:t})||"{}"!=Oe(Object(t))})),"JSON",{stringify:function(t){for(var e,n,i=[t],o=1;arguments.length>o;)i.push(arguments[o++]);if(n=e=i[1],(u(e)||void 0!==t)&&!Fe(t))return at(e)||(e=function(t,e){if("function"==typeof n&&(e=n.call(this,t,e)),!Fe(e))return e}),i[1]=e,Oe.apply(Se,i)}}),xe[Te][Ee]||x(xe[Te],Ee,xe[Te].valueOf),jt(xe,"Symbol"),jt(Math,"Math",!0),jt(v.JSON,"JSON",!0),ae("asyncIterator"),ae("observable");var Ue=y.Symbol,Xe=t(function(e){function n(t){return(n="function"==typeof Ue&&"symbol"==typeof le?function(t){return typeof t}:function(t){return t&&"function"==typeof Ue&&t.constructor===Ue&&t!==Ue.prototype?"symbol":typeof t})(t)}function i(t){return"function"==typeof Ue&&"symbol"===n(le)?e.exports=i=function(t){return n(t)}:e.exports=i=function(t){return t&&"function"==typeof Ue&&t.constructor===Ue&&t!==Ue.prototype?"symbol":n(t)},i(t)}e.exports=i});var Qe=function(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t};var Ze=function(t,e){return!e||"object"!==Xe(e)&&"function"!=typeof e?Qe(t):e};Zt("getPrototypeOf",function(){return function(t){return Pt(K(t))}});var tn=y.Object.getPrototypeOf,en=function(t,e){if(s(t),!u(e)&&null!==e)throw TypeError(e+": can't set as prototype!")},nn={set:Object.setPrototypeOf||("__proto__"in{}?function(t,n,i){try{(i=m(Function.call,be.f(Object.prototype,"__proto__").set,2))(t,[]),n=!(t instanceof Array)}catch(t){n=!0}return function(t,e){return en(t,e),n?t.__proto__=e:i(t,e),t}}({},!1):void 0),check:en};S(S.S,"Object",{setPrototypeOf:nn.set});var on=y.Object.setPrototypeOf,rn=t(function(e){function n(t){return e.exports=n=on?tn:function(t){return t.__proto__||tn(t)},n(t)}e.exports=n});S(S.S,"Object",{create:xt});var sn=y.Object,ln=function(t,e){return sn.create(t,e)},un=t(function(n){function i(t,e){return n.exports=i=on||function(t,e){return t.__proto__=e,t},i(t,e)}n.exports=i});var cn=function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=ln(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),e&&un(t,e)};function an(t,e){return t.classList?t.classList.contains(e):new RegExp("(^| )"+e+"( |$)","gi").test(t.className)}function hn(e,t){e.classList?vn(t.split(" "),function(t){e.classList.add(t)}):e.className+=" "+t}function fn(t,n){var e=function(e){e.classList?n.split(" ").forEach(function(t){return e.classList.remove(t)}):e.className=e.className.replace(new RegExp("(^|\\b)"+n.split(" ").join("|")+"(\\b|$)","gi")," ")};NodeList.prototype.isPrototypeOf(t)?vn(t,e):e(t)}function pn(t,e,n){if(t.classList)t.classList.toggle(e,n);else{var i=t.className.split(" "),o=i.indexOf(e);!1===n||!0!==n&&0<=o?i.splice(o,1):i.push(e),t.className=i.join(" ")}}function dn(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!1),t.dispatchEvent(n)}function vn(t,e){for(var n=0;n<t.length;n++)e(t[n],n)}function yn(t,e){return getComputedStyle(t)[e]}function mn(t){t.parentNode.removeChild(t)}function bn(t){var e=document.createElement("div");return e.innerHTML=t,e.children[0]}function gn(t,e){var n=[];return vn(t,function(t){e(t)&&n.push(t)}),n}function wn(t){var e=t.getBoundingClientRect();return{top:e.top+window.scrollY,left:e.left+window.scrollX}}function kn(t){var e=t.offsetHeight,n=getComputedStyle(t);return e+=ct(n.marginTop)+ct(n.marginBottom)}function _n(t){var e=t.offsetWidth,n=getComputedStyle(t);return e+=ct(n.marginLeft)+ct(n.marginRight)}var xn=function(){function e(t){ee(this,e),t=t||{},this.eventListens=new Array,this.eventListeners=new Array,this.el=t.el||document.createElement("div"),this.cid=function(t){window.idCounter||(window.idCounter=0);var e=++window.idCounter+"";return t?t+e:e}("c"),this.on=function(t,e){this.eventListeners.push({type:t,handler:e})},this.off=function(e,t){this.eventListeners&&(this.eventListeners=this.eventListeners.filter(function(t){return!(t.type==e&&t.handler)}))}.bind(this),this.trigger=function(e){this.eventListeners&&this.eventListeners.forEach(function(t){"*"!=t.type&&"all"!=t.type&&e!=t.type||t.handler(e,this)})},this.initialize(t)}return re(e,[{key:"pick",value:function(e,t){var n={};return t.forEach(function(t){void 0!==e[t]&&(n[t]=e[t])}),n}},{key:"listenTo",value:function(t,e,n,i,o){"string"!=typeof n&&(o=i,i=n,n=!1),o||(o=this);var r=[t,e,function(t){if(!n||an(t.target,n.replace(".","")))return i.bind(o).apply(void 0,arguments)}.bind(o)];this.eventListens.push(r),t.addEventListener(e,r[2])}},{key:"listenToOnce",value:function(n,i,o,r){r||(r=this);var t=function t(e){return n.removeEventListener(i,t),o.apply(r,arguments)},e=[n,i,t];this.eventListens.push(e),n.addEventListener(i,t)}},{key:"remove",value:function(){this.trigger("removed"),this.eventListens&&this.eventListens.forEach(function(t){t[0].removeEventListener(t[1],t[2])}),delete this.eventListens,delete this.eventListeners,this.el&&this.el.parentNode&&this.el.parentNode.removeChild(this.el),delete this.el}},{key:"initialize",value:function(){}}]),e}(),Sn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(t){t=t||{},this.options={align:"center bottom",trigger:"click",show_arrow:!0,hide_sm:!1,square:!1,container:document.body,offset:{}},this.options.container=this.options.container||document.body,X(this.options,this.pick(t,te(this.options))),this.content=t.content,this.dropdown=document.createElement("div"),(this.el.dropdown=this).listenTo(this.el,this.options.trigger,this.toggle),this.listenTo(this.el,"mousedown",function(){this.mousedown=!0}),this.listenTo(this.el,"mouseup",function(){this.mousedown=!1}),this.listenTo(this.el,"focus",function(){this.mousedown||this.show()}),this.listenTo(document,"focus",this.outsideClick),this.listenTo(document,this.options.trigger,this.outsideClick),this.listenTo(document,"keyup",this.keyup),this.listenTo(window,"resize",this.resize)}},{key:"render",value:function(){if(hn(this.dropdown,"uniformDropdown-dropdown"),hn(this.dropdown,"absolute"),this.dropdown.style.minWidth=_n(this.el),this.dropdown.innerHTML=this.content.innerHTML?this.content.innerHTML:this.content,this.options.show_arrow){hn(this.dropdown,"has-pointer");var t=document.createElement("div");hn(t,"uniformDropdown-pointer"),this.dropdown.appendChild(t)}return pn(this.dropdown,"square",this.options.square),this.dropdown.style.display="none",this.options.container.appendChild(this.dropdown),fn(this.dropdown.querySelectorAll(".hidden"),"hidden"),this}},{key:"resize",value:function(){this.setPosition();var t=this.options.align.split(" "),e=!1;wn(this.dropdown).top+kn(this.dropdown)>Math.max(document.body.offsetHeight,window.innerHeight)&&(t[1]="top",e=!0),wn(this.dropdown).top<0&&(t[1]="bottom",e=!0),wn(this.dropdown).left<0&&(t[0]="right",e=!0),wn(this.dropdown).left+_n(this.dropdown)>document.body.offsetWidth&&(t[0]="left",e=!0),e&&this.setPosition(t.join(" "))}},{key:"setPosition",value:function(t){var e=(t=t||this.options.align).split(" "),n=Qt(e,2),i=n[0],o=n[1];i=i||"bottom",o=o||"bottom";var r=wn(this.el),s=this.options.container;"static"==getComputedStyle(s).position&&(s=s.offsetParent),s||(s=document.body);var l=wn(s);r={top:r.top-l.top,left:r.left-l.left};var u={};"left"==i?u.right=_n(s)-r.left:"center"==i?u.left=r.left+_n(this.el)/2-_n(this.dropdown)/2:"right"==i?u.left=r.left+_n(this.el):i.includes("%")?u.left=r.left+_n(this.el)*ct(i)/100:i.includes("px")&&(u.left=r.left+_n(this.el)+ct(i)),"top"==o?u.top=r.top-kn(this.dropdown):"center"==o?u.top=r.top+kn(this.el)/2-kn(this.dropdown)/2:"bottom"==o?u.top=r.top+kn(this.el):o.includes("%")?u.top=r.top+kn(this.el)*ct(o)/100:o.includes("px")&&(u.top=r.top+kn(this.el)+ct(o)),this.options.offset.left&&(u.left+=ct(this.options.offset.left)),this.options.offset.top&&(u.top+=ct(this.options.offset.top)),this.options.offset.left&&(u.right-=ct(this.options.offset.left)),this.dropdown.style.left="auto",this.dropdown.style.right="auto",fn(this.dropdown,"popover-left popover-right popover-center popover-top popover-bottom"),hn(this.dropdown,"popover-"+o),hn(this.dropdown,"popover-"+i),te(u).forEach(function(t){this.dropdown.style[t]=u[t]+"px"},this)}},{key:"remove",value:function(){xn.prototype.remove.apply(this,arguments),this.dropdown.parentNode&&this.dropdown.parentNode.removeChild(this.dropdown),delete this.dropdown}},{key:"toggle",value:function(t){an(this.el,"active")&&"click"==t.type?this.hide():this.show()}},{key:"show",value:function(t){t||(t={}),this.options.hide_sm&&window.innerWidth<720||(this.dropdown||this.render(),this.dropdown.style.display="block",hn(this.el,"active"),this.resize(),this.overlay=document.createElement("div"),hn(this.overlay,"uniformOverlay"),document.body.appendChild(this.overlay),window.innerWidth<720&&(this.lastScrollPosition=window.scrollY,hn(document.body,"uniformModal-hideBody")),this.listenTo(this.overlay,"click",this.hide),t.silent||this.trigger("shown"))}},{key:"hide",value:function(t){t||(t={}),this.dropdown&&an(this.el,"active")&&(this.dropdown.style.display="none",fn(this.el,"active"),this.overlay&&this.overlay.parentNode&&this.overlay.parentNode.removeChild(this.overlay),window.innerWidth<720&&(fn(document.body,"uniformModal-hideBody"),window.scrollTo(0,this.lastScrollPosition)),t.silent||this.trigger("hidden"))}},{key:"outsideClick",value:function(t){this.dropdown&&null!==this.dropdown.offsetParent&&t.target!==this.el&&t.target!==this.overlay&&(this.el.contains(t.target)||this.dropdown.contains(t.target)||this.hide())}},{key:"keyup",value:function(t){27==t.which&&this.hide()}}]),e}(),xn,"Dropdown"),On=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(t){this.listenTo(this.el,"change",this.change)}},{key:"render",value:function(){var t=an(this.el,"uniformRadio")?"uniformRadio":"uniformCheckbox";return this.checkbox=document.createElement("div"),hn(this.checkbox,"".concat(t,"-indicator")),this.el.className&&""!=this.el.className.replace(t,"")&&hn(this.checkbox,this.el.className.replace(t,"")),pn(this.checkbox,"checked",this.el.checked),this.el.parentNode.insertBefore(this.checkbox,this.el.nextSibling),this.listenTo(this.checkbox,"click",this.click),this}},{key:"click",value:function(t){this.el.disabled||(this.el.checked=!this.el.checked,dn(this.el,"change"),t.preventDefault())}},{key:"change",value:function(){pn(this.checkbox,"checked",this.el.checked)}}]),e}(),xn,"Checkbox"),Tn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(t){this.options={},this.options.klass=t.klass||!1,this.content=t.content,hn(this.el,"uniformModal"),this.listenTo(document,"keyup",this.keyup),this.listenTo(this.el,"click",this.checkCloseButton)}},{key:"keyup",value:function(t){27==t.which&&this.close()}},{key:"render",value:function(){var t="function"==typeof this.content?this.content():this.content;this.highest_z_index=0,this.overlay=document.createElement("div"),hn(this.overlay,"uniformModal-overlay"),this.blur=document.createElement("div"),hn(this.blur,"uniformModal-blur"),this.original_scroll=window.scrollY,this.blur.style.top=0-this.original_scroll+"px",0<document.body.querySelectorAll(".uniformModal").length&&(this.highest_z_index=Math.max(Array.prototype.map.call(document.body.querySelectorAll(".uniformModal"),function(t){return ct(yn(t,"zIndex"))})),this.el.style.zIndex=this.highest_z_index+2),this.el.appendChild(this.overlay);for(var e=document.body.children[0];e;){var n=e;e=n.nextElementSibling,n.matches('[blurrable="false"]')||this.blur.appendChild(n)}hn(document.body,"uniformModal-active"),document.body.appendChild(this.blur),document.body.appendChild(this.el);var i=document.createElement("div");hn(i,"uniformModal-container"),t instanceof Node?i.appendChild(t):i.innerHTML=t;var o=document.createElement("div");return hn(o,"uniformModal-close"),this.el.appendChild(o),this.el.style.top=window.scrollY,this.listenTo(this.overlay,"click",this.close),this.el.appendChild(i),this.options.klass&&hn(i,this.options.klass),t.innerHTML&&dn(t,"rendered"),this.trigger("rendered"),this}},{key:"checkCloseButton",value:function(t){an(t.target,"uniformModal-close")&&this.close()}},{key:"close",value:function(){fn(document.querySelectorAll("uniformModal-active"),"uniformModal-active");for(var t=this.blur.children,e=t.length,n=0;n<e;n++)document.body.appendChild(t[0]);this.blur.parentNode&&this.blur.parentNode.removeChild(this.blur),window.scrollTo(0,this.original_scroll),this.trigger("closed"),this.remove()}},{key:"remove",value:function(){xn.prototype.remove.apply(this,arguments),this.overlay&&this.overlay.parentNode&&this.overlay.parentNode.removeChild(this.overlay),delete this.overlay}}]),e}(),xn,"Modal"),jn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(t){var e=this;this.showing=!1,t=t||{},this.options={zIndex:2,container:document.body,align:"center bottom",anchor:document.body,content:"needs content",offset:{left:0,top:0}},X(this.options,this.pick(t,te(this.options))),this.listenTo(document,"click",this.checkFocus),this.listenTo(document,"focusin",this.checkFocus),this.listenTo(document,"keyup",this.checkEscape),this.listenTo(window,"resize",function(){e.resize.bind(e)()}),"string"==typeof this.options.container&&(this.options.container=function(t,e){if(t.closest)return t.closest(e);for(;t;){if(Element.prototype.matches?t.matches(e):t.msMatchesSelector(e))return t;t=t.parentElement}}(this.options.anchor,this.options.container),this.options.container=this.options.container||document.body)}},{key:"render",value:function(){return this.showing=!0,this.el.style.position="absolute",this.el.style.zIndex=this.options.zIndex,this.options.content instanceof Node?this.el.appendChild(this.options.content):this.el.innerHTML=this.options.content,this.options.container.appendChild(this.el),this.resize(),this.trigger("shown"),this}},{key:"resize",value:function(){this.setPosition();var t=this.el.getBoundingClientRect(),e=document.body.getBoundingClientRect(),n=window.innerHeight;if(window.innerWidth,t.bottom>e.bottom&&t.bottom>n){var i=e.bottom-t.bottom;null!=this.el.style.top&&(this.el.style.top=ct(this.el.style.top)-i+"px"),null!=this.el.style.bottom&&(this.el.style.bottom=ct(this.el.style.bottom)+i+"px")}if(t.top<e.top){var o=e.top-t.top;null!=this.el.style.top&&(this.el.style.top=ct(this.el.style.top)+o+"px"),null!=this.el.style.bottom&&(this.el.style.bottom=ct(this.el.style.bottom)-o+"px")}if(t.left<e.left){var r=e.left-t.left;null!=this.el.style.left&&(this.el.style.left=ct(this.el.style.left)+r+"px"),null!=this.el.style.right&&(this.el.style.right=ct(this.el.style.right)-r+"px")}if(t.right>e.right){var s=e.right-t.right;null!=this.el.style.left&&(this.el.style.left=ct(this.el.style.left)+s+"px"),null!=this.el.style.right&&(this.el.style.right=ct(this.el.style.right)-s+"px")}}},{key:"setPosition",value:function(t){var e=(t=t||this.options.align).split(" "),n=Qt(e,2),i=n[0],o=n[1];i=i||"bottom";var r=wn(this.options.anchor),s=this.options.container;"static"==getComputedStyle(s).position&&(s=s.offsetParent),s||(s=document.body);var l=wn(s);r={top:r.top-l.top,left:r.left-l.left};var u={};if("left"==i?u.right=_n(s)-r.left:"center"==i?u.left=r.left+_n(this.options.anchor)/2-_n(this.el)/2:"right"==i?u.left=r.left+_n(this.options.anchor):i.includes("px")&&(u.left=r.left+ct(i)),"top"==o){var c=kn(s);s==document.body&&"static"==getComputedStyle(s).position?c=window.innerHeight:s==document.body&&(c=Math.max(c,document.body.clientHeight)),u.bottom=c-r.top}else"center"==o?(u.top=r.top+kn(this.options.anchor)/2,u.transform="translateY(-50%)"):"bottom"==o?u.top=r.top+kn(this.options.anchor):o.includes("px")&&(u.top=r.top+ct(o));this.options.offset.left&&(u.left+=ct(this.options.offset.left)),this.options.offset.left&&(u.right-=ct(this.options.offset.left)),this.options.offset.top&&(u.top+=ct(this.options.offset.top)),this.options.offset.top&&(u.bottom-=ct(this.options.offset.top)),this.el.style.left=null,this.el.style.right=null,this.el.style.top=null,this.el.style.bottom=null,this.el.style.transform=null,fn(this.el,"popover-left popover-right popover-center popover-top popover-bottom"),hn(this.el,"popover-"+o),hn(this.el,"popover-"+i),te(u).forEach(function(t){this.el.style[t]=u[t]+("transform"!=t?"px":"")},this)}},{key:"checkFocus",value:function(t){t.defaultPrevented||this.showing&&t.target!==this.el&&t.target!=this.options.anchor&&(this.el.contains(t.target)||this.options.anchor.contains(t.target)||this.hide())}},{key:"checkEscape",value:function(t){27==t.which&&this.hide()}},{key:"isHidden",value:function(){return!this.showing}},{key:"hide",value:function(t){t=t||{},this.showing&&(this.el.style.display="none",!(this.showing=!1)!==t.silent&&this.trigger("hidden"))}},{key:"show",value:function(){this.showing||(this.el.style.display="block",this.showing=!0,this.trigger("shown"))}},{key:"toggle",value:function(t){(t=t||this.showing)?this.hide():this.show()}}]),e}(),xn,"Popover"),En='\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" viewBox="0 0 32 32">\n<path d="M28.998 8.531l-2.134-2.134c-0.394-0.393-1.030-0.393-1.423 0l-12.795 12.795-6.086-6.13c-0.393-0.393-1.029-0.393-1.423 0l-2.134 2.134c-0.393 0.394-0.393 1.030 0 1.423l8.924 8.984c0.393 0.393 1.030 0.393 1.423 0l15.648-15.649c0.393-0.392 0.393-1.030 0-1.423z"></path>\n</svg>\n'.trim(),Ln='\n<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="1em" height="1em" viewBox="0 0 20 20">\n<path d="M13.418 7.601c0.271-0.268 0.709-0.268 0.979 0s0.271 0.701 0 0.969l-3.907 3.83c-0.271 0.268-0.709 0.268-0.979 0l-3.908-3.83c-0.27-0.268-0.27-0.701 0-0.969s0.708-0.268 0.979 0l3.418 3.14 3.418-3.14z"></path>\n</svg>\n'.trim(),Cn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(){var t=0<arguments.length&&void 0!==arguments[0]?arguments[0]:{};this.options={label:!1,class:"",showAll:function(t){fn(t.querySelectorAll("button.hide"),"hide");var e=t.querySelector(".uniformSelect-show-all");return e.parentNode.removeChild(e),!1},limit:8,container:document.body},X(this.options,this.pick(t,te(this.options))),this.listenTo(this.el,"change",this.renderSelected),this.listenTo(this.el,"close",this.hideOptions),(this.el.uniformSelect=this).activeIcon=document.createElement("span"),this.activeIcon.innerHTML=En,hn(this.activeIcon,"uniformSelect-option-icon")}},{key:"remove",value:function(){xn.prototype.remove.apply(this,arguments),this.edit_button.parentNode.removeChild(this.edit_button),delete this.this.edit_button,this.activeIcon.parentNode.removeChild(this.activeIcon),delete this.activeIcon,this.button_options_popover&&this.button_options_popover.remove(),this.button_options_modal&&this.button_options_modal.remove(),this.button_options&&(this.button_options.parentNode.removeChild(this.button_options),delete this.button_options)}},{key:"render",value:function(){this.edit_button=bn("\n <button type='button' class='uniformSelect-edit uniformInput outline block ".concat(this.options.class,'\'>\n <span class="text-js"></span>\n <span class="uniformSelect-edit-icon">').concat(Ln,"</span>\n </button>\n ")),this.el.name&&hn(this.edit_button,this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g,"-")),this.el.style.display="none",this.el.insertAdjacentElement("beforebegin",this.edit_button);var t=this.el.querySelectorAll("option")[0];this.edit_button.querySelector(".text-js").style.opacity=0,this.edit_button.querySelector(".text-js").innerHTML=t.textContent;var e=this.edit_button.querySelector(".text-js").offsetWidth;return this.edit_button.style.minWidth=e+"px",this.edit_button.querySelector(".text-js").innerHTML="",this.edit_button.querySelector(".text-js").style.opacity=null,this.renderSelected(),this.listenTo(this.edit_button,"click",this.showOptions),this.listenTo(this.edit_button,"click",".uniformSelect-remove",this.removeSelection),this}},{key:"renderOptions",value:function(){this.button_options=bn("<div class='uniformSelect-options'>"),this.el.name&&hn(this.button_options,this.el.name.toLowerCase().replace(/[^a-z0-9\-_]+/g,"-")),this.button_options.style.fontSize=yn(this.el,"font-size"),vn(this.el.querySelectorAll("option"),function(t,e){var n=bn("<button type='button' class='uniformSelect-option block outline text-left'>");n.option=t,n.textContent=t.textContent,n.value=t.value,""==n.textContent&&(n.innerHTML="<span class='text-italic text-muted'>None</span>"),t.selected?(hn(n,"active"),n.append(this.activeIcon.cloneNode(!0))):this.options.limit&&e>this.options.limit&&hn(n,"hide"),this.button_options.append(n)}.bind(this)),this.listenTo(this.button_options,"click",".uniformSelect-option",this.selectOption);var t=bn('<div class="uniformSelect-options-actions"></div>');if(this.options.limit&&this.el.querySelectorAll("option").length>this.options.limit){var e=bn("<button type='button' class='uniformSelect-show-all outline blue' style='display: block; border: none'>Show All</button>");this.listenTo(e,"click",function(t){dn(this.el,"show_all"),this.options.showAll&&this.options.showAll(this.button_options),t.preventDefault(),t.stopPropagation()}),t.appendChild(e)}if(this.el.multiple){var n=bn("<button type='button' class='uniformSelect-done block outline blue'>Done</button>");this.listenTo(n,"click",this.hideOptions),t.appendChild(n)}""!==t.innerHTML&&this.button_options.appendChild(t)}},{key:"renderSelected",value:function(){var t=function(t,e){for(var n=[],i=0;i<t.length;i++)n.push(e(t[i],i));return n}(gn(this.el.querySelectorAll("option"),function(t){return t.selected}),function(t){return this.el.multiple?'<span class="uniformSelect-selection">'.concat(t.textContent,'<span class="uniformSelect-remove"></span></span>'):t.textContent}.bind(this)).join(" ");this.edit_button.querySelector(".text-js").innerHTML=""==t?"&nbsp;":t,this.button_options&&vn(this.button_options.querySelectorAll(".uniformSelect-option"),function(t){t.option.selected?(hn(t,"active"),t.append(this.activeIcon.cloneNode(!0))):(fn(t,"active"),vn(t.querySelectorAll(".uniformSelect-option-icon"),mn))}.bind(this))}},{key:"hideOptions",value:function(){this.button_options&&(this.button_options_modal&&this.button_options_modal.close(),this.button_options_popover&&(this.button_options_popover.remove(),delete this.button_options_popover),fn(this.edit_button,"active"))}},{key:"showOptions",value:function(t){var e=this;if(!an(t.target,"uniformSelect-remove")){if(this.button_options_modal)return this.hideOptions();if(this.button_options_popover)return this.hideOptions();if(this.button_options||this.renderOptions(),hn(this.edit_button,"active"),window.innerWidth<720){var n=bn('<div class="uniformSelect-modal">');n.append(this.button_options),this.options.label&&n.append('<div class="uniformSelect-label margin-bottom text-bold">'.concat(this.options.label,"</div>")),this.button_options_modal=new Tn({content:n,klass:"-reset"}).render(),this.button_options_modal.on("closed",function(){fn(e.edit_button,"active"),delete e.button_options_modal}),this.listenTo(n,"click",function(t){t.target==n&&this.button_options_modal.close()})}else this.button_options.style.minWidth=this.edit_button.offsetWidth+"px",this.button_options_popover=new jn({offset:{top:1},anchor:this.edit_button,align:"0px bottom",content:this.button_options,container:this.options.container}).render(),this.button_options_popover.on("hidden",function(){fn(e.edit_button,"active"),e.button_options_popover.remove(),delete e.button_options_popover})}}},{key:"selectOption",value:function(t){this.el.multiple||(vn(gn(this.el.querySelectorAll("option"),function(t){return t.selected}),function(t){t.selected=!1}),vn(this.button_options.querySelectorAll(".uniformSelect-option.active .uniformSelect-option-icon"),mn),fn(this.button_options.querySelectorAll(".uniformSelect-option.active"),"active")),pn(t.target,"active"),t.target.option.selected=an(t.target,"active"),vn(this.button_options.querySelectorAll("button"),function(t){t.option&&(pn(t,"active",t.option.selected),an(t,"active")?t.append(this.activeIcon.cloneNode(!0)):vn(t.querySelectorAll(".uniformSelect-option-icon"),mn))}.bind(this)),dn(this.el,"change")}},{key:"removeSelection",value:function(e){e.preventDefault();var t=gn(this.el.querySelectorAll("option"),function(t){return t.innerText.trim()==e.target.parentNode.innerText.trim()})[0];t&&(t.selected=!1,dn(this.el,"change"))}}]),e}(),xn,"Select"),Pn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(){this.label=this.el.querySelector("label"),this.input=this.el.querySelector("#"+this.label.getAttribute("for")),this.startingHeight,this.listenTo(this.input,"focus",this.activate),this.listenTo(this.input,"blur",this.deactivate),this.listenTo(this.input,"revealed",this.render)}},{key:"render",value:function(){if(null!==this.input.offsetParent&&!an(this.el,"enabled")){var t,e=ct(yn(this.input,"paddingBottom"));this.startingHeight=this.input.offsetHeight,hn(this.el,"enabled"),hn(this.el,"inactive"),this.input.style.paddingTop=e+e/2+"px",this.input.style.paddingBottom=e-e/2-2+"px",this.label.style.position="absolute",this.label.style.top=0,this.label.style.left=this.label.offsetLeft,this.label.style.paddingLeft=yn(this.input,"paddingLeft"),this.label.style.height=this.startingHeight,this.label.style.lineHeight=this.startingHeight+"px",t=this.input,document.activeElement===t&&this.activate(),void 0!==this.input.value&&""!=this.input.value&&this.activate()}}},{key:"activate",value:function(t){void 0!==t&&hn(this.el,"active"),an(this.el,"float")||(hn(this.el,"float"),fn(this.el,"inactive"),this.label.style.lineHeight=this.startingHeight/2+"px")}},{key:"deactivate",value:function(t){void 0!==t&&fn(this.el,"active"),""==this.input.value&&(fn(this.el,"float"),hn(this.el,"inactive"),this.label.style.lineHeight=this.startingHeight+"px")}}]),e}(),xn,"FloatingLabel"),zn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(){this.listenTo(window,"resize",this.resize),dn(window,"resize")}},{key:"resize",value:function(){var t=this.el.offsetWidth;720<t&&!an(this.el,"md-size")?(hn(this.el,"md-size"),dn(window,"resized-md")):t<720&&an(this.el,"md-size")&&fn(this.el,"md-size"),1080<t&&!an(this.el,"lg-size")?(hn(this.el,"lg-size"),dn(window,"resized-lg")):t<1080&&an(this.el,"lg-size")&&fn(this.el,"lg-size"),1440<t&&!an(this.el,"xl-size")?(hn(this.el,"xl-size"),dn(window,"resized-xl")):t<1440&&an(this.el,"xl-size")&&fn(this.el,"xl-size"),t<720&&!an(this.el,"sm-size")?(hn(this.el,"sm-size"),dn(window,"resized-sm")):720<t&&an(this.el,"sm-size")&&fn(this.el,"sm-size")}}]),e}(),xn,"Resizer"),Mn=function(t,e,n){if(n&&Object.defineProperty(t,"name",{value:n,configurable:!0}),"extended"in e){if("function"!=typeof e.extended)throw new TypeError("Attempted to call extended, but it was not a function");var i=e.extended(t);void 0!==i&&(n&&"function"==typeof i&&i.name!==n&&Object.defineProperty(i,"name",{value:n,configurable:!0}),t=i)}return t}(function(t){function e(){return ee(this,e),Ze(this,rn(e).apply(this,arguments))}return cn(e,xn),re(e,[{key:"initialize",value:function(t){t=t||{},this.options={align:"top",container:!1},X(this.options,this.pick(t,te(this.options))),this.enabled=!0,this.message=t.message,(t.el.tooltip=this).listenTo(this.el,"mouseenter",this.show),this.listenTo(this.el,"mouseleave",this.hide)}},{key:"render",value:function(){return this}},{key:"show",value:function(){this.enabled&&(clearTimeout(this.hide_timeout),this.popup?this.popup.show():this.popup=new jn({content:"<div class=\"uniformTooltip-popup\">\n <div class='uniformTooltip-pointer'></div>\n ".concat(this.message,"\n </div>"),anchor:this.el,align:"top"==this.options.align?"center top":"center 100%",offset:{top:-7},container:this.options.container||document.body}).render())}},{key:"hide",value:function(){var t=this;this.hide_timeout=setTimeout(function(){t.popup.remove(),delete t.popup},300)}},{key:"disable",value:function(){this.enabled=!1}},{key:"enabled",value:function(){this.enabled=!0}}]),e}(),xn,"Tooltip"),An=Object.freeze({Dropdown:Sn,Checkbox:On,Modal:Tn,Select:Cn,FloatingLabel:Pn,Resizer:zn,Tooltip:Mn,Popover:jn});window.Uniform=An,$&&($.fn.uniformDropdown=function(){return this.each(function(){var n=$(this),t={el:this};void 0!==n.data("dropdown-align")&&(t.align=n.data("dropdown-align")),void 0!==n.data("dropdown-trigger")&&(t.trigger=n.data("dropdown-trigger")),void 0!==n.data("dropdown-show_arrow")&&(t.show_arrow=n.data("dropdown-show_arrow")),void 0!==n.data("dropdown-square")&&(t.square=n.data("dropdown-square")),void 0!==n.data("dropdown-hide_sm")&&(t.hide_sm=n.data("dropdown-hide_sm")),void 0!==n.data("dropdown-content")&&(t.content="<div class='pad'>".concat(n.data("dropdown-content"),"</div>")),void 0!==n.data("dropdown-target")&&(t.content=$(n.data("dropdown-target"))[0]);var e=new Sn(t);e.on("*",function(t,e){n.trigger("dropdown-"+t,e)}),e.render()})},$.fn.uniformCheckbox=function(){return this.each(function(){$(this);new On({el:this}).render()})},$.fn.uniformRadio=$.fn.uniformCheckbox,$.fn.uniformFloatingLabel=function(){return this.each(function(){new Pn({el:this}).render()})},$.fn.uniformModal=function(){return this.click(function(){var n=$(this),t={klass:n.data("modal-klass"),content:n.data("modal-content")};if(n.data("modal-target")){var e=$(n.data("modal-target")).clone();e.removeClass("hidden"),t.content=e[0]}new Tn(t).render().on("*",function(t,e){n.trigger("modal-"+t,e)})})},$.fn.uniformResizer=function(){return this.each(function(){new zn({el:this})})},$.fn.uniformSelect=function(){return this.each(function(){var t={el:this};X(t,$(this).data()),new Cn(t).render()})},$.fn.uniformTooltip=function(){return this.each(function(){var n=$(this),t=new Mn({message:n.data("tooltip-message"),container:n.data("tooltip-container"),el:this});t.on("*",function(t,e){n.trigger("tooltip-"+t,e)}),t.render()})},$.fn.uniformTristate=function(){return this.each(function(){var i=$(this);function e(t){if(0==t.length)i.addClass("-null"),$(i.find("input")[1]).prop("checked",!0);else{var e=t.index(),n=0==e?"-true":1==e?"-null":"-false";i.removeClass("-true -null -false"),i.addClass(n)}}i.on("change","input",function(t){e($(t.currentTarget))}),e(i.find("input:checked")),i.on("blur","input",function(t){i.removeClass("-focus")}),i.on("focus","input",function(t){i.addClass("-focus")})})})}();
@@ -29,13 +29,22 @@
29
29
  &.-fill{
30
30
  width: 90%;
31
31
  }
32
+ &.-reset{
33
+ margin: -2em;
34
+ max-width: none;
35
+ border-radius: 0;
36
+ &.-fill{
37
+ width: 100%;
38
+ }
39
+ }
32
40
  }
33
41
 
34
42
  .uniformModal-close{
43
+ z-index: 2;
35
44
  position: absolute;
36
45
  padding: 0.3em;
37
- top: -2rem;
38
- right: -2rem;
46
+ top: 0;
47
+ right: 0;
39
48
  font-size:1.5em;
40
49
  color: white;
41
50
  opacity: 0.5;
@@ -8,7 +8,6 @@ select.uniformSelect{
8
8
  text-align: left;
9
9
  padding-right: 1.8em;
10
10
  &.active{
11
- z-index: 10000;
12
11
  .uniformSelect-edit-icon{
13
12
  svg{
14
13
  transform: rotate(180deg);
@@ -76,11 +75,9 @@ select.uniformSelect{
76
75
  }
77
76
 
78
77
  .uniformSelect-options{
79
- @include text-overflow;
80
- position: absolute;
81
- background: white;
82
- z-index: 9999;
78
+
83
79
  box-shadow: 0 0 15px 1px rgba(black, 0.2), 0 0 2px 1px rgba(black, 0.1) ;
80
+ background: white;
84
81
  button{
85
82
  appearance: none;
86
83
  outline: none;
@@ -133,27 +130,18 @@ select.uniformSelect{
133
130
  }
134
131
  }
135
132
 
136
- @include size-rule('sm'){
137
- .uniformSelect-options{
138
- top: 0 !important;
139
- left: 0 !important;
140
- min-height: 100vh;
141
- width: 100vw;
142
- padding: 1em;
143
- button{
144
- margin-bottom: 0.5em;
145
- border: 1px solid color('gray');
146
- &.uniformSelect-done{
147
- margin-bottom: 0;
148
- }
149
- }
150
- .uniformSelect-options-actions{
151
- margin: 0 -1em;
133
+ .uniformSelect-modal{
134
+ width: 100vw;
135
+ min-height: 100vh;
136
+ padding: 1em;
137
+ button{
138
+ margin-bottom: 0.5em;
139
+ border: 1px solid color('gray');
140
+ &.uniformSelect-done{
141
+ margin-bottom: 0;
152
142
  }
153
143
  }
154
- body.uniformModal-hideBody{
155
- & > *:not(.uniformSelect-options):not(.uniformDropdown-dropdown) {
156
- position: fixed;
157
- }
144
+ .uniformSelect-options-actions{
145
+ margin: 0 -1em;
158
146
  }
159
147
  }
@@ -1,3 +1,3 @@
1
1
  module Uniform
2
- VERSION = "2.3.5"
2
+ VERSION = "2.3.6"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: uniform-ui
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.5
4
+ version: 2.3.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Ehmke
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-04-16 00:00:00.000000000 Z
11
+ date: 2020-04-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass