uikit 3.19.5-dev.9d6b5103b → 3.19.5-dev.c6a7fbca6
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/CHANGELOG.md +4 -0
- 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 +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +62 -44
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +62 -44
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +63 -45
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +62 -44
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +62 -44
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -1
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +76 -53
- 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 +76 -53
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/core/drop.js +0 -6
- package/src/js/core/inverse.js +11 -1
- package/src/js/util/selector.js +65 -37
- package/src/js/util/svg.js +1 -12
- package/tests/modal.html +2 -2
package/dist/js/uikit-core.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.19.5-dev.
|
|
1
|
+
/*! UIkit 3.19.5-dev.c6a7fbca6 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -367,55 +367,81 @@
|
|
|
367
367
|
function findAll(selector, context) {
|
|
368
368
|
return toNodes(_query(selector, toNode(context), "querySelectorAll"));
|
|
369
369
|
}
|
|
370
|
-
const contextSelectorRe = /(^|[^\\],)\s*[!>+~-]/;
|
|
371
|
-
const isContextSelector = memoize((selector) => selector.match(contextSelectorRe));
|
|
372
370
|
function getContext(selector, context = document) {
|
|
373
|
-
return isString(selector) &&
|
|
374
|
-
}
|
|
375
|
-
const
|
|
376
|
-
const
|
|
371
|
+
return isString(selector) && parseSelector(selector).isContextSelector || isDocument(context) ? context : context.ownerDocument;
|
|
372
|
+
}
|
|
373
|
+
const addStarRe = /([!>+~-])(?=\s+[!>+~-]|\s*$)/g;
|
|
374
|
+
const splitSelectorRe = /.*?[^\\](?![^(]*\))(?:,|$)/g;
|
|
375
|
+
const trailingCommaRe = /\s*,$/;
|
|
376
|
+
const parseSelector = memoize((selector) => {
|
|
377
|
+
selector = selector.replace(addStarRe, "$1 *");
|
|
378
|
+
let isContextSelector = false;
|
|
379
|
+
const selectors = [];
|
|
380
|
+
for (let sel of selector.match(splitSelectorRe)) {
|
|
381
|
+
sel = sel.replace(trailingCommaRe, "").trim();
|
|
382
|
+
if (sel[0] === ">") {
|
|
383
|
+
sel = `:scope ${sel}`;
|
|
384
|
+
}
|
|
385
|
+
isContextSelector || (isContextSelector = ["!", "+", "~", "-"].includes(sel[0]));
|
|
386
|
+
selectors.push(sel);
|
|
387
|
+
}
|
|
388
|
+
return {
|
|
389
|
+
selector: selectors.join(","),
|
|
390
|
+
selectors,
|
|
391
|
+
isContextSelector
|
|
392
|
+
};
|
|
393
|
+
});
|
|
377
394
|
function _query(selector, context = document, queryFn) {
|
|
378
395
|
if (!selector || !isString(selector)) {
|
|
379
396
|
return selector;
|
|
380
397
|
}
|
|
381
|
-
|
|
382
|
-
if (isContextSelector
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
398
|
+
const parsed = parseSelector(selector);
|
|
399
|
+
if (!parsed.isContextSelector) {
|
|
400
|
+
return _doQuery(context, queryFn, parsed.selector);
|
|
401
|
+
}
|
|
402
|
+
selector = "";
|
|
403
|
+
const isSingle = parsed.selectors.length === 1;
|
|
404
|
+
for (let sel of parsed.selectors) {
|
|
405
|
+
let ctx = context;
|
|
406
|
+
if (sel[0] === "!") {
|
|
407
|
+
const selectors = sel.substr(1).trim().split(" ");
|
|
408
|
+
ctx = parent(context).closest(selectors[0]);
|
|
409
|
+
sel = selectors.slice(1).join(" ").trim();
|
|
410
|
+
if (!sel.length && isSingle) {
|
|
411
|
+
return ctx;
|
|
412
|
+
}
|
|
413
|
+
}
|
|
414
|
+
if (sel[0] === "-") {
|
|
415
|
+
const selectors = sel.substr(1).trim().split(" ");
|
|
416
|
+
const prev = (ctx || context).previousElementSibling;
|
|
417
|
+
ctx = matches(prev, sel.substr(1)) ? prev : null;
|
|
418
|
+
sel = selectors.slice(1).join(" ");
|
|
419
|
+
if (!sel.length && isSingle) {
|
|
420
|
+
return ctx;
|
|
421
|
+
}
|
|
422
|
+
} else if (sel[0] === "~" || sel[0] === "+" && isSingle) {
|
|
423
|
+
return _doQuery(
|
|
424
|
+
parent(context),
|
|
425
|
+
queryFn,
|
|
426
|
+
`:scope :nth-child(${index(context) + 1}) ${sel}`
|
|
427
|
+
);
|
|
404
428
|
}
|
|
405
|
-
if (
|
|
406
|
-
|
|
429
|
+
if (ctx) {
|
|
430
|
+
selector += `${selector ? "," : ""}${domPath(ctx)} ${sel}`;
|
|
407
431
|
}
|
|
408
432
|
}
|
|
433
|
+
if (!isDocument(context)) {
|
|
434
|
+
context = context.ownerDocument;
|
|
435
|
+
}
|
|
436
|
+
return _doQuery(context, queryFn, selector);
|
|
437
|
+
}
|
|
438
|
+
function _doQuery(context, queryFn, selector) {
|
|
409
439
|
try {
|
|
410
440
|
return context[queryFn](selector);
|
|
411
441
|
} catch (e) {
|
|
412
442
|
return null;
|
|
413
443
|
}
|
|
414
444
|
}
|
|
415
|
-
const selectorRe = /.*?[^\\](?![^(]*\))(?:,|$)/g;
|
|
416
|
-
const splitSelector = memoize(
|
|
417
|
-
(selector) => selector.match(selectorRe).map((selector2) => selector2.replace(/,$/, "").trim())
|
|
418
|
-
);
|
|
419
445
|
function domPath(element) {
|
|
420
446
|
const names = [];
|
|
421
447
|
while (element.parentNode) {
|
|
@@ -2153,7 +2179,7 @@
|
|
|
2153
2179
|
};
|
|
2154
2180
|
App.util = util;
|
|
2155
2181
|
App.options = {};
|
|
2156
|
-
App.version = "3.19.5-dev.
|
|
2182
|
+
App.version = "3.19.5-dev.c6a7fbca6";
|
|
2157
2183
|
|
|
2158
2184
|
const PREFIX = "uk-";
|
|
2159
2185
|
const DATA = "__uikit__";
|
|
@@ -3253,10 +3279,6 @@
|
|
|
3253
3279
|
}
|
|
3254
3280
|
css(this.$el, this._style);
|
|
3255
3281
|
},
|
|
3256
|
-
observe: lazyload({
|
|
3257
|
-
target: ({ toggle, $el }) => query(toggle, $el),
|
|
3258
|
-
targets: ({ $el }) => $el
|
|
3259
|
-
}),
|
|
3260
3282
|
events: [
|
|
3261
3283
|
{
|
|
3262
3284
|
name: "click",
|
|
@@ -4766,6 +4788,12 @@
|
|
|
4766
4788
|
target: ({ target }, $el) => target ? $$(target, $el) : [$el]
|
|
4767
4789
|
},
|
|
4768
4790
|
observe: [
|
|
4791
|
+
intersection({
|
|
4792
|
+
handler([{ isIntersecting }]) {
|
|
4793
|
+
this.isIntersecting = isIntersecting;
|
|
4794
|
+
},
|
|
4795
|
+
args: { intersecting: false }
|
|
4796
|
+
}),
|
|
4769
4797
|
mutation({
|
|
4770
4798
|
target: ({ target }) => target,
|
|
4771
4799
|
options: { attributes: true, attributeFilter: ["class"], attributeOldValue: true }
|
|
@@ -4802,6 +4830,9 @@
|
|
|
4802
4830
|
],
|
|
4803
4831
|
update: {
|
|
4804
4832
|
read() {
|
|
4833
|
+
if (!this.isIntersecting) {
|
|
4834
|
+
return false;
|
|
4835
|
+
}
|
|
4805
4836
|
for (const target of this.target) {
|
|
4806
4837
|
replaceClass(
|
|
4807
4838
|
target,
|
|
@@ -6084,18 +6115,10 @@
|
|
|
6084
6115
|
}
|
|
6085
6116
|
|
|
6086
6117
|
function getMaxPathLength(el) {
|
|
6087
|
-
return Math.ceil(
|
|
6088
|
-
|
|
6089
|
-
|
|
6090
|
-
|
|
6091
|
-
try {
|
|
6092
|
-
return stroke.getTotalLength();
|
|
6093
|
-
} catch (e) {
|
|
6094
|
-
return 0;
|
|
6095
|
-
}
|
|
6096
|
-
})
|
|
6097
|
-
)
|
|
6098
|
-
);
|
|
6118
|
+
return Math.ceil(Math.max(0, ...$$("[stroke]", el).map((stroke) => {
|
|
6119
|
+
var _a;
|
|
6120
|
+
return (_a = stroke.getTotalLength) == null ? void 0 : _a.call(stroke);
|
|
6121
|
+
})));
|
|
6099
6122
|
}
|
|
6100
6123
|
|
|
6101
6124
|
var svg = {
|