uikit 3.16.24-dev.d6158da87 → 3.16.25-dev.12f581d90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +0 -9
- package/.prettierrc.json +3 -4
- package/CHANGELOG.md +2 -1
- package/build/build.js +2 -2
- package/build/less.js +2 -2
- package/build/prefix.js +3 -3
- package/build/release.js +7 -7
- package/build/scope.js +3 -3
- package/build/scss.js +9 -9
- package/build/util.js +11 -11
- package/dist/css/uikit-core-rtl.css +1 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +1 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +1 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +1 -1
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +2 -2
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +18 -18
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +351 -350
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +353 -352
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +6 -6
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +69 -69
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +37 -37
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +222 -224
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +37 -37
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +300 -302
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +2 -2
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +95 -95
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +2 -2
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +452 -449
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +6837 -6836
- package/dist/js/uikit.min.js +1 -1
- package/package.json +8 -7
- package/src/js/api/app.js +1 -1
- package/src/js/api/boot.js +2 -2
- package/src/js/api/component.js +1 -1
- package/src/js/api/computed.js +2 -2
- package/src/js/api/events.js +2 -2
- package/src/js/api/global.js +3 -3
- package/src/js/api/hooks.js +4 -4
- package/src/js/api/instance.js +3 -3
- package/src/js/api/log.js +1 -1
- package/src/js/api/observables.js +1 -1
- package/src/js/api/observer.js +2 -2
- package/src/js/api/options.js +2 -2
- package/src/js/api/props.js +2 -2
- package/src/js/api/state.js +2 -2
- package/src/js/components/countdown.js +1 -1
- package/src/js/components/filter.js +5 -5
- package/src/js/components/internal/lightbox-animations.js +1 -1
- package/src/js/components/internal/slider-transitioner.js +6 -6
- package/src/js/components/internal/slideshow-animations.js +1 -1
- package/src/js/components/lightbox-panel.js +10 -10
- package/src/js/components/lightbox.js +2 -2
- package/src/js/components/notification.js +4 -4
- package/src/js/components/parallax.js +3 -3
- package/src/js/components/slider-parallax.js +1 -1
- package/src/js/components/slider.js +12 -12
- package/src/js/components/slideshow.js +3 -3
- package/src/js/components/sortable.js +4 -4
- package/src/js/components/tooltip.js +6 -6
- package/src/js/components/upload.js +4 -4
- package/src/js/core/accordion.js +8 -8
- package/src/js/core/alert.js +2 -2
- package/src/js/core/cover.js +1 -1
- package/src/js/core/drop.js +12 -12
- package/src/js/core/dropnav.js +7 -7
- package/src/js/core/form-custom.js +1 -1
- package/src/js/core/grid.js +9 -9
- package/src/js/core/height-match.js +2 -2
- package/src/js/core/height-viewport.js +1 -1
- package/src/js/core/icon.js +23 -23
- package/src/js/core/img.js +2 -2
- package/src/js/core/index.js +16 -14
- package/src/js/core/leader.js +2 -2
- package/src/js/core/modal.js +7 -7
- package/src/js/core/navbar.js +4 -4
- package/src/js/core/offcanvas.js +3 -3
- package/src/js/core/overflow-auto.js +3 -3
- package/src/js/core/responsive.js +3 -3
- package/src/js/core/scrollspy-nav.js +1 -1
- package/src/js/core/scrollspy.js +1 -1
- package/src/js/core/sticky.js +12 -12
- package/src/js/core/svg.js +4 -4
- package/src/js/core/switcher.js +7 -7
- package/src/js/core/tab.js +2 -2
- package/src/js/core/toggle.js +5 -5
- package/src/js/core/video.js +1 -1
- package/src/js/mixin/animate.js +1 -1
- package/src/js/mixin/i18n.js +1 -1
- package/src/js/mixin/internal/animate-fade.js +14 -14
- package/src/js/mixin/internal/animate-slide.js +1 -1
- package/src/js/mixin/internal/scroll.js +1 -1
- package/src/js/mixin/modal.js +15 -12
- package/src/js/mixin/parallax.js +2 -2
- package/src/js/mixin/position.js +2 -2
- package/src/js/mixin/slider-drag.js +1 -1
- package/src/js/mixin/slider-nav.js +8 -9
- package/src/js/mixin/slider.js +9 -9
- package/src/js/mixin/slideshow.js +1 -1
- package/src/js/mixin/togglable.js +4 -4
- package/src/js/uikit-core.js +2 -2
- package/src/js/uikit.js +2 -2
- package/src/js/util/animation.js +8 -8
- package/src/js/util/class.js +1 -1
- package/src/js/util/dimensions.js +5 -5
- package/src/js/util/dom.js +3 -3
- package/src/js/util/event.js +3 -3
- package/src/js/util/filter.js +1 -1
- package/src/js/util/lang.js +4 -4
- package/src/js/util/observer.js +2 -2
- package/src/js/util/player.js +1 -1
- package/src/js/util/position.js +5 -5
- package/src/js/util/selector.js +1 -1
- package/src/js/util/style.js +1 -1
- package/src/js/util/svg.js +2 -2
- package/src/js/util/viewport.js +6 -6
- package/tests/js/index.js +7 -7
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.16.
|
|
1
|
+
/*! UIkit 3.16.25-dev.12f581d90 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory(require('uikit-util')) :
|
|
@@ -6,12 +6,6 @@
|
|
|
6
6
|
(global = typeof globalThis !== 'undefined' ? globalThis : global || self, global.UIkitSlider = factory(global.UIkit.util));
|
|
7
7
|
})(this, (function (util) { 'use strict';
|
|
8
8
|
|
|
9
|
-
var Class = {
|
|
10
|
-
connected() {
|
|
11
|
-
util.addClass(this.$el, this.$options.id);
|
|
12
|
-
}
|
|
13
|
-
};
|
|
14
|
-
|
|
15
9
|
function resize(options) {
|
|
16
10
|
return observe(util.observeResize, options, "resize");
|
|
17
11
|
}
|
|
@@ -42,6 +36,12 @@
|
|
|
42
36
|
};
|
|
43
37
|
}
|
|
44
38
|
|
|
39
|
+
var Class = {
|
|
40
|
+
connected() {
|
|
41
|
+
util.addClass(this.$el, this.$options.id);
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
|
|
45
45
|
var I18n = {
|
|
46
46
|
props: {
|
|
47
47
|
i18n: Object
|
|
@@ -61,201 +61,56 @@
|
|
|
61
61
|
}
|
|
62
62
|
};
|
|
63
63
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
HOME: 36,
|
|
70
|
-
LEFT: 37,
|
|
71
|
-
UP: 38,
|
|
72
|
-
RIGHT: 39,
|
|
73
|
-
DOWN: 40
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
function generateId(instance, el = instance.$el, postfix = "") {
|
|
77
|
-
if (el.id) {
|
|
78
|
-
return el.id;
|
|
79
|
-
}
|
|
80
|
-
let id = `${instance.$options.id}-${instance._uid}${postfix}`;
|
|
81
|
-
if (util.$(`#${id}`)) {
|
|
82
|
-
id = generateId(instance, el, `${postfix}-2`);
|
|
83
|
-
}
|
|
84
|
-
return id;
|
|
85
|
-
}
|
|
86
|
-
|
|
87
|
-
var SliderNav = {
|
|
88
|
-
i18n: {
|
|
89
|
-
next: "Next slide",
|
|
90
|
-
previous: "Previous slide",
|
|
91
|
-
slideX: "Slide %s",
|
|
92
|
-
slideLabel: "%s of %s",
|
|
93
|
-
role: "String"
|
|
64
|
+
var SliderAutoplay = {
|
|
65
|
+
props: {
|
|
66
|
+
autoplay: Boolean,
|
|
67
|
+
autoplayInterval: Number,
|
|
68
|
+
pauseOnHover: Boolean
|
|
94
69
|
},
|
|
95
70
|
data: {
|
|
96
|
-
|
|
97
|
-
|
|
71
|
+
autoplay: false,
|
|
72
|
+
autoplayInterval: 7e3,
|
|
73
|
+
pauseOnHover: true
|
|
98
74
|
},
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
},
|
|
103
|
-
navChildren() {
|
|
104
|
-
return util.children(this.nav);
|
|
105
|
-
},
|
|
106
|
-
selNavItem({ attrItem }) {
|
|
107
|
-
return `[${attrItem}],[data-${attrItem}]`;
|
|
108
|
-
},
|
|
109
|
-
navItems(_, $el) {
|
|
110
|
-
return util.$$(this.selNavItem, $el);
|
|
111
|
-
}
|
|
75
|
+
connected() {
|
|
76
|
+
util.attr(this.list, "aria-live", this.autoplay ? "off" : "polite");
|
|
77
|
+
this.autoplay && this.startAutoplay();
|
|
112
78
|
},
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
util.attr(nav, "role", "tablist");
|
|
116
|
-
if (prev) {
|
|
117
|
-
this.$emit();
|
|
118
|
-
}
|
|
119
|
-
},
|
|
120
|
-
list(list) {
|
|
121
|
-
util.attr(list, "role", "presentation");
|
|
122
|
-
},
|
|
123
|
-
navChildren(children2) {
|
|
124
|
-
util.attr(children2, "role", "presentation");
|
|
125
|
-
},
|
|
126
|
-
navItems(items) {
|
|
127
|
-
for (const el of items) {
|
|
128
|
-
const cmd = util.data(el, this.attrItem);
|
|
129
|
-
const button = util.$("a,button", el) || el;
|
|
130
|
-
let ariaLabel;
|
|
131
|
-
let ariaControls = null;
|
|
132
|
-
if (util.isNumeric(cmd)) {
|
|
133
|
-
const item = util.toNumber(cmd);
|
|
134
|
-
const slide = this.slides[item];
|
|
135
|
-
if (slide) {
|
|
136
|
-
if (!slide.id) {
|
|
137
|
-
slide.id = generateId(this, slide, `-item-${cmd}`);
|
|
138
|
-
}
|
|
139
|
-
ariaControls = slide.id;
|
|
140
|
-
}
|
|
141
|
-
ariaLabel = this.t("slideX", util.toFloat(cmd) + 1);
|
|
142
|
-
util.attr(button, "role", "tab");
|
|
143
|
-
} else {
|
|
144
|
-
if (this.list) {
|
|
145
|
-
if (!this.list.id) {
|
|
146
|
-
this.list.id = generateId(this, this.list, "-items");
|
|
147
|
-
}
|
|
148
|
-
ariaControls = this.list.id;
|
|
149
|
-
}
|
|
150
|
-
ariaLabel = this.t(cmd);
|
|
151
|
-
}
|
|
152
|
-
util.attr(button, {
|
|
153
|
-
"aria-controls": ariaControls,
|
|
154
|
-
"aria-label": util.attr(button, "aria-label") || ariaLabel
|
|
155
|
-
});
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
slides(slides) {
|
|
159
|
-
slides.forEach(
|
|
160
|
-
(slide, i) => util.attr(slide, {
|
|
161
|
-
role: this.nav ? "tabpanel" : "group",
|
|
162
|
-
"aria-label": this.t("slideLabel", i + 1, this.length),
|
|
163
|
-
"aria-roledescription": this.nav ? null : "slide"
|
|
164
|
-
})
|
|
165
|
-
);
|
|
166
|
-
},
|
|
167
|
-
length(length) {
|
|
168
|
-
const navLength = this.navChildren.length;
|
|
169
|
-
if (this.nav && length !== navLength) {
|
|
170
|
-
util.empty(this.nav);
|
|
171
|
-
for (let i = 0; i < length; i++) {
|
|
172
|
-
util.append(this.nav, `<li ${this.attrItem}="${i}"><a href></a></li>`);
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
}
|
|
79
|
+
disconnected() {
|
|
80
|
+
this.stopAutoplay();
|
|
176
81
|
},
|
|
177
|
-
|
|
178
|
-
util.attr(this
|
|
179
|
-
role: this.role,
|
|
180
|
-
"aria-roledescription": "carousel"
|
|
181
|
-
});
|
|
82
|
+
update() {
|
|
83
|
+
util.attr(this.slides, "tabindex", "-1");
|
|
182
84
|
},
|
|
183
|
-
update: [
|
|
184
|
-
{
|
|
185
|
-
write() {
|
|
186
|
-
this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex));
|
|
187
|
-
this.updateNav();
|
|
188
|
-
},
|
|
189
|
-
events: ["resize"]
|
|
190
|
-
}
|
|
191
|
-
],
|
|
192
85
|
events: [
|
|
193
86
|
{
|
|
194
|
-
name: "
|
|
195
|
-
|
|
196
|
-
return
|
|
87
|
+
name: "visibilitychange",
|
|
88
|
+
el() {
|
|
89
|
+
return document;
|
|
197
90
|
},
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
e.preventDefault();
|
|
201
|
-
this.show(util.data(e.current, this.attrItem));
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
{
|
|
206
|
-
name: "itemshow",
|
|
207
|
-
handler: "updateNav"
|
|
208
|
-
},
|
|
209
|
-
{
|
|
210
|
-
name: "keydown",
|
|
211
|
-
delegate() {
|
|
212
|
-
return this.selNavItem;
|
|
91
|
+
filter() {
|
|
92
|
+
return this.autoplay;
|
|
213
93
|
},
|
|
214
|
-
handler(
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
}
|
|
220
|
-
let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1;
|
|
221
|
-
if (~i) {
|
|
222
|
-
e.preventDefault();
|
|
223
|
-
this.show(i);
|
|
94
|
+
handler() {
|
|
95
|
+
if (document.hidden) {
|
|
96
|
+
this.stopAutoplay();
|
|
97
|
+
} else {
|
|
98
|
+
this.startAutoplay();
|
|
224
99
|
}
|
|
225
100
|
}
|
|
226
101
|
}
|
|
227
102
|
],
|
|
228
103
|
methods: {
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
const cmd = util.data(el, this.attrItem);
|
|
235
|
-
const button = util.$("a,button", el) || el;
|
|
236
|
-
if (util.isNumeric(cmd)) {
|
|
237
|
-
const item = util.toNumber(cmd);
|
|
238
|
-
const active = item === index;
|
|
239
|
-
util.toggleClass(el, this.clsActive, active);
|
|
240
|
-
util.attr(button, {
|
|
241
|
-
"aria-selected": active,
|
|
242
|
-
tabindex: active ? null : -1
|
|
243
|
-
});
|
|
244
|
-
if (active) {
|
|
245
|
-
focusEl = button;
|
|
246
|
-
}
|
|
247
|
-
focus || (focus = util.matches(button, ":focus"));
|
|
248
|
-
} else {
|
|
249
|
-
util.toggleClass(
|
|
250
|
-
el,
|
|
251
|
-
"uk-invisible",
|
|
252
|
-
this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex)
|
|
253
|
-
);
|
|
254
|
-
}
|
|
255
|
-
if (focus && focusEl) {
|
|
256
|
-
focusEl.focus();
|
|
104
|
+
startAutoplay() {
|
|
105
|
+
this.stopAutoplay();
|
|
106
|
+
this.interval = setInterval(() => {
|
|
107
|
+
if (!(this.stack.length || this.draggable && util.matches(this.$el, ":focus-within") || this.pauseOnHover && util.matches(this.$el, ":hover"))) {
|
|
108
|
+
this.show("next");
|
|
257
109
|
}
|
|
258
|
-
}
|
|
110
|
+
}, this.autoplayInterval);
|
|
111
|
+
},
|
|
112
|
+
stopAutoplay() {
|
|
113
|
+
clearInterval(this.interval);
|
|
259
114
|
}
|
|
260
115
|
}
|
|
261
116
|
};
|
|
@@ -289,7 +144,7 @@
|
|
|
289
144
|
name: pointerDown,
|
|
290
145
|
passive: true,
|
|
291
146
|
delegate() {
|
|
292
|
-
return
|
|
147
|
+
return "".concat(this.selList, " > *");
|
|
293
148
|
},
|
|
294
149
|
handler(e) {
|
|
295
150
|
if (!this.draggable || !util.isTouch(e) && hasSelectableText(e.target) || util.closest(e.target, util.selInput) || e.button > 0 || this.length < 2) {
|
|
@@ -415,56 +270,199 @@
|
|
|
415
270
|
return util.css(el, "userSelect") !== "none" && util.toArray(el.childNodes).some((el2) => el2.nodeType === 3 && el2.textContent.trim());
|
|
416
271
|
}
|
|
417
272
|
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
273
|
+
function generateId(instance, el = instance.$el, postfix = "") {
|
|
274
|
+
if (el.id) {
|
|
275
|
+
return el.id;
|
|
276
|
+
}
|
|
277
|
+
let id = "".concat(instance.$options.id, "-").concat(instance._uid).concat(postfix);
|
|
278
|
+
if (util.$("#".concat(id))) {
|
|
279
|
+
id = generateId(instance, el, "".concat(postfix, "-2"));
|
|
280
|
+
}
|
|
281
|
+
return id;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
const keyMap = {
|
|
285
|
+
TAB: 9,
|
|
286
|
+
ESC: 27,
|
|
287
|
+
SPACE: 32,
|
|
288
|
+
END: 35,
|
|
289
|
+
HOME: 36,
|
|
290
|
+
LEFT: 37,
|
|
291
|
+
UP: 38,
|
|
292
|
+
RIGHT: 39,
|
|
293
|
+
DOWN: 40
|
|
294
|
+
};
|
|
295
|
+
|
|
296
|
+
var SliderNav = {
|
|
297
|
+
i18n: {
|
|
298
|
+
next: "Next slide",
|
|
299
|
+
previous: "Previous slide",
|
|
300
|
+
slideX: "Slide %s",
|
|
301
|
+
slideLabel: "%s of %s",
|
|
302
|
+
role: "String"
|
|
423
303
|
},
|
|
424
304
|
data: {
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
pauseOnHover: true
|
|
305
|
+
selNav: false,
|
|
306
|
+
role: "region"
|
|
428
307
|
},
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
308
|
+
computed: {
|
|
309
|
+
nav({ selNav }, $el) {
|
|
310
|
+
return util.$(selNav, $el);
|
|
311
|
+
},
|
|
312
|
+
navChildren() {
|
|
313
|
+
return util.children(this.nav);
|
|
314
|
+
},
|
|
315
|
+
selNavItem({ attrItem }) {
|
|
316
|
+
return "[".concat(attrItem, "],[data-").concat(attrItem, "]");
|
|
317
|
+
},
|
|
318
|
+
navItems(_, $el) {
|
|
319
|
+
return util.$$(this.selNavItem, $el);
|
|
320
|
+
}
|
|
432
321
|
},
|
|
433
|
-
|
|
434
|
-
|
|
322
|
+
watch: {
|
|
323
|
+
nav(nav, prev) {
|
|
324
|
+
util.attr(nav, "role", "tablist");
|
|
325
|
+
if (prev) {
|
|
326
|
+
this.$emit();
|
|
327
|
+
}
|
|
328
|
+
},
|
|
329
|
+
list(list) {
|
|
330
|
+
util.attr(list, "role", "presentation");
|
|
331
|
+
},
|
|
332
|
+
navChildren(children2) {
|
|
333
|
+
util.attr(children2, "role", "presentation");
|
|
334
|
+
},
|
|
335
|
+
navItems(items) {
|
|
336
|
+
for (const el of items) {
|
|
337
|
+
const cmd = util.data(el, this.attrItem);
|
|
338
|
+
const button = util.$("a,button", el) || el;
|
|
339
|
+
let ariaLabel;
|
|
340
|
+
let ariaControls = null;
|
|
341
|
+
if (util.isNumeric(cmd)) {
|
|
342
|
+
const item = util.toNumber(cmd);
|
|
343
|
+
const slide = this.slides[item];
|
|
344
|
+
if (slide) {
|
|
345
|
+
if (!slide.id) {
|
|
346
|
+
slide.id = generateId(this, slide, "-item-".concat(cmd));
|
|
347
|
+
}
|
|
348
|
+
ariaControls = slide.id;
|
|
349
|
+
}
|
|
350
|
+
ariaLabel = this.t("slideX", util.toFloat(cmd) + 1);
|
|
351
|
+
util.attr(button, "role", "tab");
|
|
352
|
+
} else {
|
|
353
|
+
if (this.list) {
|
|
354
|
+
if (!this.list.id) {
|
|
355
|
+
this.list.id = generateId(this, this.list, "-items");
|
|
356
|
+
}
|
|
357
|
+
ariaControls = this.list.id;
|
|
358
|
+
}
|
|
359
|
+
ariaLabel = this.t(cmd);
|
|
360
|
+
}
|
|
361
|
+
util.attr(button, {
|
|
362
|
+
"aria-controls": ariaControls,
|
|
363
|
+
"aria-label": util.attr(button, "aria-label") || ariaLabel
|
|
364
|
+
});
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
slides(slides) {
|
|
368
|
+
slides.forEach(
|
|
369
|
+
(slide, i) => util.attr(slide, {
|
|
370
|
+
role: this.nav ? "tabpanel" : "group",
|
|
371
|
+
"aria-label": this.t("slideLabel", i + 1, this.length),
|
|
372
|
+
"aria-roledescription": this.nav ? null : "slide"
|
|
373
|
+
})
|
|
374
|
+
);
|
|
375
|
+
},
|
|
376
|
+
length(length) {
|
|
377
|
+
const navLength = this.navChildren.length;
|
|
378
|
+
if (this.nav && length !== navLength) {
|
|
379
|
+
util.empty(this.nav);
|
|
380
|
+
for (let i = 0; i < length; i++) {
|
|
381
|
+
util.append(this.nav, "<li ".concat(this.attrItem, '="').concat(i, '"><a href></a></li>'));
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
435
385
|
},
|
|
436
|
-
|
|
437
|
-
util.attr(this
|
|
386
|
+
connected() {
|
|
387
|
+
util.attr(this.$el, {
|
|
388
|
+
role: this.role,
|
|
389
|
+
"aria-roledescription": "carousel"
|
|
390
|
+
});
|
|
438
391
|
},
|
|
392
|
+
update: [
|
|
393
|
+
{
|
|
394
|
+
write() {
|
|
395
|
+
this.navItems.concat(this.nav).forEach((el) => el && (el.hidden = !this.maxIndex));
|
|
396
|
+
this.updateNav();
|
|
397
|
+
},
|
|
398
|
+
events: ["resize"]
|
|
399
|
+
}
|
|
400
|
+
],
|
|
439
401
|
events: [
|
|
440
402
|
{
|
|
441
|
-
name: "
|
|
442
|
-
|
|
443
|
-
return
|
|
403
|
+
name: "click keydown",
|
|
404
|
+
delegate() {
|
|
405
|
+
return this.selNavItem;
|
|
444
406
|
},
|
|
445
|
-
|
|
446
|
-
|
|
407
|
+
handler(e) {
|
|
408
|
+
if (util.closest(e.target, "a,button") && (e.type === "click" || e.keyCode === keyMap.SPACE)) {
|
|
409
|
+
e.preventDefault();
|
|
410
|
+
this.show(util.data(e.current, this.attrItem));
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
name: "itemshow",
|
|
416
|
+
handler: "updateNav"
|
|
417
|
+
},
|
|
418
|
+
{
|
|
419
|
+
name: "keydown",
|
|
420
|
+
delegate() {
|
|
421
|
+
return this.selNavItem;
|
|
447
422
|
},
|
|
448
|
-
handler() {
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
423
|
+
handler(e) {
|
|
424
|
+
const { current, keyCode } = e;
|
|
425
|
+
const cmd = util.data(current, this.attrItem);
|
|
426
|
+
if (!util.isNumeric(cmd)) {
|
|
427
|
+
return;
|
|
428
|
+
}
|
|
429
|
+
let i = keyCode === keyMap.HOME ? 0 : keyCode === keyMap.END ? "last" : keyCode === keyMap.LEFT ? "previous" : keyCode === keyMap.RIGHT ? "next" : -1;
|
|
430
|
+
if (~i) {
|
|
431
|
+
e.preventDefault();
|
|
432
|
+
this.show(i);
|
|
453
433
|
}
|
|
454
434
|
}
|
|
455
435
|
}
|
|
456
436
|
],
|
|
457
437
|
methods: {
|
|
458
|
-
|
|
459
|
-
this.
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
438
|
+
updateNav() {
|
|
439
|
+
const index = this.getValidIndex();
|
|
440
|
+
let focusEl;
|
|
441
|
+
for (const el of this.navItems) {
|
|
442
|
+
const cmd = util.data(el, this.attrItem);
|
|
443
|
+
const button = util.$("a,button", el) || el;
|
|
444
|
+
if (util.isNumeric(cmd)) {
|
|
445
|
+
const item = util.toNumber(cmd);
|
|
446
|
+
const active = item === index;
|
|
447
|
+
util.toggleClass(el, this.clsActive, active);
|
|
448
|
+
util.attr(button, {
|
|
449
|
+
"aria-selected": active,
|
|
450
|
+
tabindex: active ? null : -1
|
|
451
|
+
});
|
|
452
|
+
if (active) {
|
|
453
|
+
focusEl || (focusEl = util.matches(util.parent(el), ":focus-within") && button);
|
|
454
|
+
}
|
|
455
|
+
} else {
|
|
456
|
+
util.toggleClass(
|
|
457
|
+
el,
|
|
458
|
+
"uk-invisible",
|
|
459
|
+
this.finite && (cmd === "previous" && index === 0 || cmd === "next" && index >= this.maxIndex)
|
|
460
|
+
);
|
|
463
461
|
}
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
462
|
+
if (focusEl && util.isInView(focusEl)) {
|
|
463
|
+
focusEl.focus();
|
|
464
|
+
}
|
|
465
|
+
}
|
|
468
466
|
}
|
|
469
467
|
}
|
|
470
468
|
};
|
|
@@ -645,7 +643,7 @@
|
|
|
645
643
|
|
|
646
644
|
function translate(value = 0, unit = "%") {
|
|
647
645
|
value += value ? unit : "";
|
|
648
|
-
return
|
|
646
|
+
return "translate3d(".concat(value, ", 0, 0)");
|
|
649
647
|
}
|
|
650
648
|
|
|
651
649
|
function Transitioner(prev, next, dir, { center, easing, list }) {
|
|
@@ -709,7 +707,7 @@
|
|
|
709
707
|
const isIn = slide === itemIn;
|
|
710
708
|
const isOut = slide === itemOut;
|
|
711
709
|
const translateIn = isIn || !isOut && (isActive || dir * (util.isRtl ? -1 : 1) === -1 ^ getElLeft(slide, list) > getElLeft(prev || next));
|
|
712
|
-
triggerUpdate(slide,
|
|
710
|
+
triggerUpdate(slide, "itemtranslate".concat(translateIn ? "in" : "out"), {
|
|
713
711
|
dir,
|
|
714
712
|
percent: isOut ? 1 - percent : isIn ? percent : isActive ? 1 : 0
|
|
715
713
|
});
|
|
@@ -844,7 +842,7 @@
|
|
|
844
842
|
}
|
|
845
843
|
},
|
|
846
844
|
connected() {
|
|
847
|
-
util.toggleClass(this.$el, this.clsContainer, !util.$(
|
|
845
|
+
util.toggleClass(this.$el, this.clsContainer, !util.$(".".concat(this.clsContainer), this.$el));
|
|
848
846
|
},
|
|
849
847
|
observe: resize({
|
|
850
848
|
target: ({ slides }) => slides
|
|
@@ -1 +1 @@
|
|
|
1
|
-
/*! UIkit 3.16.24-dev.d6158da87 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */(function(e,p){typeof exports=="object"&&typeof module<"u"?module.exports=p(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslider",["uikit-util"],p):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSlider=p(e.UIkit.util))})(this,function(e){"use strict";var p={connected(){e.addClass(this.$el,this.$options.id)}};function A(t){return k(e.observeResize,t,"resize")}function P(t){return k(e.observeIntersection,t)}function L(t={}){return P({handler:function(s,n){const{targets:i=this.$el,preload:h=5}=t;for(const r of e.toNodes(e.isFunction(i)?i(this):i))e.$$('[loading="lazy"]',r).slice(0,h-1).forEach(a=>e.removeAttr(a,"loading"));for(const r of s.filter(({isIntersecting:a})=>a).map(({target:a})=>a))n.unobserve(r)},...t})}function k(t,s,n){return{observe:t,handler(){this.$emit(n)},...s}}var z={props:{i18n:Object},data:{i18n:null},methods:{t(t,...s){var n,i,h;let r=0;return((h=((n=this.i18n)==null?void 0:n[t])||((i=this.$options.i18n)==null?void 0:i[t]))==null?void 0:h.replace(/%s/g,()=>s[r++]||""))||""}}};const v={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};function b(t,s=t.$el,n=""){if(s.id)return s.id;let i=`${t.$options.id}-${t._uid}${n}`;return e.$(`#${i}`)&&(i=b(t,s,`${n}-2`)),i}var B={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav({selNav:t},s){return e.$(t,s)},navChildren(){return e.children(this.nav)},selNavItem({attrItem:t}){return`[${t}],[data-${t}]`},navItems(t,s){return e.$$(this.selNavItem,s)}},watch:{nav(t,s){e.attr(t,"role","tablist"),s&&this.$emit()},list(t){e.attr(t,"role","presentation")},navChildren(t){e.attr(t,"role","presentation")},navItems(t){for(const s of t){const n=e.data(s,this.attrItem),i=e.$("a,button",s)||s;let h,r=null;if(e.isNumeric(n)){const a=e.toNumber(n),o=this.slides[a];o&&(o.id||(o.id=b(this,o,`-item-${n}`)),r=o.id),h=this.t("slideX",e.toFloat(n)+1),e.attr(i,"role","tab")}else this.list&&(this.list.id||(this.list.id=b(this,this.list,"-items")),r=this.list.id),h=this.t(n);e.attr(i,{"aria-controls":r,"aria-label":e.attr(i,"aria-label")||h})}},slides(t){t.forEach((s,n)=>e.attr(s,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",n+1,this.length),"aria-roledescription":this.nav?null:"slide"}))},length(t){const s=this.navChildren.length;if(this.nav&&t!==s){e.empty(this.nav);for(let n=0;n<t;n++)e.append(this.nav,`<li ${this.attrItem}="${n}"><a href></a></li>`)}}},connected(){e.attr(this.$el,{role:this.role,"aria-roledescription":"carousel"})},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate(){return this.selNavItem},handler(t){e.closest(t.target,"a,button")&&(t.type==="click"||t.keyCode===v.SPACE)&&(t.preventDefault(),this.show(e.data(t.current,this.attrItem)))}},{name:"itemshow",handler:"updateNav"},{name:"keydown",delegate(){return this.selNavItem},handler(t){const{current:s,keyCode:n}=t,i=e.data(s,this.attrItem);if(!e.isNumeric(i))return;let h=n===v.HOME?0:n===v.END?"last":n===v.LEFT?"previous":n===v.RIGHT?"next":-1;~h&&(t.preventDefault(),this.show(h))}}],methods:{updateNav(){const t=this.getValidIndex();let s,n;for(const i of this.navItems){const h=e.data(i,this.attrItem),r=e.$("a,button",i)||i;if(e.isNumeric(h)){const o=e.toNumber(h)===t;e.toggleClass(i,this.clsActive,o),e.attr(r,{"aria-selected":o,tabindex:o?null:-1}),o&&(n=r),s||(s=e.matches(r,":focus"))}else e.toggleClass(i,"uk-invisible",this.finite&&(h==="previous"&&t===0||h==="next"&&t>=this.maxIndex));s&&n&&n.focus()}}}};const $={passive:!1,capture:!0},C={passive:!0,capture:!0},U="touchstart mousedown",y="touchmove mousemove",N="touchend touchcancel mouseup click input scroll";var V={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const s=this[t];this[t]=n=>{const i=e.getEventPos(n).x*(e.isRtl?-1:1);this.prevPos=i===this.pos?this.prevPos:this.pos,this.pos=i,s(n)}}},events:[{name:U,passive:!0,delegate(){return`${this.selList} > *`},handler(t){!this.draggable||!e.isTouch(t)&&F(t.target)||e.closest(t.target,e.selInput)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:y,el(){return this.list},handler:e.noop,...$}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,e.on(document,y,this.move,$),e.on(document,N,this.end,C),e.css(this.list,"userSelect","none")},move(t){const s=this.pos-this.drag;if(s===0||this.prevPos===this.pos||!this.dragging&&Math.abs(s)<this.threshold)return;e.css(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=s<0?1:-1;let{slides:n,prevIndex:i}=this,h=Math.abs(s),r=this.getIndex(i+this.dir),a=this._getDistance(i,r);for(;r!==i&&h>a;)this.drag-=a*this.dir,i=r,h-=a,r=this.getIndex(i+this.dir),a=this._getDistance(i,r);this.percent=h/a;const o=n[i],l=n[r],d=this.index!==r,c=i===r;let f;for(const g of[this.index,this.prevIndex])e.includes([r,i],g)||(e.trigger(n[g],"itemhidden",[this]),c&&(f=!0,this.prevIndex=i));(this.index===i&&this.prevIndex!==i||f)&&e.trigger(n[this.index],"itemshown",[this]),d&&(this.prevIndex=i,this.index=r,!c&&e.trigger(o,"beforeitemhide",[this]),e.trigger(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),o,!c&&l),d&&(!c&&e.trigger(o,"itemhide",[this]),e.trigger(l,"itemshow",[this]))},end(){if(e.off(document,y,this.move,$),e.off(document,N,this.end,C),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(e.isRtl?this.dir*(e.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}e.css(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null},_getDistance(t,s){return this._getTransitioner(t,t!==s&&s).getDistance()||this.slides[t].offsetWidth}}};function F(t){return e.css(t,"userSelect")!=="none"&&e.toArray(t.childNodes).some(s=>s.nodeType===3&&s.textContent.trim())}var H={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){e.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){e.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||this.draggable&&e.matches(this.$el,":focus-within")||this.pauseOnHover&&e.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}},j={mixins:[H,V,B,z],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){e.removeClass(this.slides,this.clsActive)},computed:{duration({velocity:t},s){return M(s.offsetWidth/t)},list({selList:t},s){return e.$(t,s)},maxIndex(){return this.length-1},slides(){return e.children(this.list)},length(){return this.slides.length}},watch:{slides(t,s){s&&this.$emit()}},observe:A(),methods:{show(t,s=!1){var n;if(this.dragging||!this.length)return;const{stack:i}=this,h=s?0:i.length,r=()=>{i.splice(h,1),i.length&&this.show(i.shift(),!0)};if(i[s?"unshift":"push"](t),!s&&i.length>1){i.length===2&&((n=this._transitioner)==null||n.forward(Math.min(this.duration,200)));return}const a=this.getIndex(this.index),o=e.hasClass(this.slides,this.clsActive)&&this.slides[a],l=this.getIndex(t,this.index),d=this.slides[l];if(o===d){r();return}if(this.dir=q(t,a),this.prevIndex=a,this.index=l,o&&!e.trigger(o,"beforeitemhide",[this])||!e.trigger(d,"beforeitemshow",[this,o])){this.index=this.prevIndex,r();return}const c=this._show(o,d,s).then(()=>{o&&e.trigger(o,"itemhidden",[this]),e.trigger(d,"itemshown",[this]),i.shift(),this._transitioner=null,requestAnimationFrame(()=>i.length&&this.show(i.shift(),!0))});return o&&e.trigger(o,"itemhide",[this]),e.trigger(d,"itemshow",[this]),c},getIndex(t=this.index,s=this.index){return e.clamp(e.getIndex(t,this.slides,s,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,s=this.prevIndex){return this.getIndex(t,s)},_show(t,s,n){if(this._transitioner=this._getTransitioner(t,s,this.dir,{easing:n?s.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!n&&!t)return this._translate(1),Promise.resolve();const{length:i}=this.stack;return this._transitioner[i>1?"forward":"show"](i>1?Math.min(this.duration,75+75/(i-1)):this.duration,this.percent)},_translate(t,s=this.prevIndex,n=this.index){const i=this._getTransitioner(s===n?!1:s,n);return i.translate(t),i},_getTransitioner(t=this.prevIndex,s=this.index,n=this.dir||1,i=this.transitionOptions){return new this.Transitioner(e.isNumber(t)?this.slides[t]:t,e.isNumber(s)?this.slides[s]:s,n*(e.isRtl?-1:1),i)}}};function q(t,s){return t==="next"?1:t==="previous"||t<s?-1:1}function M(t){return .5*t+300}var G={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);!~this.prevIndex||this.index!==t?this.show(t):this._translate(1,this.prevIndex,this.index)},events:["resize"]}},X={observe:L({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()})};function S(t=0,s="%"){return t+=t?s:"",`translate3d(${t}, 0, 0)`}function J(t,s,n,{center:i,easing:h,list:r}){const a=t?x(t,r,i):x(s,r,i)+e.dimensions(s).width*n,o=s?x(s,r,i):a+e.dimensions(t).width*n*(e.isRtl?-1:1);let l;return{dir:n,show(d,c=0,f){const g=f?"linear":h;return d-=Math.round(d*e.clamp(c,-1,1)),this.translate(c),c=t?c:e.clamp(c,0,1),_(this.getItemIn(),"itemin",{percent:c,duration:d,timing:g,dir:n}),t&&_(this.getItemIn(!0),"itemout",{percent:1-c,duration:d,timing:g,dir:n}),new Promise(m=>{l||(l=m),e.Transition.start(r,{transform:S(-o*(e.isRtl?-1:1),"px")},d,g).then(l,e.noop)})},cancel(){return e.Transition.cancel(r)},reset(){e.css(r,"transform","")},async forward(d,c=this.percent()){return await this.cancel(),this.show(d,c,!0)},translate(d){const c=this.getDistance()*n*(e.isRtl?-1:1);e.css(r,"transform",S(e.clamp(-o+(c-c*d),-I(r),e.dimensions(r).width)*(e.isRtl?-1:1),"px"));const f=this.getActives(),g=this.getItemIn(),m=this.getItemIn(!0);d=t?e.clamp(d,-1,1):0;for(const u of e.children(r)){const R=e.includes(f,u),O=u===g,W=u===m,Z=O||!W&&(R||n*(e.isRtl?-1:1)===-1^w(u,r)>w(t||s));_(u,`itemtranslate${Z?"in":"out"}`,{dir:n,percent:W?1-d:O?d:R?1:0})}},percent(){return Math.abs((e.css(r,"transform").split(",")[4]*(e.isRtl?-1:1)+a)/(o-a))},getDistance(){return Math.abs(o-a)},getItemIn(d=!1){let c=this.getActives(),f=T(r,x(s||t,r,i));if(d){const g=c;c=f,f=g}return f[e.findIndex(f,g=>!e.includes(c,g))]},getActives(){return T(r,x(t||s,r,i))}}}function x(t,s,n){const i=w(t,s);return n?i-K(t,s):Math.min(i,E(s))}function E(t){return Math.max(0,I(t)-e.dimensions(t).width)}function I(t){return e.sumBy(e.children(t),s=>e.dimensions(s).width)}function K(t,s){return e.dimensions(s).width/2-e.dimensions(t).width/2}function w(t,s){return t&&(e.position(t).left+(e.isRtl?e.dimensions(t).width-e.dimensions(s).width:0))*(e.isRtl?-1:1)||0}function T(t,s){s-=1;const n=e.dimensions(t).width,i=s+n+2;return e.children(t).filter(h=>{const r=w(h,t),a=r+Math.min(e.dimensions(h).width,n);return r>=s&&a<=i})}function _(t,s,n){e.trigger(t,e.createEvent(s,!1,!1,n))}var D={mixins:[p,j,G,X],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:J},computed:{avgWidth(){return I(this.list)/this.length},finite({finite:t}){return t||Q(this.list,this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return e.last(this.sets);let t=0;const s=E(this.list),n=e.findIndex(this.slides,i=>{if(t>=s)return!0;t+=e.dimensions(i).width});return~n?n:this.length-1},sets({sets:t}){if(!t)return;let s=0;const n=[],i=e.dimensions(this.list).width;for(let h=0;h<this.length;h++){const r=e.dimensions(this.slides[h]).width;s+r>i&&(s=0),this.center?s<i/2&&s+r+e.dimensions(e.getIndex(+h+1,this.slides)).width/2>i/2&&(n.push(+h),s=i/2-r/2):s===0&&n.push(Math.min(+h,this.maxIndex)),s+=r}if(n.length)return n},transitionOptions(){return{center:this.center,list:this.list}},slides(){return e.children(this.list).filter(e.isVisible)}},connected(){e.toggleClass(this.$el,this.clsContainer,!e.$(`.${this.clsContainer}`,this.$el))},observe:A({target:({slides:t})=>t}),update:{write(){for(const t of this.navItems){const s=e.toNumber(e.data(t,this.attrItem));s!==!1&&(t.hidden=!this.maxIndex||s>this.maxIndex||this.sets&&!e.includes(this.sets,s))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1)),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!e.includes(this.sets,this.index)&&(this.index=this.getValidIndex());const s=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&s>1){for(let i=0;i<s;i++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const n=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=M(this.avgWidth/this.velocity)*(e.dimensions(this.slides[n]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&e.addClass(this._getTransitioner().getItemIn(),this.clsActive)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){e.css(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((h,r)=>e.css(h,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const s=this.slides[t];let n=e.dimensions(this.list).width/2-e.dimensions(s).width/2,i=0;for(;n>0;){const h=this.getIndex(--i+t,t),r=this.slides[h];e.css(r,"order",h>t?-2:-1),n-=e.dimensions(r).width}},updateActiveClasses(){const t=this._getTransitioner(this.index).getActives(),s=[this.clsActive,(!this.sets||e.includes(this.sets,e.toFloat(this.index)))&&this.clsActivated||""];for(const n of this.slides){const i=e.includes(t,n);e.toggleClass(n,s,i),e.attr(n,"aria-hidden",!i);for(const h of e.$$(e.selFocusable,n))e.hasOwn(h,"_tabindex")||(h._tabindex=e.attr(h,"tabindex")),e.attr(h,"tabindex",i?h._tabindex:-1)}},getValidIndex(t=this.index,s=this.prevIndex){if(t=this.getIndex(t,s),!this.sets)return t;let n;do{if(e.includes(this.sets,t))return t;n=t,t=this.getIndex(t+this.dir,s)}while(t!==n);return t},getAdjacentSlides(){const{width:t}=e.dimensions(this.list),s=-t,n=t*2,i=e.dimensions(this.slides[this.index]).width,h=this.center?t/2-i/2:0,r=new Set;for(const a of[-1,1]){let o=h+(a>0?i:0),l=0;do{const d=this.slides[this.getIndex(this.index+a+l++*a)];o+=e.dimensions(d).width*a,r.add(d)}while(this.length>l&&o>s&&o<n)}return Array.from(r)}}};function Q(t,s){if(!t||t.length<2)return!0;const{width:n}=e.dimensions(t);if(!s)return Math.ceil(I(t))<Math.trunc(n+Y(t));const i=e.children(t),h=Math.trunc(n/2);for(const r in i){const a=i[r],o=e.dimensions(a).width,l=new Set([a]);let d=0;for(const c of[-1,1]){let f=o/2,g=0;for(;f<h;){const m=i[e.getIndex(+r+c+g++*c,i)];if(l.has(m))return!0;f+=e.dimensions(m).width,l.add(m)}d=Math.max(d,o/2+e.dimensions(i[e.getIndex(+r+c,i)]).width/2-(f-h))}if(d>e.sumBy(i.filter(c=>!l.has(c)),c=>e.dimensions(c).width))return!0}return!1}function Y(t){return Math.max(0,...e.children(t).map(s=>e.dimensions(s).width))}return typeof window<"u"&&window.UIkit&&window.UIkit.component("slider",D),D});
|
|
1
|
+
/*! UIkit 3.16.25-dev.12f581d90 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */(function(e,p){typeof exports=="object"&&typeof module<"u"?module.exports=p(require("uikit-util")):typeof define=="function"&&define.amd?define("uikitslider",["uikit-util"],p):(e=typeof globalThis<"u"?globalThis:e||self,e.UIkitSlider=p(e.UIkit.util))})(this,function(e){"use strict";function p(t){return k(e.observeResize,t,"resize")}function W(t){return k(e.observeIntersection,t)}function P(t={}){return W({handler:function(s,n){const{targets:i=this.$el,preload:h=5}=t;for(const r of e.toNodes(e.isFunction(i)?i(this):i))e.$$('[loading="lazy"]',r).slice(0,h-1).forEach(o=>e.removeAttr(o,"loading"));for(const r of s.filter(({isIntersecting:o})=>o).map(({target:o})=>o))n.unobserve(r)},...t})}function k(t,s,n){return{observe:t,handler(){this.$emit(n)},...s}}var L={connected(){e.addClass(this.$el,this.$options.id)}},z={props:{i18n:Object},data:{i18n:null},methods:{t(t,...s){var n,i,h;let r=0;return((h=((n=this.i18n)==null?void 0:n[t])||((i=this.$options.i18n)==null?void 0:i[t]))==null?void 0:h.replace(/%s/g,()=>s[r++]||""))||""}}},B={props:{autoplay:Boolean,autoplayInterval:Number,pauseOnHover:Boolean},data:{autoplay:!1,autoplayInterval:7e3,pauseOnHover:!0},connected(){e.attr(this.list,"aria-live",this.autoplay?"off":"polite"),this.autoplay&&this.startAutoplay()},disconnected(){this.stopAutoplay()},update(){e.attr(this.slides,"tabindex","-1")},events:[{name:"visibilitychange",el(){return document},filter(){return this.autoplay},handler(){document.hidden?this.stopAutoplay():this.startAutoplay()}}],methods:{startAutoplay(){this.stopAutoplay(),this.interval=setInterval(()=>{this.stack.length||this.draggable&&e.matches(this.$el,":focus-within")||this.pauseOnHover&&e.matches(this.$el,":hover")||this.show("next")},this.autoplayInterval)},stopAutoplay(){clearInterval(this.interval)}}};const b={passive:!1,capture:!0},C={passive:!0,capture:!0},V="touchstart mousedown",y="touchmove mousemove",N="touchend touchcancel mouseup click input scroll";var U={props:{draggable:Boolean},data:{draggable:!0,threshold:10},created(){for(const t of["start","move","end"]){const s=this[t];this[t]=n=>{const i=e.getEventPos(n).x*(e.isRtl?-1:1);this.prevPos=i===this.pos?this.prevPos:this.pos,this.pos=i,s(n)}}},events:[{name:V,passive:!0,delegate(){return"".concat(this.selList," > *")},handler(t){!this.draggable||!e.isTouch(t)&&F(t.target)||e.closest(t.target,e.selInput)||t.button>0||this.length<2||this.start(t)}},{name:"dragstart",handler(t){t.preventDefault()}},{name:y,el(){return this.list},handler:e.noop,...b}],methods:{start(){this.drag=this.pos,this._transitioner?(this.percent=this._transitioner.percent(),this.drag+=this._transitioner.getDistance()*this.percent*this.dir,this._transitioner.cancel(),this._transitioner.translate(this.percent),this.dragging=!0,this.stack=[]):this.prevIndex=this.index,e.on(document,y,this.move,b),e.on(document,N,this.end,C),e.css(this.list,"userSelect","none")},move(t){const s=this.pos-this.drag;if(s===0||this.prevPos===this.pos||!this.dragging&&Math.abs(s)<this.threshold)return;e.css(this.list,"pointerEvents","none"),t.cancelable&&t.preventDefault(),this.dragging=!0,this.dir=s<0?1:-1;let{slides:n,prevIndex:i}=this,h=Math.abs(s),r=this.getIndex(i+this.dir),o=this._getDistance(i,r);for(;r!==i&&h>o;)this.drag-=o*this.dir,i=r,h-=o,r=this.getIndex(i+this.dir),o=this._getDistance(i,r);this.percent=h/o;const a=n[i],l=n[r],d=this.index!==r,c=i===r;let f;for(const g of[this.index,this.prevIndex])e.includes([r,i],g)||(e.trigger(n[g],"itemhidden",[this]),c&&(f=!0,this.prevIndex=i));(this.index===i&&this.prevIndex!==i||f)&&e.trigger(n[this.index],"itemshown",[this]),d&&(this.prevIndex=i,this.index=r,!c&&e.trigger(a,"beforeitemhide",[this]),e.trigger(l,"beforeitemshow",[this])),this._transitioner=this._translate(Math.abs(this.percent),a,!c&&l),d&&(!c&&e.trigger(a,"itemhide",[this]),e.trigger(l,"itemshow",[this]))},end(){if(e.off(document,y,this.move,b),e.off(document,N,this.end,C),this.dragging)if(this.dragging=null,this.index===this.prevIndex)this.percent=1-this.percent,this.dir*=-1,this._show(!1,this.index,!0),this._transitioner=null;else{const t=(e.isRtl?this.dir*(e.isRtl?1:-1):this.dir)<0==this.prevPos>this.pos;this.index=t?this.index:this.prevIndex,t&&(this.percent=1-this.percent),this.show(this.dir>0&&!t||this.dir<0&&t?"next":"previous",!0)}e.css(this.list,{userSelect:"",pointerEvents:""}),this.drag=this.percent=null},_getDistance(t,s){return this._getTransitioner(t,t!==s&&s).getDistance()||this.slides[t].offsetWidth}}};function F(t){return e.css(t,"userSelect")!=="none"&&e.toArray(t.childNodes).some(s=>s.nodeType===3&&s.textContent.trim())}function _(t,s=t.$el,n=""){if(s.id)return s.id;let i="".concat(t.$options.id,"-").concat(t._uid).concat(n);return e.$("#".concat(i))&&(i=_(t,s,"".concat(n,"-2"))),i}const v={TAB:9,ESC:27,SPACE:32,END:35,HOME:36,LEFT:37,UP:38,RIGHT:39,DOWN:40};var H={i18n:{next:"Next slide",previous:"Previous slide",slideX:"Slide %s",slideLabel:"%s of %s",role:"String"},data:{selNav:!1,role:"region"},computed:{nav({selNav:t},s){return e.$(t,s)},navChildren(){return e.children(this.nav)},selNavItem({attrItem:t}){return"[".concat(t,"],[data-").concat(t,"]")},navItems(t,s){return e.$$(this.selNavItem,s)}},watch:{nav(t,s){e.attr(t,"role","tablist"),s&&this.$emit()},list(t){e.attr(t,"role","presentation")},navChildren(t){e.attr(t,"role","presentation")},navItems(t){for(const s of t){const n=e.data(s,this.attrItem),i=e.$("a,button",s)||s;let h,r=null;if(e.isNumeric(n)){const o=e.toNumber(n),a=this.slides[o];a&&(a.id||(a.id=_(this,a,"-item-".concat(n))),r=a.id),h=this.t("slideX",e.toFloat(n)+1),e.attr(i,"role","tab")}else this.list&&(this.list.id||(this.list.id=_(this,this.list,"-items")),r=this.list.id),h=this.t(n);e.attr(i,{"aria-controls":r,"aria-label":e.attr(i,"aria-label")||h})}},slides(t){t.forEach((s,n)=>e.attr(s,{role:this.nav?"tabpanel":"group","aria-label":this.t("slideLabel",n+1,this.length),"aria-roledescription":this.nav?null:"slide"}))},length(t){const s=this.navChildren.length;if(this.nav&&t!==s){e.empty(this.nav);for(let n=0;n<t;n++)e.append(this.nav,"<li ".concat(this.attrItem,'="').concat(n,'"><a href></a></li>'))}}},connected(){e.attr(this.$el,{role:this.role,"aria-roledescription":"carousel"})},update:[{write(){this.navItems.concat(this.nav).forEach(t=>t&&(t.hidden=!this.maxIndex)),this.updateNav()},events:["resize"]}],events:[{name:"click keydown",delegate(){return this.selNavItem},handler(t){e.closest(t.target,"a,button")&&(t.type==="click"||t.keyCode===v.SPACE)&&(t.preventDefault(),this.show(e.data(t.current,this.attrItem)))}},{name:"itemshow",handler:"updateNav"},{name:"keydown",delegate(){return this.selNavItem},handler(t){const{current:s,keyCode:n}=t,i=e.data(s,this.attrItem);if(!e.isNumeric(i))return;let h=n===v.HOME?0:n===v.END?"last":n===v.LEFT?"previous":n===v.RIGHT?"next":-1;~h&&(t.preventDefault(),this.show(h))}}],methods:{updateNav(){const t=this.getValidIndex();let s;for(const n of this.navItems){const i=e.data(n,this.attrItem),h=e.$("a,button",n)||n;if(e.isNumeric(i)){const o=e.toNumber(i)===t;e.toggleClass(n,this.clsActive,o),e.attr(h,{"aria-selected":o,tabindex:o?null:-1}),o&&(s||(s=e.matches(e.parent(n),":focus-within")&&h))}else e.toggleClass(n,"uk-invisible",this.finite&&(i==="previous"&&t===0||i==="next"&&t>=this.maxIndex));s&&e.isInView(s)&&s.focus()}}}},j={mixins:[B,U,H,z],props:{clsActivated:Boolean,easing:String,index:Number,finite:Boolean,velocity:Number},data:()=>({easing:"ease",finite:!1,velocity:1,index:0,prevIndex:-1,stack:[],percent:0,clsActive:"uk-active",clsActivated:!1,Transitioner:!1,transitionOptions:{}}),connected(){this.prevIndex=-1,this.index=this.getValidIndex(this.$props.index),this.stack=[]},disconnected(){e.removeClass(this.slides,this.clsActive)},computed:{duration({velocity:t},s){return $(s.offsetWidth/t)},list({selList:t},s){return e.$(t,s)},maxIndex(){return this.length-1},slides(){return e.children(this.list)},length(){return this.slides.length}},watch:{slides(t,s){s&&this.$emit()}},observe:p(),methods:{show(t,s=!1){var n;if(this.dragging||!this.length)return;const{stack:i}=this,h=s?0:i.length,r=()=>{i.splice(h,1),i.length&&this.show(i.shift(),!0)};if(i[s?"unshift":"push"](t),!s&&i.length>1){i.length===2&&((n=this._transitioner)==null||n.forward(Math.min(this.duration,200)));return}const o=this.getIndex(this.index),a=e.hasClass(this.slides,this.clsActive)&&this.slides[o],l=this.getIndex(t,this.index),d=this.slides[l];if(a===d){r();return}if(this.dir=q(t,o),this.prevIndex=o,this.index=l,a&&!e.trigger(a,"beforeitemhide",[this])||!e.trigger(d,"beforeitemshow",[this,a])){this.index=this.prevIndex,r();return}const c=this._show(a,d,s).then(()=>{a&&e.trigger(a,"itemhidden",[this]),e.trigger(d,"itemshown",[this]),i.shift(),this._transitioner=null,requestAnimationFrame(()=>i.length&&this.show(i.shift(),!0))});return a&&e.trigger(a,"itemhide",[this]),e.trigger(d,"itemshow",[this]),c},getIndex(t=this.index,s=this.index){return e.clamp(e.getIndex(t,this.slides,s,this.finite),0,Math.max(0,this.maxIndex))},getValidIndex(t=this.index,s=this.prevIndex){return this.getIndex(t,s)},_show(t,s,n){if(this._transitioner=this._getTransitioner(t,s,this.dir,{easing:n?s.offsetWidth<600?"cubic-bezier(0.25, 0.46, 0.45, 0.94)":"cubic-bezier(0.165, 0.84, 0.44, 1)":this.easing,...this.transitionOptions}),!n&&!t)return this._translate(1),Promise.resolve();const{length:i}=this.stack;return this._transitioner[i>1?"forward":"show"](i>1?Math.min(this.duration,75+75/(i-1)):this.duration,this.percent)},_translate(t,s=this.prevIndex,n=this.index){const i=this._getTransitioner(s===n?!1:s,n);return i.translate(t),i},_getTransitioner(t=this.prevIndex,s=this.index,n=this.dir||1,i=this.transitionOptions){return new this.Transitioner(e.isNumber(t)?this.slides[t]:t,e.isNumber(s)?this.slides[s]:s,n*(e.isRtl?-1:1),i)}}};function q(t,s){return t==="next"?1:t==="previous"||t<s?-1:1}function $(t){return .5*t+300}var G={update:{write(){if(this.stack.length||this.dragging)return;const t=this.getValidIndex(this.index);!~this.prevIndex||this.index!==t?this.show(t):this._translate(1,this.prevIndex,this.index)},events:["resize"]}},X={observe:P({target:({slides:t})=>t,targets:t=>t.getAdjacentSlides()})};function M(t=0,s="%"){return t+=t?s:"","translate3d(".concat(t,", 0, 0)")}function J(t,s,n,{center:i,easing:h,list:r}){const o=t?x(t,r,i):x(s,r,i)+e.dimensions(s).width*n,a=s?x(s,r,i):o+e.dimensions(t).width*n*(e.isRtl?-1:1);let l;return{dir:n,show(d,c=0,f){const g=f?"linear":h;return d-=Math.round(d*e.clamp(c,-1,1)),this.translate(c),c=t?c:e.clamp(c,0,1),A(this.getItemIn(),"itemin",{percent:c,duration:d,timing:g,dir:n}),t&&A(this.getItemIn(!0),"itemout",{percent:1-c,duration:d,timing:g,dir:n}),new Promise(m=>{l||(l=m),e.Transition.start(r,{transform:M(-a*(e.isRtl?-1:1),"px")},d,g).then(l,e.noop)})},cancel(){return e.Transition.cancel(r)},reset(){e.css(r,"transform","")},async forward(d,c=this.percent()){return await this.cancel(),this.show(d,c,!0)},translate(d){const c=this.getDistance()*n*(e.isRtl?-1:1);e.css(r,"transform",M(e.clamp(-a+(c-c*d),-I(r),e.dimensions(r).width)*(e.isRtl?-1:1),"px"));const f=this.getActives(),g=this.getItemIn(),m=this.getItemIn(!0);d=t?e.clamp(d,-1,1):0;for(const u of e.children(r)){const D=e.includes(f,u),R=u===g,O=u===m,Z=R||!O&&(D||n*(e.isRtl?-1:1)===-1^w(u,r)>w(t||s));A(u,"itemtranslate".concat(Z?"in":"out"),{dir:n,percent:O?1-d:R?d:D?1:0})}},percent(){return Math.abs((e.css(r,"transform").split(",")[4]*(e.isRtl?-1:1)+o)/(a-o))},getDistance(){return Math.abs(a-o)},getItemIn(d=!1){let c=this.getActives(),f=E(r,x(s||t,r,i));if(d){const g=c;c=f,f=g}return f[e.findIndex(f,g=>!e.includes(c,g))]},getActives(){return E(r,x(t||s,r,i))}}}function x(t,s,n){const i=w(t,s);return n?i-K(t,s):Math.min(i,S(s))}function S(t){return Math.max(0,I(t)-e.dimensions(t).width)}function I(t){return e.sumBy(e.children(t),s=>e.dimensions(s).width)}function K(t,s){return e.dimensions(s).width/2-e.dimensions(t).width/2}function w(t,s){return t&&(e.position(t).left+(e.isRtl?e.dimensions(t).width-e.dimensions(s).width:0))*(e.isRtl?-1:1)||0}function E(t,s){s-=1;const n=e.dimensions(t).width,i=s+n+2;return e.children(t).filter(h=>{const r=w(h,t),o=r+Math.min(e.dimensions(h).width,n);return r>=s&&o<=i})}function A(t,s,n){e.trigger(t,e.createEvent(s,!1,!1,n))}var T={mixins:[L,j,G,X],props:{center:Boolean,sets:Boolean},data:{center:!1,sets:!1,attrItem:"uk-slider-item",selList:".uk-slider-items",selNav:".uk-slider-nav",clsContainer:"uk-slider-container",Transitioner:J},computed:{avgWidth(){return I(this.list)/this.length},finite({finite:t}){return t||Q(this.list,this.center)},maxIndex(){if(!this.finite||this.center&&!this.sets)return this.length-1;if(this.center)return e.last(this.sets);let t=0;const s=S(this.list),n=e.findIndex(this.slides,i=>{if(t>=s)return!0;t+=e.dimensions(i).width});return~n?n:this.length-1},sets({sets:t}){if(!t)return;let s=0;const n=[],i=e.dimensions(this.list).width;for(let h=0;h<this.length;h++){const r=e.dimensions(this.slides[h]).width;s+r>i&&(s=0),this.center?s<i/2&&s+r+e.dimensions(e.getIndex(+h+1,this.slides)).width/2>i/2&&(n.push(+h),s=i/2-r/2):s===0&&n.push(Math.min(+h,this.maxIndex)),s+=r}if(n.length)return n},transitionOptions(){return{center:this.center,list:this.list}},slides(){return e.children(this.list).filter(e.isVisible)}},connected(){e.toggleClass(this.$el,this.clsContainer,!e.$(".".concat(this.clsContainer),this.$el))},observe:p({target:({slides:t})=>t}),update:{write(){for(const t of this.navItems){const s=e.toNumber(e.data(t,this.attrItem));s!==!1&&(t.hidden=!this.maxIndex||s>this.maxIndex||this.sets&&!e.includes(this.sets,s))}this.length&&!this.dragging&&!this.stack.length&&(this.reorder(),this._translate(1)),this.updateActiveClasses()},events:["resize"]},events:{beforeitemshow(t){!this.dragging&&this.sets&&this.stack.length<2&&!e.includes(this.sets,this.index)&&(this.index=this.getValidIndex());const s=Math.abs(this.index-this.prevIndex+(this.dir>0&&this.index<this.prevIndex||this.dir<0&&this.index>this.prevIndex?(this.maxIndex+1)*this.dir:0));if(!this.dragging&&s>1){for(let i=0;i<s;i++)this.stack.splice(1,0,this.dir>0?"next":"previous");t.preventDefault();return}const n=this.dir<0||!this.slides[this.prevIndex]?this.index:this.prevIndex;this.duration=$(this.avgWidth/this.velocity)*(e.dimensions(this.slides[n]).width/this.avgWidth),this.reorder()},itemshow(){~this.prevIndex&&e.addClass(this._getTransitioner().getItemIn(),this.clsActive)},itemshown(){this.updateActiveClasses()}},methods:{reorder(){if(this.finite){e.css(this.slides,"order","");return}const t=this.dir>0&&this.slides[this.prevIndex]?this.prevIndex:this.index;if(this.slides.forEach((h,r)=>e.css(h,"order",this.dir>0&&r<t?1:this.dir<0&&r>=this.index?-1:"")),!this.center)return;const s=this.slides[t];let n=e.dimensions(this.list).width/2-e.dimensions(s).width/2,i=0;for(;n>0;){const h=this.getIndex(--i+t,t),r=this.slides[h];e.css(r,"order",h>t?-2:-1),n-=e.dimensions(r).width}},updateActiveClasses(){const t=this._getTransitioner(this.index).getActives(),s=[this.clsActive,(!this.sets||e.includes(this.sets,e.toFloat(this.index)))&&this.clsActivated||""];for(const n of this.slides){const i=e.includes(t,n);e.toggleClass(n,s,i),e.attr(n,"aria-hidden",!i);for(const h of e.$$(e.selFocusable,n))e.hasOwn(h,"_tabindex")||(h._tabindex=e.attr(h,"tabindex")),e.attr(h,"tabindex",i?h._tabindex:-1)}},getValidIndex(t=this.index,s=this.prevIndex){if(t=this.getIndex(t,s),!this.sets)return t;let n;do{if(e.includes(this.sets,t))return t;n=t,t=this.getIndex(t+this.dir,s)}while(t!==n);return t},getAdjacentSlides(){const{width:t}=e.dimensions(this.list),s=-t,n=t*2,i=e.dimensions(this.slides[this.index]).width,h=this.center?t/2-i/2:0,r=new Set;for(const o of[-1,1]){let a=h+(o>0?i:0),l=0;do{const d=this.slides[this.getIndex(this.index+o+l++*o)];a+=e.dimensions(d).width*o,r.add(d)}while(this.length>l&&a>s&&a<n)}return Array.from(r)}}};function Q(t,s){if(!t||t.length<2)return!0;const{width:n}=e.dimensions(t);if(!s)return Math.ceil(I(t))<Math.trunc(n+Y(t));const i=e.children(t),h=Math.trunc(n/2);for(const r in i){const o=i[r],a=e.dimensions(o).width,l=new Set([o]);let d=0;for(const c of[-1,1]){let f=a/2,g=0;for(;f<h;){const m=i[e.getIndex(+r+c+g++*c,i)];if(l.has(m))return!0;f+=e.dimensions(m).width,l.add(m)}d=Math.max(d,a/2+e.dimensions(i[e.getIndex(+r+c,i)]).width/2-(f-h))}if(d>e.sumBy(i.filter(c=>!l.has(c)),c=>e.dimensions(c).width))return!0}return!1}function Y(t){return Math.max(0,...e.children(t).map(s=>e.dimensions(s).width))}return typeof window<"u"&&window.UIkit&&window.UIkit.component("slider",T),T});
|