uikit 3.25.18-dev.4dfe15b → 3.25.18-dev.9fa57fb
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 +6 -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 +2 -2
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +2 -2
- 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 +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +4 -4
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +2 -2
- 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 +4 -4
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +10 -10
- 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 +16 -16
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/instance.js +5 -3
- package/src/js/components/slider.js +2 -2
- package/src/js/components/upload.js +4 -4
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/util/event.js +3 -3
- package/src/js/util/position.js +2 -2
- package/tests/sortable.html +4 -4
package/dist/js/uikit-core.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.25.18-dev.
|
|
1
|
+
/*! UIkit 3.25.18-dev.9fa57fb | https://www.getuikit.com | (c) 2014 - 2026 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -509,9 +509,7 @@
|
|
|
509
509
|
return off2;
|
|
510
510
|
}
|
|
511
511
|
function trigger(targets, event, detail2) {
|
|
512
|
-
return toEventTargets(targets).every(
|
|
513
|
-
(target) => target.dispatchEvent(createEvent(event, true, true, detail2))
|
|
514
|
-
);
|
|
512
|
+
return toEventTargets(targets).map((target) => target.dispatchEvent(createEvent(event, true, true, detail2))).every((result) => result);
|
|
515
513
|
}
|
|
516
514
|
function createEvent(e, bubbles = true, cancelable = false, detail2) {
|
|
517
515
|
if (isString(e)) {
|
|
@@ -1512,8 +1510,8 @@
|
|
|
1512
1510
|
element: options.attach.element.map(flipAttachAxis).reverse(),
|
|
1513
1511
|
target: options.attach.target.map(flipAttachAxis).reverse()
|
|
1514
1512
|
},
|
|
1515
|
-
offset: options.offset.reverse(),
|
|
1516
|
-
placement: options.placement.reverse(),
|
|
1513
|
+
offset: [...options.offset].reverse(),
|
|
1514
|
+
placement: [...options.placement].reverse(),
|
|
1517
1515
|
recursion: true
|
|
1518
1516
|
});
|
|
1519
1517
|
}
|
|
@@ -1681,7 +1679,7 @@
|
|
|
1681
1679
|
wrapInner: wrapInner
|
|
1682
1680
|
});
|
|
1683
1681
|
|
|
1684
|
-
var VERSION = '3.25.18-dev.
|
|
1682
|
+
var VERSION = '3.25.18-dev.9fa57fb';
|
|
1685
1683
|
|
|
1686
1684
|
function initUpdates(instance) {
|
|
1687
1685
|
instance._data = {};
|
|
@@ -2361,9 +2359,11 @@
|
|
|
2361
2359
|
callDisconnected(instance);
|
|
2362
2360
|
}
|
|
2363
2361
|
callHook(instance, "destroy");
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2362
|
+
if (el) {
|
|
2363
|
+
detachFromElement(el, instance);
|
|
2364
|
+
if (removeEl) {
|
|
2365
|
+
remove$1(el);
|
|
2366
|
+
}
|
|
2367
2367
|
}
|
|
2368
2368
|
};
|
|
2369
2369
|
App.prototype.$create = createComponent;
|