uikit 3.14.4-dev.10a07fe5a → 3.14.4-dev.19f33e082
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 +43 -13
- package/build/util.js +1 -0
- package/dist/css/uikit-core-rtl.css +380 -102
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +380 -102
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +397 -107
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +397 -107
- 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 +7 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +111 -139
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +111 -139
- 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 +4 -5
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -5
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +22 -7
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +4 -5
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -7
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +107 -137
- 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 +523 -463
- package/dist/js/uikit-core.min.js +14 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +576 -499
- package/dist/js/uikit.min.js +14 -1
- package/package.json +1 -1
- package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
- package/src/images/components/nav-parent-icon.svg +3 -0
- package/src/images/components/navbar-parent-icon.svg +3 -0
- package/src/images/components/navbar-toggle-icon.svg +22 -3
- package/src/js/api/state.js +2 -2
- package/src/js/components/filter.js +5 -3
- package/src/js/components/sortable.js +2 -3
- package/src/js/core/accordion.js +9 -17
- package/src/js/core/alert.js +35 -14
- package/src/js/core/drop.js +94 -67
- package/src/js/core/height-viewport.js +14 -6
- package/src/js/core/icon.js +16 -0
- package/src/js/core/index.js +2 -0
- package/src/js/core/leader.js +2 -2
- package/src/js/core/navbar.js +44 -30
- package/src/js/core/scroll.js +37 -10
- package/src/js/core/sticky.js +8 -9
- package/src/js/core/toggle.js +3 -5
- package/src/js/mixin/media.js +4 -5
- package/src/js/mixin/modal.js +10 -7
- package/src/js/mixin/position.js +26 -11
- package/src/js/mixin/slider-drag.js +20 -8
- package/src/js/mixin/style.js +11 -0
- package/src/js/mixin/togglable.js +88 -133
- package/src/js/util/animation.js +4 -3
- package/src/js/util/class.js +3 -1
- package/src/js/util/dimensions.js +6 -6
- package/src/js/util/filter.js +3 -7
- package/src/js/util/position.js +108 -107
- package/src/js/util/style.js +4 -13
- package/src/js/util/viewport.js +5 -32
- package/src/less/components/_import.less +1 -0
- package/src/less/components/drop.less +1 -18
- package/src/less/components/dropbar.less +115 -0
- package/src/less/components/dropdown.less +16 -16
- package/src/less/components/leader.less +1 -1
- package/src/less/components/nav.less +240 -63
- package/src/less/components/navbar.less +73 -28
- package/src/less/components/utility.less +21 -4
- package/src/less/theme/_import.less +1 -0
- package/src/less/theme/dropbar.less +44 -0
- package/src/less/theme/dropdown.less +0 -11
- package/src/less/theme/nav.less +43 -9
- package/src/less/theme/navbar.less +4 -10
- package/src/scss/components/_import.scss +1 -0
- package/src/scss/components/drop.scss +1 -18
- package/src/scss/components/dropbar.scss +115 -0
- package/src/scss/components/dropdown.scss +16 -16
- package/src/scss/components/leader.scss +1 -1
- package/src/scss/components/nav.scss +189 -51
- package/src/scss/components/navbar.scss +61 -28
- package/src/scss/components/utility.scss +19 -3
- package/src/scss/mixins-theme.scss +93 -25
- package/src/scss/mixins.scss +89 -17
- package/src/scss/theme/_import.scss +1 -0
- package/src/scss/theme/dropbar.scss +44 -0
- package/src/scss/theme/dropdown.scss +0 -8
- package/src/scss/theme/nav.scss +41 -9
- package/src/scss/theme/navbar.scss +4 -7
- package/src/scss/variables-theme.scss +69 -17
- package/src/scss/variables.scss +58 -13
- package/tests/accordion.html +2 -2
- package/tests/alert.html +2 -2
- package/tests/countdown.html +1 -1
- package/tests/drop.html +451 -371
- package/tests/dropbar.html +456 -0
- package/tests/dropdown.html +26 -401
- package/tests/filter.html +9 -12
- package/tests/form.html +1 -1
- package/tests/index.html +126 -107
- package/tests/js/index.js +1 -4
- package/tests/lightbox.html +5 -5
- package/tests/list.html +8 -8
- package/tests/modal.html +13 -13
- package/tests/nav.html +117 -75
- package/tests/navbar.html +2001 -1130
- package/tests/offcanvas.html +17 -21
- package/tests/parallax.html +1 -1
- package/tests/position.html +18 -16
- package/tests/progress.html +9 -9
- package/tests/scroll.html +7 -10
- package/tests/search.html +5 -5
- package/tests/slider.html +6 -5
- package/tests/slideshow.html +8 -8
- package/tests/sortable.html +6 -8
- package/tests/sticky-navbar.html +6 -6
- package/tests/sticky.html +8 -8
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/table.html +7 -7
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +1 -1
- package/tests/upload.html +11 -11
- package/tests/utility.html +19 -0
- package/src/images/backgrounds/nav-parent-close.svg +0 -3
package/dist/js/uikit.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.19f33e082 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
|
|
3
3
|
(function (global, factory) {
|
|
4
4
|
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
|
|
@@ -383,12 +383,8 @@
|
|
|
383
383
|
}
|
|
384
384
|
|
|
385
385
|
function closest(element, selector) {
|
|
386
|
-
if (startsWith(selector, '>')) {
|
|
387
|
-
selector = selector.slice(1);
|
|
388
|
-
}
|
|
389
|
-
|
|
390
386
|
return isElement(element) ?
|
|
391
|
-
element.closest(selector) :
|
|
387
|
+
element.closest(startsWith(selector, '>') ? selector.slice(1) : selector) :
|
|
392
388
|
toNodes(element).
|
|
393
389
|
map((element) => closest(element, selector)).
|
|
394
390
|
filter(Boolean);
|
|
@@ -396,8 +392,8 @@
|
|
|
396
392
|
|
|
397
393
|
function within(element, selector) {
|
|
398
394
|
return isString(selector) ?
|
|
399
|
-
|
|
400
|
-
|
|
395
|
+
!!closest(element, selector) :
|
|
396
|
+
toNode(selector).contains(toNode(element));
|
|
401
397
|
}
|
|
402
398
|
|
|
403
399
|
function parents(element, selector) {
|
|
@@ -785,18 +781,11 @@
|
|
|
785
781
|
return elements[0];
|
|
786
782
|
}
|
|
787
783
|
|
|
788
|
-
const propertyRe = /^\s*(["'])?(.*?)\1\s*$/;
|
|
789
|
-
function getCssVar(name, element) {if (element === void 0) {element = document.documentElement;}
|
|
790
|
-
return css(element, "--uk-" + name).replace(propertyRe, '$2');
|
|
791
|
-
}
|
|
792
|
-
|
|
793
784
|
// https://drafts.csswg.org/cssom/#dom-cssstyledeclaration-setproperty
|
|
794
785
|
const propName = memoize((name) => vendorPropName(name));
|
|
795
786
|
|
|
796
|
-
const cssPrefixes = ['webkit', 'moz'];
|
|
797
|
-
|
|
798
787
|
function vendorPropName(name) {
|
|
799
|
-
if (name
|
|
788
|
+
if (startsWith(name, '--')) {
|
|
800
789
|
return name;
|
|
801
790
|
}
|
|
802
791
|
|
|
@@ -808,11 +797,8 @@
|
|
|
808
797
|
return name;
|
|
809
798
|
}
|
|
810
799
|
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
while (i--) {
|
|
815
|
-
prefixedName = "-" + cssPrefixes[i] + "-" + name;
|
|
800
|
+
for (const prefix of ['webkit', 'moz']) {
|
|
801
|
+
const prefixedName = "-" + prefix + "-" + name;
|
|
816
802
|
if (prefixedName in style) {
|
|
817
803
|
return prefixedName;
|
|
818
804
|
}
|
|
@@ -828,7 +814,9 @@
|
|
|
828
814
|
}
|
|
829
815
|
|
|
830
816
|
function removeClasses(element, cls) {
|
|
831
|
-
attr(element, 'class', (value) =>
|
|
817
|
+
attr(element, 'class', (value) =>
|
|
818
|
+
(value || '').replace(new RegExp("\\b" + cls + "\\b\\s?", 'g'), ''));
|
|
819
|
+
|
|
832
820
|
}
|
|
833
821
|
|
|
834
822
|
function replaceClass(element) {
|
|
@@ -913,13 +901,14 @@
|
|
|
913
901
|
const Transition = {
|
|
914
902
|
start: transition,
|
|
915
903
|
|
|
916
|
-
stop(element) {
|
|
904
|
+
async stop(element) {
|
|
917
905
|
trigger(element, 'transitionend');
|
|
918
|
-
|
|
906
|
+
await Promise.resolve();
|
|
919
907
|
},
|
|
920
908
|
|
|
921
|
-
cancel(element) {
|
|
909
|
+
async cancel(element) {
|
|
922
910
|
trigger(element, 'transitioncanceled');
|
|
911
|
+
await Promise.resolve();
|
|
923
912
|
},
|
|
924
913
|
|
|
925
914
|
inProgress(element) {
|
|
@@ -929,7 +918,7 @@
|
|
|
929
918
|
|
|
930
919
|
const animationPrefix = 'uk-animation-';
|
|
931
920
|
|
|
932
|
-
function animate$
|
|
921
|
+
function animate$2(element, animation, duration, origin, out) {if (duration === void 0) {duration = 200;}
|
|
933
922
|
return Promise.all(
|
|
934
923
|
toNodes(element).map(
|
|
935
924
|
(element) =>
|
|
@@ -965,10 +954,10 @@
|
|
|
965
954
|
|
|
966
955
|
const inProgress = new RegExp(animationPrefix + "(enter|leave)");
|
|
967
956
|
const Animation = {
|
|
968
|
-
in: animate$
|
|
957
|
+
in: animate$2,
|
|
969
958
|
|
|
970
959
|
out(element, animation, duration, origin) {
|
|
971
|
-
return animate$
|
|
960
|
+
return animate$2(element, animation, duration, origin, true);
|
|
972
961
|
},
|
|
973
962
|
|
|
974
963
|
inProgress(element) {
|
|
@@ -1060,13 +1049,13 @@
|
|
|
1060
1049
|
}
|
|
1061
1050
|
|
|
1062
1051
|
function offsetPosition(element) {
|
|
1063
|
-
const offset = [0, 0];
|
|
1064
|
-
|
|
1065
1052
|
element = toNode(element);
|
|
1066
1053
|
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1054
|
+
const offset = [element.offsetTop, element.offsetLeft];
|
|
1055
|
+
|
|
1056
|
+
while (element = element.offsetParent) {
|
|
1057
|
+
offset[0] += element.offsetTop + toFloat(css(element, "borderTopWidth"));
|
|
1058
|
+
offset[1] += element.offsetLeft + toFloat(css(element, "borderLeftWidth"));
|
|
1070
1059
|
|
|
1071
1060
|
if (css(element, 'position') === 'fixed') {
|
|
1072
1061
|
const win = toWindow(element);
|
|
@@ -1074,7 +1063,7 @@
|
|
|
1074
1063
|
offset[1] += win.scrollX;
|
|
1075
1064
|
return offset;
|
|
1076
1065
|
}
|
|
1077
|
-
}
|
|
1066
|
+
}
|
|
1078
1067
|
|
|
1079
1068
|
return offset;
|
|
1080
1069
|
}
|
|
@@ -1293,9 +1282,9 @@
|
|
|
1293
1282
|
const hasTouch = inBrowser && 'ontouchstart' in window;
|
|
1294
1283
|
const hasPointerEvents = inBrowser && window.PointerEvent;
|
|
1295
1284
|
|
|
1296
|
-
const pointerDown = hasPointerEvents ? 'pointerdown' : hasTouch ? 'touchstart' : 'mousedown';
|
|
1297
|
-
const pointerMove = hasPointerEvents ? 'pointermove' : hasTouch ? 'touchmove' : 'mousemove';
|
|
1298
|
-
const pointerUp = hasPointerEvents ? 'pointerup' : hasTouch ? 'touchend' : 'mouseup';
|
|
1285
|
+
const pointerDown$1 = hasPointerEvents ? 'pointerdown' : hasTouch ? 'touchstart' : 'mousedown';
|
|
1286
|
+
const pointerMove$1 = hasPointerEvents ? 'pointermove' : hasTouch ? 'touchmove' : 'mousemove';
|
|
1287
|
+
const pointerUp$1 = hasPointerEvents ? 'pointerup' : hasTouch ? 'touchend' : 'mouseup';
|
|
1299
1288
|
const pointerEnter = hasPointerEvents ? 'pointerenter' : hasTouch ? '' : 'mouseenter';
|
|
1300
1289
|
const pointerLeave = hasPointerEvents ? 'pointerleave' : hasTouch ? '' : 'mouseleave';
|
|
1301
1290
|
const pointerCancel = hasPointerEvents ? 'pointercancel' : 'touchcancel';
|
|
@@ -1795,20 +1784,6 @@
|
|
|
1795
1784
|
|
|
1796
1785
|
}
|
|
1797
1786
|
|
|
1798
|
-
function scrollTop(element, top) {
|
|
1799
|
-
if (isWindow(element) || isDocument(element)) {
|
|
1800
|
-
element = scrollingElement(element);
|
|
1801
|
-
} else {
|
|
1802
|
-
element = toNode(element);
|
|
1803
|
-
}
|
|
1804
|
-
|
|
1805
|
-
if (isUndefined(top)) {
|
|
1806
|
-
return element.scrollTop;
|
|
1807
|
-
} else {
|
|
1808
|
-
element.scrollTop = top;
|
|
1809
|
-
}
|
|
1810
|
-
}
|
|
1811
|
-
|
|
1812
1787
|
function scrollIntoView(element, _temp) {let { offset: offsetBy = 0 } = _temp === void 0 ? {} : _temp;
|
|
1813
1788
|
const parents = isVisible(element) ? scrollParents(element) : [];
|
|
1814
1789
|
return parents.reduce(
|
|
@@ -1850,7 +1825,7 @@
|
|
|
1850
1825
|
(function step() {
|
|
1851
1826
|
const percent = ease(clamp((Date.now() - start) / duration));
|
|
1852
1827
|
|
|
1853
|
-
scrollTop
|
|
1828
|
+
element.scrollTop = scroll + top * percent;
|
|
1854
1829
|
|
|
1855
1830
|
// scroll more if we have not reached our destination
|
|
1856
1831
|
if (percent === 1) {
|
|
@@ -1913,12 +1888,10 @@
|
|
|
1913
1888
|
function offsetViewport(scrollElement) {
|
|
1914
1889
|
const window = toWindow(scrollElement);
|
|
1915
1890
|
const {
|
|
1916
|
-
document: {
|
|
1891
|
+
document: { documentElement } } =
|
|
1917
1892
|
window;
|
|
1918
1893
|
let viewportElement =
|
|
1919
|
-
scrollElement === scrollingElement(scrollElement)
|
|
1920
|
-
window :
|
|
1921
|
-
scrollElement;
|
|
1894
|
+
scrollElement === scrollingElement(scrollElement) ? window : scrollElement;
|
|
1922
1895
|
|
|
1923
1896
|
const { visualViewport } = window;
|
|
1924
1897
|
if (isWindow(viewportElement) && visualViewport) {
|
|
@@ -1937,7 +1910,7 @@
|
|
|
1937
1910
|
// iOS 12 returns <body> as scrollingElement
|
|
1938
1911
|
viewportElement = documentElement;
|
|
1939
1912
|
} else {
|
|
1940
|
-
rect[start] += toFloat(css(viewportElement, "border" +
|
|
1913
|
+
rect[start] += toFloat(css(viewportElement, "border-" + start + "-width"));
|
|
1941
1914
|
}
|
|
1942
1915
|
rect[prop] = rect[dir] = viewportElement["client" + ucfirst(prop)];
|
|
1943
1916
|
rect[end] = rect[prop] + rect[start];
|
|
@@ -1962,126 +1935,65 @@
|
|
|
1962
1935
|
...options.attach },
|
|
1963
1936
|
|
|
1964
1937
|
offset: [0, 0],
|
|
1938
|
+
placement: [],
|
|
1965
1939
|
...options };
|
|
1966
1940
|
|
|
1967
1941
|
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
attachTo(element, target, options);
|
|
1971
|
-
|
|
1972
|
-
offset(element, dim);
|
|
1973
|
-
}
|
|
1974
|
-
|
|
1975
|
-
function attachTo(element, target, options) {
|
|
1976
|
-
let { attach, offset: offsetBy } = {
|
|
1977
|
-
attach: {
|
|
1978
|
-
element: ['left', 'top'],
|
|
1979
|
-
target: ['left', 'top'],
|
|
1980
|
-
...options.attach },
|
|
1981
|
-
|
|
1982
|
-
offset: [0, 0],
|
|
1983
|
-
...options };
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
const position = offset(element);
|
|
1987
|
-
const targetOffset = offset(target);
|
|
1988
|
-
for (const [i, [prop, dir, start, end]] of Object.entries(dirs)) {
|
|
1989
|
-
position[start] = position[dir] =
|
|
1990
|
-
targetOffset[start] +
|
|
1991
|
-
moveBy(attach.target[i], end, targetOffset[prop]) -
|
|
1992
|
-
moveBy(attach.element[i], end, position[prop]) +
|
|
1993
|
-
+offsetBy[i];
|
|
1994
|
-
position[end] = position[start] + position[prop];
|
|
1942
|
+
if (!isArray(target)) {
|
|
1943
|
+
target = [target, target];
|
|
1995
1944
|
}
|
|
1996
|
-
return position;
|
|
1997
|
-
}
|
|
1998
1945
|
|
|
1999
|
-
|
|
2000
|
-
return start === 'center' ? dim / 2 : start === end ? dim : 0;
|
|
1946
|
+
offset(element, getPosition(element, target, options));
|
|
2001
1947
|
}
|
|
2002
1948
|
|
|
2003
|
-
function
|
|
1949
|
+
function getPosition(element, target, options) {
|
|
2004
1950
|
const position = attachTo(element, target, options);
|
|
2005
|
-
const targetDim = offset(target);
|
|
2006
1951
|
|
|
2007
1952
|
let {
|
|
2008
|
-
flip,
|
|
2009
1953
|
attach: { element: elAttach, target: targetAttach },
|
|
2010
1954
|
offset: elOffset,
|
|
2011
1955
|
boundary,
|
|
2012
|
-
|
|
2013
|
-
|
|
1956
|
+
viewportOffset,
|
|
1957
|
+
placement } =
|
|
2014
1958
|
options;
|
|
2015
1959
|
|
|
2016
|
-
let
|
|
2017
|
-
|
|
2018
|
-
viewports =
|
|
2019
|
-
|
|
2020
|
-
const [scrollElement] = viewports;
|
|
2021
|
-
viewports.push(viewport);
|
|
2022
|
-
|
|
2023
|
-
const offsetPosition = { ...position };
|
|
2024
|
-
for (const [i, [prop, dir, start, end]] of Object.entries(dirs)) {
|
|
2025
|
-
if (flip !== true && !includes(flip, dir)) {
|
|
2026
|
-
continue;
|
|
2027
|
-
}
|
|
2028
|
-
|
|
2029
|
-
const willFlip =
|
|
2030
|
-
!intersectLine(position, targetDim, i) && intersectLine(position, targetDim, 1 - i);
|
|
1960
|
+
let offsetPosition = position;
|
|
1961
|
+
for (const [i, [prop,, start, end]] of Object.entries(dirs)) {
|
|
1962
|
+
let viewports = scrollParents(target[i]);
|
|
1963
|
+
const [scrollElement] = viewports;
|
|
2031
1964
|
|
|
2032
|
-
viewport = getIntersectionArea(...viewports.
|
|
1965
|
+
let viewport = getIntersectionArea(...viewports.map(offsetViewport));
|
|
2033
1966
|
|
|
2034
1967
|
if (viewportOffset) {
|
|
2035
1968
|
viewport[start] += viewportOffset;
|
|
2036
1969
|
viewport[end] -= viewportOffset;
|
|
2037
1970
|
}
|
|
2038
1971
|
|
|
2039
|
-
if (boundary
|
|
2040
|
-
viewport = getIntersectionArea(viewport,
|
|
1972
|
+
if (boundary) {
|
|
1973
|
+
viewport = getIntersectionArea(viewport, offsetViewport(boundary));
|
|
2041
1974
|
}
|
|
2042
1975
|
|
|
2043
|
-
const
|
|
2044
|
-
const
|
|
1976
|
+
const isInStartViewport = position[start] >= viewport[start];
|
|
1977
|
+
const isInEndViewport = position[end] <= viewport[end];
|
|
2045
1978
|
|
|
2046
|
-
if (
|
|
1979
|
+
if (isInStartViewport && isInEndViewport) {
|
|
2047
1980
|
continue;
|
|
2048
1981
|
}
|
|
2049
1982
|
|
|
2050
|
-
let offsetBy;
|
|
1983
|
+
let offsetBy = 0;
|
|
2051
1984
|
|
|
2052
1985
|
// Flip
|
|
2053
|
-
if (
|
|
1986
|
+
if (placement[i] === 'flip') {
|
|
2054
1987
|
if (
|
|
2055
|
-
|
|
2056
|
-
|
|
1988
|
+
targetAttach[i] === end && isInEndViewport ||
|
|
1989
|
+
targetAttach[i] === start && isInStartViewport)
|
|
2057
1990
|
{
|
|
2058
1991
|
continue;
|
|
2059
1992
|
}
|
|
2060
1993
|
|
|
2061
|
-
offsetBy =
|
|
2062
|
-
(elAttach[i] === start ?
|
|
2063
|
-
-position[prop] :
|
|
2064
|
-
elAttach[i] === end ?
|
|
2065
|
-
position[prop] :
|
|
2066
|
-
0) + (
|
|
2067
|
-
targetAttach[i] === start ?
|
|
2068
|
-
targetDim[prop] :
|
|
2069
|
-
targetAttach[i] === end ?
|
|
2070
|
-
-targetDim[prop] :
|
|
2071
|
-
0) -
|
|
2072
|
-
elOffset[i] * 2;
|
|
2073
|
-
|
|
2074
|
-
if (
|
|
2075
|
-
!isInScrollArea(
|
|
2076
|
-
{
|
|
2077
|
-
...position,
|
|
2078
|
-
[start]: position[start] + offsetBy,
|
|
2079
|
-
[end]: position[end] + offsetBy },
|
|
2080
|
-
|
|
2081
|
-
scrollElement,
|
|
2082
|
-
i))
|
|
1994
|
+
offsetBy = flip(element, target, options, i)[start] - position[start];
|
|
2083
1995
|
|
|
2084
|
-
{
|
|
1996
|
+
if (!isInScrollArea(applyOffset(position, offsetBy, i), scrollElement, i)) {
|
|
2085
1997
|
if (isInScrollArea(position, scrollElement, i)) {
|
|
2086
1998
|
continue;
|
|
2087
1999
|
}
|
|
@@ -2090,26 +2002,27 @@
|
|
|
2090
2002
|
return false;
|
|
2091
2003
|
}
|
|
2092
2004
|
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
target: targetAttach.map(flipDir).reverse() },
|
|
2005
|
+
const newPos = getPosition(element, target, {
|
|
2006
|
+
...options,
|
|
2007
|
+
attach: {
|
|
2008
|
+
element: elAttach.map(flipAxis).reverse(),
|
|
2009
|
+
target: targetAttach.map(flipAxis).reverse() },
|
|
2099
2010
|
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2011
|
+
offset: elOffset.reverse(),
|
|
2012
|
+
placement: placement.reverse(),
|
|
2013
|
+
recursion: true });
|
|
2103
2014
|
|
|
2104
2015
|
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
}
|
|
2016
|
+
if (newPos && isInScrollArea(newPos, scrollElement, 1 - i)) {
|
|
2017
|
+
return newPos;
|
|
2108
2018
|
}
|
|
2019
|
+
|
|
2020
|
+
continue;
|
|
2109
2021
|
}
|
|
2110
2022
|
|
|
2111
|
-
//
|
|
2112
|
-
} else {
|
|
2023
|
+
// Shift
|
|
2024
|
+
} else if (placement[i] === 'shift') {
|
|
2025
|
+
const targetDim = offset(target[i]);
|
|
2113
2026
|
offsetBy =
|
|
2114
2027
|
clamp(
|
|
2115
2028
|
clamp(position[start], viewport[start], viewport[end] - position[prop]),
|
|
@@ -2118,13 +2031,54 @@
|
|
|
2118
2031
|
position[start];
|
|
2119
2032
|
}
|
|
2120
2033
|
|
|
2121
|
-
offsetPosition
|
|
2122
|
-
offsetPosition[end] += offsetBy;
|
|
2034
|
+
offsetPosition = applyOffset(offsetPosition, offsetBy, i);
|
|
2123
2035
|
}
|
|
2124
2036
|
|
|
2125
2037
|
return offsetPosition;
|
|
2126
2038
|
}
|
|
2127
2039
|
|
|
2040
|
+
function attachTo(element, target, options) {
|
|
2041
|
+
let { attach, offset: offsetBy } = {
|
|
2042
|
+
attach: {
|
|
2043
|
+
element: ['left', 'top'],
|
|
2044
|
+
target: ['left', 'top'],
|
|
2045
|
+
...options.attach },
|
|
2046
|
+
|
|
2047
|
+
offset: [0, 0],
|
|
2048
|
+
...options };
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
let elOffset = offset(element);
|
|
2052
|
+
|
|
2053
|
+
for (const [i, [prop,, start, end]] of Object.entries(dirs)) {
|
|
2054
|
+
const targetOffset =
|
|
2055
|
+
attach.target[i] === attach.element[i] ? offsetViewport(target[i]) : offset(target[i]);
|
|
2056
|
+
|
|
2057
|
+
elOffset = applyOffset(
|
|
2058
|
+
elOffset,
|
|
2059
|
+
targetOffset[start] -
|
|
2060
|
+
elOffset[start] +
|
|
2061
|
+
moveBy(attach.target[i], end, targetOffset[prop]) -
|
|
2062
|
+
moveBy(attach.element[i], end, elOffset[prop]) +
|
|
2063
|
+
+offsetBy[i],
|
|
2064
|
+
i);
|
|
2065
|
+
|
|
2066
|
+
}
|
|
2067
|
+
return elOffset;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
function applyOffset(position, offset, i) {
|
|
2071
|
+
const [, dir, start, end] = dirs[i];
|
|
2072
|
+
const newPos = { ...position };
|
|
2073
|
+
newPos[start] = position[dir] = position[start] + offset;
|
|
2074
|
+
newPos[end] += offset;
|
|
2075
|
+
return newPos;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
function moveBy(attach, end, dim) {
|
|
2079
|
+
return attach === 'center' ? dim / 2 : attach === end ? dim : 0;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2128
2082
|
function getIntersectionArea() {
|
|
2129
2083
|
let area = {};for (var _len = arguments.length, rects = new Array(_len), _key = 0; _key < _len; _key++) {rects[_key] = arguments[_key];}
|
|
2130
2084
|
for (const rect of rects) {
|
|
@@ -2145,12 +2099,32 @@
|
|
|
2145
2099
|
return position[start] >= viewport[start] && position[end] <= viewport[end];
|
|
2146
2100
|
}
|
|
2147
2101
|
|
|
2148
|
-
function
|
|
2149
|
-
|
|
2150
|
-
|
|
2102
|
+
function flip(element, target, _ref, i) {let { offset, attach } = _ref;
|
|
2103
|
+
return attachTo(element, target, {
|
|
2104
|
+
attach: {
|
|
2105
|
+
element: flipAttach(attach.element, i),
|
|
2106
|
+
target: flipAttach(attach.target, i) },
|
|
2107
|
+
|
|
2108
|
+
offset: flipOffset(offset, i) });
|
|
2109
|
+
|
|
2110
|
+
}
|
|
2111
|
+
|
|
2112
|
+
function flipAttach(attach, i) {
|
|
2113
|
+
const newAttach = [...attach];
|
|
2114
|
+
const index = dirs[i].indexOf(attach[i]);
|
|
2115
|
+
if (~index) {
|
|
2116
|
+
newAttach[i] = dirs[i][1 - index % 2 + 2];
|
|
2117
|
+
}
|
|
2118
|
+
return newAttach;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2121
|
+
function flipOffset(offset, i) {
|
|
2122
|
+
offset = [...offset];
|
|
2123
|
+
offset[i] *= -1;
|
|
2124
|
+
return offset;
|
|
2151
2125
|
}
|
|
2152
2126
|
|
|
2153
|
-
function
|
|
2127
|
+
function flipAxis(prop) {
|
|
2154
2128
|
for (let i = 0; i < dirs.length; i++) {
|
|
2155
2129
|
const index = dirs[i].indexOf(prop);
|
|
2156
2130
|
if (~index) {
|
|
@@ -2165,7 +2139,7 @@
|
|
|
2165
2139
|
getImage: getImage,
|
|
2166
2140
|
transition: transition,
|
|
2167
2141
|
Transition: Transition,
|
|
2168
|
-
animate: animate$
|
|
2142
|
+
animate: animate$2,
|
|
2169
2143
|
Animation: Animation,
|
|
2170
2144
|
attr: attr,
|
|
2171
2145
|
hasAttr: hasAttr,
|
|
@@ -2205,9 +2179,9 @@
|
|
|
2205
2179
|
inBrowser: inBrowser,
|
|
2206
2180
|
isRtl: isRtl,
|
|
2207
2181
|
hasTouch: hasTouch,
|
|
2208
|
-
pointerDown: pointerDown,
|
|
2209
|
-
pointerMove: pointerMove,
|
|
2210
|
-
pointerUp: pointerUp,
|
|
2182
|
+
pointerDown: pointerDown$1,
|
|
2183
|
+
pointerMove: pointerMove$1,
|
|
2184
|
+
pointerUp: pointerUp$1,
|
|
2211
2185
|
pointerEnter: pointerEnter,
|
|
2212
2186
|
pointerLeave: pointerLeave,
|
|
2213
2187
|
pointerCancel: pointerCancel,
|
|
@@ -2295,10 +2269,8 @@
|
|
|
2295
2269
|
findAll: findAll,
|
|
2296
2270
|
escape: escape,
|
|
2297
2271
|
css: css,
|
|
2298
|
-
getCssVar: getCssVar,
|
|
2299
2272
|
propName: propName,
|
|
2300
2273
|
isInView: isInView,
|
|
2301
|
-
scrollTop: scrollTop,
|
|
2302
2274
|
scrollIntoView: scrollIntoView,
|
|
2303
2275
|
scrolledOver: scrolledOver,
|
|
2304
2276
|
scrollParents: scrollParents,
|
|
@@ -2621,7 +2593,7 @@
|
|
|
2621
2593
|
|
|
2622
2594
|
value = props[key] === Boolean && value === '' ? true : coerce$1(props[key], value);
|
|
2623
2595
|
|
|
2624
|
-
if (prop === 'target' &&
|
|
2596
|
+
if (prop === 'target' && startsWith(value, '_')) {
|
|
2625
2597
|
continue;
|
|
2626
2598
|
}
|
|
2627
2599
|
|
|
@@ -2632,7 +2604,7 @@
|
|
|
2632
2604
|
|
|
2633
2605
|
for (const key in options) {
|
|
2634
2606
|
const prop = camelize(key);
|
|
2635
|
-
if (props[prop]
|
|
2607
|
+
if (!isUndefined(props[prop])) {
|
|
2636
2608
|
data$1[prop] = coerce$1(props[prop], options[key]);
|
|
2637
2609
|
}
|
|
2638
2610
|
}
|
|
@@ -2961,7 +2933,7 @@
|
|
|
2961
2933
|
UIkit.data = '__uikit__';
|
|
2962
2934
|
UIkit.prefix = 'uk-';
|
|
2963
2935
|
UIkit.options = {};
|
|
2964
|
-
UIkit.version = '3.14.4-dev.
|
|
2936
|
+
UIkit.version = '3.14.4-dev.19f33e082';
|
|
2965
2937
|
|
|
2966
2938
|
globalAPI(UIkit);
|
|
2967
2939
|
hooksAPI(UIkit);
|
|
@@ -3066,27 +3038,7 @@
|
|
|
3066
3038
|
origin: false,
|
|
3067
3039
|
transition: 'ease',
|
|
3068
3040
|
clsEnter: 'uk-togglabe-enter',
|
|
3069
|
-
clsLeave: 'uk-togglabe-leave',
|
|
3070
|
-
|
|
3071
|
-
initProps: {
|
|
3072
|
-
overflow: '',
|
|
3073
|
-
maxHeight: '',
|
|
3074
|
-
paddingTop: '',
|
|
3075
|
-
paddingBottom: '',
|
|
3076
|
-
marginTop: '',
|
|
3077
|
-
marginBottom: '',
|
|
3078
|
-
boxShadow: '' },
|
|
3079
|
-
|
|
3080
|
-
|
|
3081
|
-
hideProps: {
|
|
3082
|
-
overflow: 'hidden',
|
|
3083
|
-
maxHeight: 0,
|
|
3084
|
-
paddingTop: 0,
|
|
3085
|
-
paddingBottom: 0,
|
|
3086
|
-
marginTop: 0,
|
|
3087
|
-
marginBottom: 0,
|
|
3088
|
-
boxShadow: 'none' } },
|
|
3089
|
-
|
|
3041
|
+
clsLeave: 'uk-togglabe-leave' },
|
|
3090
3042
|
|
|
3091
3043
|
|
|
3092
3044
|
computed: {
|
|
@@ -3095,7 +3047,7 @@
|
|
|
3095
3047
|
},
|
|
3096
3048
|
|
|
3097
3049
|
hasTransition(_ref2) {let { animation } = _ref2;
|
|
3098
|
-
return startsWith(animation[0],
|
|
3050
|
+
return ['slide', 'reveal'].some((transition) => startsWith(animation[0], transition));
|
|
3099
3051
|
} },
|
|
3100
3052
|
|
|
3101
3053
|
|
|
@@ -3188,130 +3140,105 @@
|
|
|
3188
3140
|
};
|
|
3189
3141
|
}
|
|
3190
3142
|
|
|
3191
|
-
function toggleTransition(cmp) {
|
|
3192
|
-
|
|
3193
|
-
case 'slide-left':
|
|
3194
|
-
return slideHorizontal(cmp);
|
|
3195
|
-
case 'slide-right':
|
|
3196
|
-
return slideHorizontal(cmp, true);}
|
|
3197
|
-
|
|
3198
|
-
return slide$1(cmp);
|
|
3199
|
-
}
|
|
3200
|
-
|
|
3201
|
-
function slide$1(_ref4)
|
|
3202
|
-
|
|
3203
|
-
|
|
3143
|
+
function toggleTransition(cmp) {var _cmp$animation$;
|
|
3144
|
+
const [mode = 'reveal', startProp = 'top'] = ((_cmp$animation$ = cmp.animation[0]) == null ? void 0 : _cmp$animation$.split('-')) || [];
|
|
3204
3145
|
|
|
3146
|
+
const dirs = [
|
|
3147
|
+
['left', 'right'],
|
|
3148
|
+
['top', 'bottom']];
|
|
3205
3149
|
|
|
3150
|
+
const dir = dirs[includes(dirs[0], startProp) ? 0 : 1];
|
|
3151
|
+
const end = dir[1] === startProp;
|
|
3152
|
+
const props = ['width', 'height'];
|
|
3153
|
+
const dimProp = props[dirs.indexOf(dir)];
|
|
3154
|
+
const marginProp = "margin-" + dir[0];
|
|
3155
|
+
const marginStartProp = "margin-" + startProp;
|
|
3206
3156
|
|
|
3157
|
+
return async (el, show) => {
|
|
3158
|
+
let { duration, velocity, transition, _toggle } = cmp;
|
|
3207
3159
|
|
|
3160
|
+
let currentDim = dimensions$1(el)[dimProp];
|
|
3208
3161
|
|
|
3209
|
-
{let { isToggled, duration, velocity, initProps, hideProps, transition, _toggle } = _ref4;
|
|
3210
|
-
return (el, show) => {
|
|
3211
3162
|
const inProgress = Transition.inProgress(el);
|
|
3212
|
-
|
|
3213
|
-
!inProgress && el.hasChildNodes() ?
|
|
3214
|
-
toFloat(css(el.firstElementChild, 'marginTop')) +
|
|
3215
|
-
toFloat(css(el.lastElementChild, 'marginBottom')) :
|
|
3216
|
-
0;
|
|
3217
|
-
const currentHeight = isVisible(el) ? toFloat(css(el, 'height')) + inner : 0;
|
|
3218
|
-
|
|
3219
|
-
const props = inProgress ? css(el, Object.keys(initProps)) : show ? hideProps : initProps;
|
|
3220
|
-
|
|
3221
|
-
Transition.cancel(el);
|
|
3163
|
+
await Transition.cancel(el);
|
|
3222
3164
|
|
|
3223
|
-
if (
|
|
3165
|
+
if (show) {
|
|
3224
3166
|
_toggle(el, true);
|
|
3225
3167
|
}
|
|
3226
3168
|
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3237
|
-
|
|
3238
|
-
|
|
3239
|
-
|
|
3240
|
-
el
|
|
3241
|
-
|
|
3242
|
-
|
|
3243
|
-
|
|
3244
|
-
|
|
3245
|
-
|
|
3246
|
-
|
|
3247
|
-
|
|
3248
|
-
|
|
3249
|
-
|
|
3250
|
-
|
|
3251
|
-
|
|
3252
|
-
|
|
3253
|
-
|
|
3254
|
-
|
|
3255
|
-
|
|
3256
|
-
|
|
3257
|
-
|
|
3258
|
-
|
|
3259
|
-
|
|
3260
|
-
|
|
3261
|
-
|
|
3262
|
-
|
|
3263
|
-
css(scrollElement, 'overflowX', 'hidden');
|
|
3264
|
-
|
|
3265
|
-
if (!isToggled(el)) {
|
|
3266
|
-
_toggle(el, true);
|
|
3267
|
-
}
|
|
3169
|
+
const prevProps = Object.fromEntries(
|
|
3170
|
+
[
|
|
3171
|
+
'padding',
|
|
3172
|
+
'border',
|
|
3173
|
+
'width',
|
|
3174
|
+
'height',
|
|
3175
|
+
'overflowY',
|
|
3176
|
+
'overflowX',
|
|
3177
|
+
marginProp,
|
|
3178
|
+
marginStartProp].
|
|
3179
|
+
map((key) => [key, el.style[key]]));
|
|
3180
|
+
|
|
3181
|
+
|
|
3182
|
+
const dim = dimensions$1(el);
|
|
3183
|
+
const currentMargin = toFloat(css(el, marginProp));
|
|
3184
|
+
const marginStart = toFloat(css(el, marginStartProp));
|
|
3185
|
+
const endDim = dim[dimProp] + marginStart;
|
|
3186
|
+
|
|
3187
|
+
if (!inProgress && !show) {
|
|
3188
|
+
currentDim += marginStart;
|
|
3189
|
+
}
|
|
3190
|
+
|
|
3191
|
+
const [wrapper] = wrapInner(el, '<div>');
|
|
3192
|
+
css(wrapper, {
|
|
3193
|
+
boxSizing: 'border-box',
|
|
3194
|
+
height: dim.height,
|
|
3195
|
+
width: dim.width,
|
|
3196
|
+
...css(el, [
|
|
3197
|
+
'overflow',
|
|
3198
|
+
'padding',
|
|
3199
|
+
'borderTop',
|
|
3200
|
+
'borderRight',
|
|
3201
|
+
'borderBottom',
|
|
3202
|
+
'borderLeft',
|
|
3203
|
+
'borderImage',
|
|
3204
|
+
marginStartProp]) });
|
|
3268
3205
|
|
|
3269
|
-
const width = toFloat(css(el, 'width'));
|
|
3270
|
-
duration = velocity * width + duration;
|
|
3271
3206
|
|
|
3272
|
-
const percent = visible ? (width + marginLeft * (right ? -1 : 1)) / width * 100 : 0;
|
|
3273
|
-
const offsetEl = offset(el);
|
|
3274
|
-
const useClipPath = right ?
|
|
3275
|
-
offsetEl.right < scrollElement.clientWidth :
|
|
3276
|
-
Math.round(offsetEl.left) > 0;
|
|
3277
3207
|
|
|
3278
3208
|
css(el, {
|
|
3279
|
-
|
|
3280
|
-
|
|
3281
|
-
|
|
3282
|
-
|
|
3283
|
-
|
|
3284
|
-
|
|
3285
|
-
|
|
3209
|
+
padding: 0,
|
|
3210
|
+
border: 0,
|
|
3211
|
+
[marginStartProp]: 0,
|
|
3212
|
+
width: dim.width,
|
|
3213
|
+
height: dim.height,
|
|
3214
|
+
overflow: 'hidden',
|
|
3215
|
+
[dimProp]: currentDim });
|
|
3286
3216
|
|
|
3287
|
-
return (
|
|
3288
|
-
show ?
|
|
3289
|
-
Transition.start(
|
|
3290
|
-
el,
|
|
3291
|
-
{
|
|
3292
|
-
clipPath: useClipPath ? "polygon(0 0,100% 0,100% 100%,0 100%)" : '',
|
|
3293
|
-
marginLeft: 0 },
|
|
3294
3217
|
|
|
3295
|
-
|
|
3296
|
-
|
|
3218
|
+
const percent = currentDim / endDim;
|
|
3219
|
+
duration = (velocity * endDim + duration) * (show ? 1 - percent : percent);
|
|
3220
|
+
const endProps = { [dimProp]: show ? endDim : 0 };
|
|
3297
3221
|
|
|
3298
|
-
|
|
3299
|
-
|
|
3300
|
-
|
|
3301
|
-
|
|
3302
|
-
right ? "polygon(0 0,0 0,0 100%,0 100%)" : "polygon(100% 0,100% 0,100% 100%,100% 100%)" :
|
|
3222
|
+
if (end) {
|
|
3223
|
+
css(el, marginProp, endDim - currentDim + currentMargin);
|
|
3224
|
+
endProps[marginProp] = show ? currentMargin : endDim + currentMargin;
|
|
3225
|
+
}
|
|
3303
3226
|
|
|
3227
|
+
if (!end ^ mode === 'reveal') {
|
|
3228
|
+
css(wrapper, marginProp, -endDim + currentDim);
|
|
3229
|
+
Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition);
|
|
3230
|
+
}
|
|
3304
3231
|
|
|
3305
|
-
|
|
3306
|
-
|
|
3232
|
+
try {
|
|
3233
|
+
await Transition.start(el, endProps, duration, transition);
|
|
3234
|
+
} finally {
|
|
3235
|
+
css(el, prevProps);
|
|
3236
|
+
unwrap(wrapper.firstChild);
|
|
3307
3237
|
|
|
3308
|
-
|
|
3309
|
-
|
|
3310
|
-
|
|
3311
|
-
|
|
3312
|
-
css(scrollElement, 'overflowX', '');
|
|
3313
|
-
css(el, { clipPath: '', marginLeft: '' });
|
|
3314
|
-
});
|
|
3238
|
+
if (!show) {
|
|
3239
|
+
_toggle(el, false);
|
|
3240
|
+
}
|
|
3241
|
+
}
|
|
3315
3242
|
};
|
|
3316
3243
|
}
|
|
3317
3244
|
|
|
@@ -3336,6 +3263,7 @@
|
|
|
3336
3263
|
mixins: [Class, Lazyload, Togglable],
|
|
3337
3264
|
|
|
3338
3265
|
props: {
|
|
3266
|
+
animation: Boolean,
|
|
3339
3267
|
targets: String,
|
|
3340
3268
|
active: null,
|
|
3341
3269
|
collapsible: Boolean,
|
|
@@ -3348,7 +3276,7 @@
|
|
|
3348
3276
|
data: {
|
|
3349
3277
|
targets: '> *',
|
|
3350
3278
|
active: false,
|
|
3351
|
-
animation:
|
|
3279
|
+
animation: true,
|
|
3352
3280
|
collapsible: true,
|
|
3353
3281
|
multiple: false,
|
|
3354
3282
|
clsOpen: 'uk-open',
|
|
@@ -3394,7 +3322,7 @@
|
|
|
3394
3322
|
hide(
|
|
3395
3323
|
el,
|
|
3396
3324
|
!hasClass(
|
|
3397
|
-
this.items.find((item) =>
|
|
3325
|
+
this.items.find((item) => within(el, item)),
|
|
3398
3326
|
this.clsOpen));
|
|
3399
3327
|
|
|
3400
3328
|
|
|
@@ -3446,23 +3374,15 @@
|
|
|
3446
3374
|
toggleClass(el, this.clsOpen, show);
|
|
3447
3375
|
attr($(this.$props.toggle, el), 'aria-expanded', show);
|
|
3448
3376
|
|
|
3449
|
-
const content = $(
|
|
3377
|
+
const content = $(this.content, el);
|
|
3450
3378
|
|
|
3451
|
-
if (animate === false || !this.
|
|
3379
|
+
if (animate === false || !this.animation) {
|
|
3380
|
+
content.hidden = !show;
|
|
3452
3381
|
hide(content, !show);
|
|
3453
3382
|
return;
|
|
3454
3383
|
}
|
|
3455
3384
|
|
|
3456
|
-
|
|
3457
|
-
el._wrapper = wrapAll(content, "<div" + (show ? ' hidden' : '') + ">");
|
|
3458
|
-
}
|
|
3459
|
-
|
|
3460
|
-
hide(content, false);
|
|
3461
|
-
await slide$1(this)(el._wrapper, show);
|
|
3462
|
-
hide(content, !show);
|
|
3463
|
-
|
|
3464
|
-
delete el._wrapper;
|
|
3465
|
-
unwrap(content);
|
|
3385
|
+
await toggleTransition(this)(content, show);
|
|
3466
3386
|
|
|
3467
3387
|
if (show) {
|
|
3468
3388
|
const toggle = $(this.$props.toggle, el);
|
|
@@ -3488,18 +3408,17 @@
|
|
|
3488
3408
|
args: 'animation',
|
|
3489
3409
|
|
|
3490
3410
|
props: {
|
|
3411
|
+
animation: Boolean,
|
|
3491
3412
|
close: String },
|
|
3492
3413
|
|
|
3493
3414
|
|
|
3494
3415
|
data: {
|
|
3495
|
-
animation:
|
|
3416
|
+
animation: true,
|
|
3496
3417
|
selClose: '.uk-alert-close',
|
|
3497
|
-
duration: 150,
|
|
3498
|
-
hideProps: { opacity: 0, ...Togglable.data.hideProps } },
|
|
3418
|
+
duration: 150 },
|
|
3499
3419
|
|
|
3500
3420
|
|
|
3501
|
-
events:
|
|
3502
|
-
{
|
|
3421
|
+
events: {
|
|
3503
3422
|
name: 'click',
|
|
3504
3423
|
|
|
3505
3424
|
delegate() {
|
|
@@ -3509,16 +3428,39 @@
|
|
|
3509
3428
|
handler(e) {
|
|
3510
3429
|
e.preventDefault();
|
|
3511
3430
|
this.close();
|
|
3512
|
-
} }
|
|
3513
|
-
|
|
3431
|
+
} },
|
|
3514
3432
|
|
|
3515
3433
|
|
|
3516
3434
|
methods: {
|
|
3517
3435
|
async close() {
|
|
3518
|
-
await this.toggleElement(this.$el);
|
|
3436
|
+
await this.toggleElement(this.$el, false, animate$1(this));
|
|
3519
3437
|
this.$destroy(true);
|
|
3520
3438
|
} } };
|
|
3521
3439
|
|
|
3440
|
+
|
|
3441
|
+
|
|
3442
|
+
function animate$1(_ref) {let { duration, transition, velocity } = _ref;
|
|
3443
|
+
return (el) => {
|
|
3444
|
+
const height = toFloat(css(el, 'height'));
|
|
3445
|
+
css(el, 'height', height);
|
|
3446
|
+
return Transition.start(
|
|
3447
|
+
el,
|
|
3448
|
+
{
|
|
3449
|
+
height: 0,
|
|
3450
|
+
marginTop: 0,
|
|
3451
|
+
marginBottom: 0,
|
|
3452
|
+
paddingTop: 0,
|
|
3453
|
+
paddingBottom: 0,
|
|
3454
|
+
borderTop: 0,
|
|
3455
|
+
borderBottom: 0,
|
|
3456
|
+
opacity: 0 },
|
|
3457
|
+
|
|
3458
|
+
velocity * height + duration,
|
|
3459
|
+
transition);
|
|
3460
|
+
|
|
3461
|
+
};
|
|
3462
|
+
}
|
|
3463
|
+
|
|
3522
3464
|
var Video = {
|
|
3523
3465
|
args: 'autoplay',
|
|
3524
3466
|
|
|
@@ -3667,13 +3609,17 @@
|
|
|
3667
3609
|
props: {
|
|
3668
3610
|
pos: String,
|
|
3669
3611
|
offset: null,
|
|
3670
|
-
flip: Boolean
|
|
3612
|
+
flip: Boolean,
|
|
3613
|
+
shift: Boolean,
|
|
3614
|
+
inset: Boolean },
|
|
3671
3615
|
|
|
3672
3616
|
|
|
3673
3617
|
data: {
|
|
3674
3618
|
pos: "bottom-" + (isRtl ? 'right' : 'left'),
|
|
3619
|
+
offset: false,
|
|
3675
3620
|
flip: true,
|
|
3676
|
-
|
|
3621
|
+
shift: true,
|
|
3622
|
+
inset: false },
|
|
3677
3623
|
|
|
3678
3624
|
|
|
3679
3625
|
connected() {
|
|
@@ -3685,19 +3631,24 @@
|
|
|
3685
3631
|
methods: {
|
|
3686
3632
|
positionAt(element, target, boundary) {
|
|
3687
3633
|
let offset = [this.getPositionOffset(element), this.getShiftOffset(element)];
|
|
3634
|
+
const placement = [this.flip && 'flip', this.shift && 'shift'];
|
|
3688
3635
|
|
|
3689
3636
|
const attach = {
|
|
3690
|
-
element: [flipPosition(this.dir), this.align],
|
|
3637
|
+
element: [this.inset ? this.dir : flipPosition(this.dir), this.align],
|
|
3691
3638
|
target: [this.dir, this.align] };
|
|
3692
3639
|
|
|
3693
3640
|
|
|
3694
3641
|
if (this.axis === 'y') {
|
|
3695
3642
|
for (const prop in attach) {
|
|
3696
|
-
attach[prop]
|
|
3643
|
+
attach[prop].reverse();
|
|
3697
3644
|
}
|
|
3698
|
-
offset
|
|
3645
|
+
offset.reverse();
|
|
3646
|
+
placement.reverse();
|
|
3699
3647
|
}
|
|
3700
3648
|
|
|
3649
|
+
const [scrollElement] = scrollParents(element, /auto|scroll/);
|
|
3650
|
+
const { scrollTop, scrollLeft } = scrollElement;
|
|
3651
|
+
|
|
3701
3652
|
// Ensure none positioned element does not generate scrollbars
|
|
3702
3653
|
const elDim = dimensions$1(element);
|
|
3703
3654
|
css(element, { top: -elDim.height, left: -elDim.width });
|
|
@@ -3706,35 +3657,50 @@
|
|
|
3706
3657
|
attach,
|
|
3707
3658
|
offset,
|
|
3708
3659
|
boundary,
|
|
3709
|
-
|
|
3660
|
+
placement,
|
|
3710
3661
|
viewportOffset: this.getViewportOffset(element) });
|
|
3711
3662
|
|
|
3663
|
+
|
|
3664
|
+
// Restore scroll position
|
|
3665
|
+
scrollElement.scrollTop = scrollTop;
|
|
3666
|
+
scrollElement.scrollLeft = scrollLeft;
|
|
3712
3667
|
},
|
|
3713
3668
|
|
|
3714
3669
|
getPositionOffset(element) {
|
|
3715
3670
|
return (
|
|
3716
3671
|
toPx(
|
|
3717
|
-
this.offset === false ?
|
|
3672
|
+
this.offset === false ? css(element, '--uk-position-offset') : this.offset,
|
|
3718
3673
|
this.axis === 'x' ? 'width' : 'height',
|
|
3719
3674
|
element) * (
|
|
3720
|
-
|
|
3675
|
+
|
|
3676
|
+
includes(['left', 'top'], this.dir) ? -1 : 1) * (
|
|
3677
|
+
this.inset ? -1 : 1));
|
|
3721
3678
|
|
|
3722
3679
|
},
|
|
3723
3680
|
|
|
3724
3681
|
getShiftOffset(element) {
|
|
3725
|
-
return
|
|
3682
|
+
return this.align === 'center' ?
|
|
3726
3683
|
0 :
|
|
3727
3684
|
toPx(
|
|
3728
|
-
|
|
3685
|
+
css(element, '--uk-position-shift-offset'),
|
|
3729
3686
|
this.axis === 'y' ? 'width' : 'height',
|
|
3730
3687
|
element) * (
|
|
3731
3688
|
includes(['left', 'top'], this.align) ? 1 : -1);
|
|
3732
3689
|
},
|
|
3733
3690
|
|
|
3734
3691
|
getViewportOffset(element) {
|
|
3735
|
-
return toPx(
|
|
3692
|
+
return toPx(css(element, '--uk-position-viewport-offset'));
|
|
3736
3693
|
} } };
|
|
3737
3694
|
|
|
3695
|
+
var Style = {
|
|
3696
|
+
beforeConnect() {
|
|
3697
|
+
this._style = attr(this.$el, 'style');
|
|
3698
|
+
},
|
|
3699
|
+
|
|
3700
|
+
disconnected() {
|
|
3701
|
+
attr(this.$el, 'style', this._style);
|
|
3702
|
+
} };
|
|
3703
|
+
|
|
3738
3704
|
const active$1 = [];
|
|
3739
3705
|
|
|
3740
3706
|
var Modal = {
|
|
@@ -3837,15 +3803,15 @@
|
|
|
3837
3803
|
this.$el,
|
|
3838
3804
|
'hide',
|
|
3839
3805
|
on(document, 'focusin', (e) => {
|
|
3840
|
-
if (!within(e.target, this
|
|
3806
|
+
if (last(active$1) === this && !within(e.target, this.$el)) {
|
|
3841
3807
|
this.$el.focus();
|
|
3842
3808
|
}
|
|
3843
3809
|
}));
|
|
3844
3810
|
|
|
3845
3811
|
|
|
3846
3812
|
if (this.overlay) {
|
|
3847
|
-
once(this.$el, '
|
|
3848
|
-
once(this.$el, '
|
|
3813
|
+
once(this.$el, 'hidden', preventOverscroll(this.$el), { self: true });
|
|
3814
|
+
once(this.$el, 'hidden', preventBackgroundScroll(), { self: true });
|
|
3849
3815
|
}
|
|
3850
3816
|
|
|
3851
3817
|
if (this.stack) {
|
|
@@ -3858,7 +3824,7 @@
|
|
|
3858
3824
|
once(
|
|
3859
3825
|
this.$el,
|
|
3860
3826
|
'hide',
|
|
3861
|
-
on(document, pointerDown, (_ref3) => {let { target } = _ref3;
|
|
3827
|
+
on(document, pointerDown$1, (_ref3) => {let { target } = _ref3;
|
|
3862
3828
|
if (
|
|
3863
3829
|
last(active$1) !== this ||
|
|
3864
3830
|
this.overlay && !within(target, this.$el) ||
|
|
@@ -3869,11 +3835,11 @@
|
|
|
3869
3835
|
|
|
3870
3836
|
once(
|
|
3871
3837
|
document,
|
|
3872
|
-
pointerUp + " " + pointerCancel + " scroll",
|
|
3838
|
+
pointerUp$1 + " " + pointerCancel + " scroll",
|
|
3873
3839
|
(_ref4) => {let { defaultPrevented, type, target: newTarget } = _ref4;
|
|
3874
3840
|
if (
|
|
3875
3841
|
!defaultPrevented &&
|
|
3876
|
-
type === pointerUp &&
|
|
3842
|
+
type === pointerUp$1 &&
|
|
3877
3843
|
target === newTarget)
|
|
3878
3844
|
{
|
|
3879
3845
|
this.hide();
|
|
@@ -3927,10 +3893,6 @@
|
|
|
3927
3893
|
active$1.splice(active$1.indexOf(this), 1);
|
|
3928
3894
|
}
|
|
3929
3895
|
|
|
3930
|
-
if (!active$1.length) {
|
|
3931
|
-
css(document.body, 'overflowY', '');
|
|
3932
|
-
}
|
|
3933
|
-
|
|
3934
3896
|
css(this.$el, 'zIndex', '');
|
|
3935
3897
|
|
|
3936
3898
|
if (!active$1.some((modal) => modal.clsPage === this.clsPage)) {
|
|
@@ -4047,7 +4009,12 @@
|
|
|
4047
4009
|
return () => events.forEach((fn) => fn());
|
|
4048
4010
|
}
|
|
4049
4011
|
|
|
4012
|
+
let prevented;
|
|
4050
4013
|
function preventBackgroundScroll() {
|
|
4014
|
+
if (prevented) {
|
|
4015
|
+
return noop;
|
|
4016
|
+
}
|
|
4017
|
+
prevented = true;
|
|
4051
4018
|
const { body, documentElement } = document;
|
|
4052
4019
|
css(body, {
|
|
4053
4020
|
overflowY: width(window) > documentElement.clientWidth ? 'scroll' : '',
|
|
@@ -4055,6 +4022,7 @@
|
|
|
4055
4022
|
|
|
4056
4023
|
css(documentElement, 'overflowY', 'hidden');
|
|
4057
4024
|
return () => {
|
|
4025
|
+
prevented = false;
|
|
4058
4026
|
css(documentElement, 'overflowY', '');
|
|
4059
4027
|
css(body, { overflowY: '', touchAction: '' });
|
|
4060
4028
|
};
|
|
@@ -4073,7 +4041,7 @@
|
|
|
4073
4041
|
let active;
|
|
4074
4042
|
|
|
4075
4043
|
var drop = {
|
|
4076
|
-
mixins: [Container, Lazyload, Position, Togglable],
|
|
4044
|
+
mixins: [Container, Lazyload, Position, Style, Togglable],
|
|
4077
4045
|
|
|
4078
4046
|
args: 'pos',
|
|
4079
4047
|
|
|
@@ -4081,10 +4049,13 @@
|
|
|
4081
4049
|
mode: 'list',
|
|
4082
4050
|
toggle: Boolean,
|
|
4083
4051
|
boundary: Boolean,
|
|
4084
|
-
|
|
4052
|
+
target: Boolean,
|
|
4053
|
+
targetX: Boolean,
|
|
4054
|
+
targetY: Boolean,
|
|
4055
|
+
stretch: Boolean,
|
|
4085
4056
|
delayShow: Number,
|
|
4086
4057
|
delayHide: Number,
|
|
4087
|
-
|
|
4058
|
+
autoUpdate: Boolean,
|
|
4088
4059
|
clsDrop: String,
|
|
4089
4060
|
animateOut: Boolean,
|
|
4090
4061
|
bgScroll: Boolean },
|
|
@@ -4093,17 +4064,32 @@
|
|
|
4093
4064
|
data: {
|
|
4094
4065
|
mode: ['click', 'hover'],
|
|
4095
4066
|
toggle: '- *',
|
|
4096
|
-
boundary:
|
|
4097
|
-
|
|
4067
|
+
boundary: false,
|
|
4068
|
+
target: false,
|
|
4069
|
+
targetX: false,
|
|
4070
|
+
targetY: false,
|
|
4071
|
+
stretch: false,
|
|
4098
4072
|
delayShow: 0,
|
|
4099
4073
|
delayHide: 800,
|
|
4100
|
-
|
|
4074
|
+
autoUpdate: true,
|
|
4101
4075
|
clsDrop: false,
|
|
4076
|
+
animateOut: false,
|
|
4077
|
+
bgScroll: true,
|
|
4102
4078
|
animation: ['uk-animation-fade'],
|
|
4103
4079
|
cls: 'uk-open',
|
|
4104
|
-
container: false,
|
|
4105
|
-
|
|
4106
|
-
|
|
4080
|
+
container: false },
|
|
4081
|
+
|
|
4082
|
+
|
|
4083
|
+
computed: {
|
|
4084
|
+
target(_ref, $el) {let { target, targetX, targetY } = _ref;
|
|
4085
|
+
targetX = targetX || target || this.targetEl;
|
|
4086
|
+
targetY = targetY || target || this.targetEl;
|
|
4087
|
+
|
|
4088
|
+
return [
|
|
4089
|
+
targetX === true ? window : query(targetX, $el),
|
|
4090
|
+
targetY === true ? window : query(targetY, $el)];
|
|
4091
|
+
|
|
4092
|
+
} },
|
|
4107
4093
|
|
|
4108
4094
|
|
|
4109
4095
|
created() {
|
|
@@ -4117,13 +4103,13 @@
|
|
|
4117
4103
|
connected() {
|
|
4118
4104
|
addClass(this.$el, this.clsDrop);
|
|
4119
4105
|
|
|
4120
|
-
if (this.toggle && !this.
|
|
4121
|
-
this.
|
|
4106
|
+
if (this.toggle && !this.targetEl) {
|
|
4107
|
+
this.targetEl = this.$create('toggle', query(this.toggle, this.$el), {
|
|
4122
4108
|
target: this.$el,
|
|
4123
4109
|
mode: this.mode }).
|
|
4124
4110
|
$el;
|
|
4125
|
-
attr(this.
|
|
4126
|
-
this.lazyload(this.
|
|
4111
|
+
attr(this.targetEl, 'aria-haspopup', true);
|
|
4112
|
+
this.lazyload(this.targetEl);
|
|
4127
4113
|
}
|
|
4128
4114
|
},
|
|
4129
4115
|
|
|
@@ -4154,7 +4140,7 @@
|
|
|
4154
4140
|
return 'a[href^="#"]';
|
|
4155
4141
|
},
|
|
4156
4142
|
|
|
4157
|
-
handler(
|
|
4143
|
+
handler(_ref2) {let { defaultPrevented, current: { hash } } = _ref2;
|
|
4158
4144
|
if (!defaultPrevented && hash && !within(hash, this.$el)) {
|
|
4159
4145
|
this.hide(false);
|
|
4160
4146
|
}
|
|
@@ -4265,18 +4251,18 @@
|
|
|
4265
4251
|
for (const handler of [
|
|
4266
4252
|
on(
|
|
4267
4253
|
document,
|
|
4268
|
-
pointerDown,
|
|
4269
|
-
(
|
|
4254
|
+
pointerDown$1,
|
|
4255
|
+
(_ref3) => {let { target } = _ref3;return (
|
|
4270
4256
|
!within(target, this.$el) &&
|
|
4271
4257
|
once(
|
|
4272
4258
|
document,
|
|
4273
|
-
pointerUp + " " + pointerCancel + " scroll",
|
|
4274
|
-
(
|
|
4259
|
+
pointerUp$1 + " " + pointerCancel + " scroll",
|
|
4260
|
+
(_ref4) => {let { defaultPrevented, type, target: newTarget } = _ref4;
|
|
4275
4261
|
if (
|
|
4276
4262
|
!defaultPrevented &&
|
|
4277
|
-
type === pointerUp &&
|
|
4263
|
+
type === pointerUp$1 &&
|
|
4278
4264
|
target === newTarget &&
|
|
4279
|
-
!(this.
|
|
4265
|
+
!(this.targetEl && within(target, this.targetEl)))
|
|
4280
4266
|
{
|
|
4281
4267
|
this.hide(false);
|
|
4282
4268
|
}
|
|
@@ -4295,13 +4281,12 @@
|
|
|
4295
4281
|
[] :
|
|
4296
4282
|
[preventOverscroll(this.$el), preventBackgroundScroll()]),
|
|
4297
4283
|
|
|
4298
|
-
...(this.
|
|
4299
|
-
[] :
|
|
4284
|
+
...(this.autoUpdate ?
|
|
4300
4285
|
(() => {
|
|
4301
4286
|
const handler = () => this.$emit();
|
|
4302
4287
|
return [
|
|
4303
4288
|
on(window, 'resize', handler),
|
|
4304
|
-
on(document, 'scroll', handler
|
|
4289
|
+
on([document, scrollParents(this.$el)], 'scroll', handler),
|
|
4305
4290
|
(() => {
|
|
4306
4291
|
const observer = observeResize(
|
|
4307
4292
|
scrollParents(this.$el),
|
|
@@ -4310,7 +4295,8 @@
|
|
|
4310
4295
|
return () => observer.disconnect();
|
|
4311
4296
|
})()];
|
|
4312
4297
|
|
|
4313
|
-
})()
|
|
4298
|
+
})() :
|
|
4299
|
+
[])])
|
|
4314
4300
|
{
|
|
4315
4301
|
once(this.$el, 'hide', handler, { self: true });
|
|
4316
4302
|
}
|
|
@@ -4330,7 +4316,7 @@
|
|
|
4330
4316
|
{
|
|
4331
4317
|
name: 'hide',
|
|
4332
4318
|
|
|
4333
|
-
handler(
|
|
4319
|
+
handler(_ref5) {let { target } = _ref5;
|
|
4334
4320
|
if (this.$el !== target) {
|
|
4335
4321
|
active =
|
|
4336
4322
|
active === null && within(target, this.$el) && this.isToggled() ?
|
|
@@ -4354,12 +4340,12 @@
|
|
|
4354
4340
|
|
|
4355
4341
|
|
|
4356
4342
|
methods: {
|
|
4357
|
-
show(target, delay) {if (target === void 0) {target = this.
|
|
4358
|
-
if (this.isToggled() && target && this.
|
|
4343
|
+
show(target, delay) {if (target === void 0) {target = this.targetEl;}if (delay === void 0) {delay = true;}
|
|
4344
|
+
if (this.isToggled() && target && this.targetEl && target !== this.targetEl) {
|
|
4359
4345
|
this.hide(false, false);
|
|
4360
4346
|
}
|
|
4361
4347
|
|
|
4362
|
-
this.
|
|
4348
|
+
this.targetEl = target;
|
|
4363
4349
|
|
|
4364
4350
|
this.clearTimers();
|
|
4365
4351
|
|
|
@@ -4422,60 +4408,69 @@
|
|
|
4422
4408
|
|
|
4423
4409
|
position() {
|
|
4424
4410
|
removeClass(this.$el, this.clsDrop + "-stack");
|
|
4425
|
-
|
|
4426
|
-
toggleClass(this.$el, this.clsDrop + "-stretch", this.align === 'stretch');
|
|
4411
|
+
attr(this.$el, 'style', this._style);
|
|
4427
4412
|
|
|
4428
|
-
|
|
4429
|
-
|
|
4430
|
-
const [scrollParent] = scrollParents(
|
|
4431
|
-
boundary && this.boundaryAlign ? boundary : this.$el);
|
|
4413
|
+
// Ensure none positioned element does not generate scrollbars
|
|
4414
|
+
this.$el.hidden = true;
|
|
4432
4415
|
|
|
4433
|
-
const
|
|
4434
|
-
const boundaryOffset = boundary
|
|
4416
|
+
const boundary = query(this.boundary, this.$el);
|
|
4417
|
+
const boundaryOffset = offsetViewport(boundary || window);
|
|
4418
|
+
const viewports = this.target.map((target) => offsetViewport(scrollParents(target)[0]));
|
|
4435
4419
|
const viewportOffset = this.getViewportOffset(this.$el);
|
|
4436
4420
|
|
|
4437
|
-
|
|
4438
|
-
|
|
4421
|
+
const dirs = [
|
|
4422
|
+
[0, ['x', 'width', 'left', 'right']],
|
|
4423
|
+
[1, ['y', 'height', 'top', 'bottom']]];
|
|
4439
4424
|
|
|
4440
|
-
|
|
4441
|
-
|
|
4442
|
-
|
|
4443
|
-
|
|
4444
|
-
|
|
4445
|
-
|
|
4446
|
-
|
|
4447
|
-
|
|
4448
|
-
|
|
4449
|
-
|
|
4450
|
-
|
|
4451
|
-
|
|
4452
|
-
|
|
4453
|
-
|
|
4454
|
-
|
|
4455
|
-
|
|
4456
|
-
const elOffset = Math.abs(this.getPositionOffset(this.$el)) + viewportOffset;
|
|
4457
|
-
|
|
4458
|
-
css(this.$el, {
|
|
4459
|
-
width:
|
|
4460
|
-
this.axis === 'y' ?
|
|
4461
|
-
viewport.width :
|
|
4462
|
-
(this.dir === 'left' ?
|
|
4463
|
-
targetDim.left - viewport.left :
|
|
4464
|
-
viewport.right - targetDim.right) - elOffset,
|
|
4465
|
-
height:
|
|
4466
|
-
this.axis === 'x' ?
|
|
4467
|
-
viewport.height :
|
|
4468
|
-
(this.dir === 'top' ?
|
|
4469
|
-
targetDim.top - viewport.top :
|
|
4470
|
-
viewport.bottom - targetDim.bottom) - elOffset });
|
|
4471
|
-
|
|
4472
|
-
} else if (this.$el.offsetWidth > maxWidth) {
|
|
4425
|
+
|
|
4426
|
+
for (const [i, [axis, prop]] of dirs) {
|
|
4427
|
+
if (this.axis !== axis && includes([axis, true], this.stretch)) {
|
|
4428
|
+
css(this.$el, {
|
|
4429
|
+
[prop]: Math.min(
|
|
4430
|
+
boundaryOffset[prop],
|
|
4431
|
+
viewports[i][prop] - 2 * viewportOffset),
|
|
4432
|
+
|
|
4433
|
+
["overflow-" + axis]: 'auto' });
|
|
4434
|
+
|
|
4435
|
+
}
|
|
4436
|
+
}
|
|
4437
|
+
|
|
4438
|
+
const maxWidth = viewports[0].width - 2 * viewportOffset;
|
|
4439
|
+
|
|
4440
|
+
if (this.$el.offsetWidth > maxWidth) {
|
|
4473
4441
|
addClass(this.$el, this.clsDrop + "-stack");
|
|
4474
4442
|
}
|
|
4475
4443
|
|
|
4476
4444
|
css(this.$el, 'maxWidth', maxWidth);
|
|
4477
4445
|
|
|
4478
|
-
this
|
|
4446
|
+
this.$el.hidden = false;
|
|
4447
|
+
|
|
4448
|
+
this.positionAt(this.$el, this.target, boundary);
|
|
4449
|
+
|
|
4450
|
+
for (const [i, [axis, prop, start, end]] of dirs) {
|
|
4451
|
+
if (this.axis === axis && includes([axis, true], this.stretch)) {
|
|
4452
|
+
const positionOffset = Math.abs(this.getPositionOffset(this.$el));
|
|
4453
|
+
const targetOffset = offset(this.target[i]);
|
|
4454
|
+
const elOffset = offset(this.$el);
|
|
4455
|
+
|
|
4456
|
+
css(this.$el, {
|
|
4457
|
+
[prop]:
|
|
4458
|
+
(targetOffset[start] > elOffset[start] ?
|
|
4459
|
+
targetOffset[start] -
|
|
4460
|
+
Math.max(
|
|
4461
|
+
boundaryOffset[start],
|
|
4462
|
+
viewports[i][start] + viewportOffset) :
|
|
4463
|
+
|
|
4464
|
+
Math.min(
|
|
4465
|
+
boundaryOffset[end],
|
|
4466
|
+
viewports[i][end] - viewportOffset) -
|
|
4467
|
+
targetOffset[end]) - positionOffset,
|
|
4468
|
+
["overflow-" + axis]: 'auto' });
|
|
4469
|
+
|
|
4470
|
+
|
|
4471
|
+
this.positionAt(this.$el, this.target, boundary);
|
|
4472
|
+
}
|
|
4473
|
+
}
|
|
4479
4474
|
} } };
|
|
4480
4475
|
|
|
4481
4476
|
|
|
@@ -4972,8 +4967,11 @@
|
|
|
4972
4967
|
let minHeight = '';
|
|
4973
4968
|
const box = boxModelAdjust(this.$el, 'height', 'content-box');
|
|
4974
4969
|
|
|
4970
|
+
const { body, scrollingElement } = document;
|
|
4975
4971
|
const [scrollElement] = scrollParents(this.$el, /auto|scroll/);
|
|
4976
|
-
const { height: viewportHeight } = offsetViewport(
|
|
4972
|
+
const { height: viewportHeight } = offsetViewport(
|
|
4973
|
+
scrollElement === body ? scrollingElement : scrollElement);
|
|
4974
|
+
|
|
4977
4975
|
|
|
4978
4976
|
if (this.expand) {
|
|
4979
4977
|
minHeight = Math.max(
|
|
@@ -4983,14 +4981,19 @@
|
|
|
4983
4981
|
0);
|
|
4984
4982
|
|
|
4985
4983
|
} else {
|
|
4986
|
-
|
|
4987
|
-
|
|
4988
|
-
document.scrollingElement === scrollElement ? '100vh' : viewportHeight + "px");
|
|
4984
|
+
const isScrollingElement =
|
|
4985
|
+
scrollingElement === scrollElement || body === scrollElement;
|
|
4989
4986
|
|
|
4987
|
+
// on mobile devices (iOS and Android) window.innerHeight !== 100vh
|
|
4988
|
+
minHeight = "calc(" + (isScrollingElement ? '100vh' : viewportHeight + "px");
|
|
4990
4989
|
|
|
4991
4990
|
if (this.offsetTop) {
|
|
4992
|
-
|
|
4993
|
-
|
|
4991
|
+
if (isScrollingElement) {
|
|
4992
|
+
const top = offsetPosition(this.$el)[0] - offsetPosition(scrollElement)[0];
|
|
4993
|
+
minHeight += top > 0 && top < viewportHeight / 2 ? " - " + top + "px" : '';
|
|
4994
|
+
} else {
|
|
4995
|
+
minHeight += " - " + css(scrollElement, 'paddingTop');
|
|
4996
|
+
}
|
|
4994
4997
|
}
|
|
4995
4998
|
|
|
4996
4999
|
if (this.offsetBottom === true) {
|
|
@@ -5233,7 +5236,13 @@
|
|
|
5233
5236
|
|
|
5234
5237
|
var marker = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"9\" y=\"4\" width=\"1\" height=\"11\"/><rect x=\"4\" y=\"9\" width=\"11\" height=\"1\"/></svg>";
|
|
5235
5238
|
|
|
5236
|
-
var
|
|
5239
|
+
var navParentIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>";
|
|
5240
|
+
|
|
5241
|
+
var navParentIconLarge = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" xmlns=\"http://www.w3.org/2000/svg\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 4 7 10 13 4\"/></svg>";
|
|
5242
|
+
|
|
5243
|
+
var navbarParentIcon = "<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" viewBox=\"0 0 12 12\"><polyline fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" points=\"1 3.5 6 8.5 11 3.5\"/></svg>";
|
|
5244
|
+
|
|
5245
|
+
var navbarToggleIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><style>.uk-navbar-toggle svg > [class*='line-'] {\n transition: 0.2s ease-in-out;\n transition-property: transform, opacity,;\n transform-origin: center;\n opacity: 1;\n }\n\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-2 { transform: rotate(45deg); }\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-3 { transform: rotate(-45deg); }\n\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-1,\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-4 { opacity: 0; }\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-1 { transform: translateY(6px) scaleX(0); }\n .uk-navbar-toggle[aria-expanded=\"true\"] svg > .line-4 { transform: translateY(-6px) scaleX(0); }</style><rect class=\"line-1\" y=\"3\" width=\"20\" height=\"2\"/><rect class=\"line-2\" y=\"9\" width=\"20\" height=\"2\"/><rect class=\"line-3\" y=\"9\" width=\"20\" height=\"2\"/><rect class=\"line-4\" y=\"15\" width=\"20\" height=\"2\"/></svg>";
|
|
5237
5246
|
|
|
5238
5247
|
var overlayIcon = "<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"19\" y=\"0\" width=\"1\" height=\"40\"/><rect x=\"0\" y=\"19\" width=\"40\" height=\"1\"/></svg>";
|
|
5239
5248
|
|
|
@@ -5265,6 +5274,9 @@
|
|
|
5265
5274
|
marker,
|
|
5266
5275
|
'close-icon': closeIcon,
|
|
5267
5276
|
'close-large': closeLarge,
|
|
5277
|
+
'nav-parent-icon': navParentIcon,
|
|
5278
|
+
'nav-parent-icon-large': navParentIconLarge,
|
|
5279
|
+
'navbar-parent-icon': navbarParentIcon,
|
|
5268
5280
|
'navbar-toggle-icon': navbarToggleIcon,
|
|
5269
5281
|
'overlay-icon': overlayIcon,
|
|
5270
5282
|
'pagination-next': paginationNext,
|
|
@@ -5322,6 +5334,15 @@
|
|
|
5322
5334
|
} };
|
|
5323
5335
|
|
|
5324
5336
|
|
|
5337
|
+
const NavParentIcon = {
|
|
5338
|
+
extends: IconComponent,
|
|
5339
|
+
|
|
5340
|
+
beforeConnect() {
|
|
5341
|
+
const icon = this.$props.icon;
|
|
5342
|
+
this.icon = closest(this.$el, '.uk-nav-primary') ? icon + "-large" : icon;
|
|
5343
|
+
} };
|
|
5344
|
+
|
|
5345
|
+
|
|
5325
5346
|
const Slidenav = {
|
|
5326
5347
|
extends: IconComponent,
|
|
5327
5348
|
|
|
@@ -5582,7 +5603,7 @@
|
|
|
5582
5603
|
|
|
5583
5604
|
|
|
5584
5605
|
connected() {
|
|
5585
|
-
const media = toMedia(this.media);
|
|
5606
|
+
const media = toMedia(this.media, this.$el);
|
|
5586
5607
|
this.matchMedia = true;
|
|
5587
5608
|
if (media) {
|
|
5588
5609
|
this.mediaObj = window.matchMedia(media);
|
|
@@ -5603,11 +5624,10 @@
|
|
|
5603
5624
|
} };
|
|
5604
5625
|
|
|
5605
5626
|
|
|
5606
|
-
function toMedia(value) {
|
|
5627
|
+
function toMedia(value, element) {
|
|
5607
5628
|
if (isString(value)) {
|
|
5608
5629
|
if (startsWith(value, '@')) {
|
|
5609
|
-
|
|
5610
|
-
value = toFloat(getCssVar(name));
|
|
5630
|
+
value = toFloat(css(element, "--uk-breakpoint-" + value.substr(1)));
|
|
5611
5631
|
} else if (isNaN(value)) {
|
|
5612
5632
|
return value;
|
|
5613
5633
|
}
|
|
@@ -5632,7 +5652,7 @@
|
|
|
5632
5652
|
|
|
5633
5653
|
computed: {
|
|
5634
5654
|
fill(_ref) {let { fill } = _ref;
|
|
5635
|
-
return fill ||
|
|
5655
|
+
return fill || css(this.$el, '--uk-leader-fill-content');
|
|
5636
5656
|
} },
|
|
5637
5657
|
|
|
5638
5658
|
|
|
@@ -5824,7 +5844,9 @@
|
|
|
5824
5844
|
align: String,
|
|
5825
5845
|
offset: Number,
|
|
5826
5846
|
boundary: Boolean,
|
|
5827
|
-
|
|
5847
|
+
target: Boolean,
|
|
5848
|
+
targetX: Boolean,
|
|
5849
|
+
targetY: Boolean,
|
|
5828
5850
|
clsDrop: String,
|
|
5829
5851
|
delayShow: Number,
|
|
5830
5852
|
delayHide: Number,
|
|
@@ -5841,9 +5863,12 @@
|
|
|
5841
5863
|
offset: undefined,
|
|
5842
5864
|
delayShow: undefined,
|
|
5843
5865
|
delayHide: undefined,
|
|
5844
|
-
|
|
5845
|
-
|
|
5866
|
+
flip: false,
|
|
5867
|
+
shift: true,
|
|
5846
5868
|
boundary: true,
|
|
5869
|
+
target: false,
|
|
5870
|
+
targetX: false,
|
|
5871
|
+
targetY: false,
|
|
5847
5872
|
dropbar: false,
|
|
5848
5873
|
dropbarAnchor: false,
|
|
5849
5874
|
duration: 200,
|
|
@@ -5878,7 +5903,7 @@
|
|
|
5878
5903
|
},
|
|
5879
5904
|
|
|
5880
5905
|
watch(dropbar) {
|
|
5881
|
-
addClass(dropbar, 'uk-navbar-dropbar');
|
|
5906
|
+
addClass(dropbar, 'uk-dropbar', 'uk-dropbar-top', 'uk-navbar-dropbar');
|
|
5882
5907
|
},
|
|
5883
5908
|
|
|
5884
5909
|
immediate: true },
|
|
@@ -5894,7 +5919,7 @@
|
|
|
5894
5919
|
|
|
5895
5920
|
if (this.dropContainer !== $el) {
|
|
5896
5921
|
for (const el of $$("." + clsDrop, this.dropContainer)) {var _this$getDropdown;
|
|
5897
|
-
const target = (_this$getDropdown = this.getDropdown(el)) == null ? void 0 : _this$getDropdown.
|
|
5922
|
+
const target = (_this$getDropdown = this.getDropdown(el)) == null ? void 0 : _this$getDropdown.targetEl;
|
|
5898
5923
|
if (!includes(dropdowns, el) && target && within(target, this.$el)) {
|
|
5899
5924
|
dropdowns.push(el);
|
|
5900
5925
|
}
|
|
@@ -5911,8 +5936,7 @@
|
|
|
5911
5936
|
{
|
|
5912
5937
|
...this.$props,
|
|
5913
5938
|
boundary: this.boundary,
|
|
5914
|
-
pos: this.pos
|
|
5915
|
-
offset: this.dropbar || this.offset });
|
|
5939
|
+
pos: this.pos });
|
|
5916
5940
|
|
|
5917
5941
|
|
|
5918
5942
|
},
|
|
@@ -5957,8 +5981,8 @@
|
|
|
5957
5981
|
if (
|
|
5958
5982
|
active &&
|
|
5959
5983
|
includes(active.mode, 'hover') &&
|
|
5960
|
-
active.
|
|
5961
|
-
!within(active.
|
|
5984
|
+
active.targetEl &&
|
|
5985
|
+
!within(active.targetEl, current) &&
|
|
5962
5986
|
!active.isDelaying)
|
|
5963
5987
|
{
|
|
5964
5988
|
active.hide(false);
|
|
@@ -5980,7 +6004,7 @@
|
|
|
5980
6004
|
if (keyCode === keyMap.DOWN && hasAttr(current, 'aria-expanded')) {
|
|
5981
6005
|
e.preventDefault();
|
|
5982
6006
|
|
|
5983
|
-
if (!active || active.
|
|
6007
|
+
if (!active || active.targetEl !== current) {
|
|
5984
6008
|
current.click();
|
|
5985
6009
|
once(this.dropContainer, 'show', (_ref8) => {let { target } = _ref8;return (
|
|
5986
6010
|
focusFirstFocusableElement(target));});
|
|
@@ -6030,8 +6054,8 @@
|
|
|
6030
6054
|
}
|
|
6031
6055
|
}
|
|
6032
6056
|
|
|
6033
|
-
if (keyCode === keyMap.ESC) {var _active$
|
|
6034
|
-
active == null ? void 0 : (_active$
|
|
6057
|
+
if (keyCode === keyMap.ESC) {var _active$targetEl;
|
|
6058
|
+
active == null ? void 0 : (_active$targetEl = active.targetEl) == null ? void 0 : _active$targetEl.focus();
|
|
6035
6059
|
}
|
|
6036
6060
|
|
|
6037
6061
|
handleNavItemNavigation(e, this.toggles, active);
|
|
@@ -6073,8 +6097,8 @@
|
|
|
6073
6097
|
return this.dropbar;
|
|
6074
6098
|
},
|
|
6075
6099
|
|
|
6076
|
-
handler(
|
|
6077
|
-
if (!
|
|
6100
|
+
handler(_ref9) {let { target } = _ref9;
|
|
6101
|
+
if (!this.isDropbarDrop(target)) {
|
|
6078
6102
|
return;
|
|
6079
6103
|
}
|
|
6080
6104
|
|
|
@@ -6082,7 +6106,7 @@
|
|
|
6082
6106
|
after(this.dropbarAnchor || this.$el, this.dropbar);
|
|
6083
6107
|
}
|
|
6084
6108
|
|
|
6085
|
-
addClass(
|
|
6109
|
+
addClass(target, this.clsDrop + "-dropbar");
|
|
6086
6110
|
} },
|
|
6087
6111
|
|
|
6088
6112
|
|
|
@@ -6097,19 +6121,24 @@
|
|
|
6097
6121
|
return this.dropbar;
|
|
6098
6122
|
},
|
|
6099
6123
|
|
|
6100
|
-
handler(
|
|
6101
|
-
if (!
|
|
6124
|
+
handler(_ref10) {let { target } = _ref10;
|
|
6125
|
+
if (!this.isDropbarDrop(target)) {
|
|
6102
6126
|
return;
|
|
6103
6127
|
}
|
|
6104
6128
|
|
|
6105
|
-
this._observer = observeResize(
|
|
6106
|
-
|
|
6107
|
-
|
|
6108
|
-
|
|
6109
|
-
|
|
6110
|
-
|
|
6111
|
-
|
|
6129
|
+
this._observer = observeResize(target, () => {
|
|
6130
|
+
const targetOffsets = parents(target, "." + this.clsDrop).
|
|
6131
|
+
concat(target).
|
|
6132
|
+
map((el) => offset(el));
|
|
6133
|
+
const minTop = Math.min(...targetOffsets.map((_ref11) => {let { top } = _ref11;return top;}));
|
|
6134
|
+
const maxBottom = Math.max(...targetOffsets.map((_ref12) => {let { bottom } = _ref12;return bottom;}));
|
|
6135
|
+
const dropbarOffset = offset(this.dropbar);
|
|
6136
|
+
css(this.dropbar, 'top', this.dropbar.offsetTop - (dropbarOffset.top - minTop));
|
|
6137
|
+
this.transitionTo(
|
|
6138
|
+
maxBottom - minTop + toFloat(css(target, 'marginBottom')),
|
|
6139
|
+
target);
|
|
6112
6140
|
|
|
6141
|
+
});
|
|
6113
6142
|
} },
|
|
6114
6143
|
|
|
6115
6144
|
|
|
@@ -6124,13 +6153,13 @@
|
|
|
6124
6153
|
return this.dropbar;
|
|
6125
6154
|
},
|
|
6126
6155
|
|
|
6127
|
-
handler(e
|
|
6156
|
+
handler(e) {
|
|
6128
6157
|
const active = this.getActive();
|
|
6129
6158
|
|
|
6130
6159
|
if (
|
|
6131
6160
|
matches(this.dropbar, ':hover') &&
|
|
6132
|
-
(active == null ? void 0 : active.$el) ===
|
|
6133
|
-
!this.toggles.some((el) => active.
|
|
6161
|
+
(active == null ? void 0 : active.$el) === e.target &&
|
|
6162
|
+
!this.toggles.some((el) => active.targetEl !== el && matches(el, ':focus')))
|
|
6134
6163
|
{
|
|
6135
6164
|
e.preventDefault();
|
|
6136
6165
|
}
|
|
@@ -6148,8 +6177,8 @@
|
|
|
6148
6177
|
return this.dropbar;
|
|
6149
6178
|
},
|
|
6150
6179
|
|
|
6151
|
-
handler(
|
|
6152
|
-
if (!
|
|
6180
|
+
handler(_ref13) {let { target } = _ref13;
|
|
6181
|
+
if (!this.isDropbarDrop(target)) {
|
|
6153
6182
|
return;
|
|
6154
6183
|
}
|
|
6155
6184
|
|
|
@@ -6157,7 +6186,7 @@
|
|
|
6157
6186
|
|
|
6158
6187
|
const active = this.getActive();
|
|
6159
6188
|
|
|
6160
|
-
if (!active || (active == null ? void 0 : active.$el) ===
|
|
6189
|
+
if (!active || (active == null ? void 0 : active.$el) === target) {
|
|
6161
6190
|
this.transitionTo(0);
|
|
6162
6191
|
}
|
|
6163
6192
|
} }],
|
|
@@ -6166,7 +6195,7 @@
|
|
|
6166
6195
|
|
|
6167
6196
|
methods: {
|
|
6168
6197
|
getActive() {
|
|
6169
|
-
return active && within(active.
|
|
6198
|
+
return active && within(active.targetEl, this.$el) && active;
|
|
6170
6199
|
},
|
|
6171
6200
|
|
|
6172
6201
|
transitionTo(newHeight, el) {
|
|
@@ -6196,13 +6225,17 @@
|
|
|
6196
6225
|
|
|
6197
6226
|
getDropdown(el) {
|
|
6198
6227
|
return this.$getComponent(el, 'drop') || this.$getComponent(el, 'dropdown');
|
|
6228
|
+
},
|
|
6229
|
+
|
|
6230
|
+
isDropbarDrop(el) {
|
|
6231
|
+
return this.getDropdown(el) && hasClass(el, this.clsDrop);
|
|
6199
6232
|
} } };
|
|
6200
6233
|
|
|
6201
6234
|
|
|
6202
6235
|
|
|
6203
6236
|
function handleNavItemNavigation(e, toggles, active) {
|
|
6204
6237
|
const { current, keyCode } = e;
|
|
6205
|
-
const target = (active == null ? void 0 : active.
|
|
6238
|
+
const target = (active == null ? void 0 : active.targetEl) || current;
|
|
6206
6239
|
const i = toggles.indexOf(target);
|
|
6207
6240
|
|
|
6208
6241
|
// Left
|
|
@@ -6259,7 +6292,7 @@
|
|
|
6259
6292
|
|
|
6260
6293
|
registerEvent(this, {
|
|
6261
6294
|
el: this.swipeTarget,
|
|
6262
|
-
name: pointerDown,
|
|
6295
|
+
name: pointerDown$1,
|
|
6263
6296
|
passive: true,
|
|
6264
6297
|
handler(e) {
|
|
6265
6298
|
if (!isTouch(e)) {
|
|
@@ -6269,7 +6302,7 @@
|
|
|
6269
6302
|
// Handle Swipe Gesture
|
|
6270
6303
|
const pos = getEventPos(e);
|
|
6271
6304
|
const target = 'tagName' in e.target ? e.target : parent(e.target);
|
|
6272
|
-
once(document, pointerUp + " " + pointerCancel + " scroll", (e) => {
|
|
6305
|
+
once(document, pointerUp$1 + " " + pointerCancel + " scroll", (e) => {
|
|
6273
6306
|
const { x, y } = getEventPos(e);
|
|
6274
6307
|
|
|
6275
6308
|
// swipe
|
|
@@ -6570,6 +6603,14 @@
|
|
|
6570
6603
|
offset: 0 },
|
|
6571
6604
|
|
|
6572
6605
|
|
|
6606
|
+
connected() {
|
|
6607
|
+
registerClick(this);
|
|
6608
|
+
},
|
|
6609
|
+
|
|
6610
|
+
disconnected() {
|
|
6611
|
+
unregisterClick(this);
|
|
6612
|
+
},
|
|
6613
|
+
|
|
6573
6614
|
methods: {
|
|
6574
6615
|
async scrollTo(el) {
|
|
6575
6616
|
el = el && $(el) || document.body;
|
|
@@ -6578,20 +6619,39 @@
|
|
|
6578
6619
|
await scrollIntoView(el, { offset: this.offset });
|
|
6579
6620
|
trigger(this.$el, 'scrolled', [this, el]);
|
|
6580
6621
|
}
|
|
6581
|
-
} }
|
|
6622
|
+
} } };
|
|
6582
6623
|
|
|
6583
6624
|
|
|
6584
|
-
events: {
|
|
6585
|
-
click(e) {
|
|
6586
|
-
if (e.defaultPrevented) {
|
|
6587
|
-
return;
|
|
6588
|
-
}
|
|
6589
6625
|
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
|
|
6626
|
+
const components$2 = new Set();
|
|
6627
|
+
function registerClick(cmp) {
|
|
6628
|
+
if (!components$2.size) {
|
|
6629
|
+
on(document, 'click', clickHandler);
|
|
6630
|
+
}
|
|
6631
|
+
|
|
6632
|
+
components$2.add(cmp);
|
|
6633
|
+
}
|
|
6593
6634
|
|
|
6635
|
+
function unregisterClick(cmp) {
|
|
6636
|
+
components$2.delete(cmp);
|
|
6594
6637
|
|
|
6638
|
+
if (!components$2.length) {
|
|
6639
|
+
off(document, 'click', clickHandler);
|
|
6640
|
+
}
|
|
6641
|
+
}
|
|
6642
|
+
|
|
6643
|
+
function clickHandler(e) {
|
|
6644
|
+
if (e.defaultPrevented) {
|
|
6645
|
+
return;
|
|
6646
|
+
}
|
|
6647
|
+
|
|
6648
|
+
for (const component of components$2) {
|
|
6649
|
+
if (within(e.target, component.$el)) {
|
|
6650
|
+
e.preventDefault();
|
|
6651
|
+
component.scrollTo(getTargetElement(component.$el));
|
|
6652
|
+
}
|
|
6653
|
+
}
|
|
6654
|
+
}
|
|
6595
6655
|
|
|
6596
6656
|
function getTargetElement(el) {
|
|
6597
6657
|
return document.getElementById(decodeURIComponent(el.hash).substring(1));
|
|
@@ -6921,7 +6981,9 @@
|
|
|
6921
6981
|
},
|
|
6922
6982
|
|
|
6923
6983
|
handler() {
|
|
6924
|
-
|
|
6984
|
+
const { scrollingElement } = document;
|
|
6985
|
+
|
|
6986
|
+
if (!location.hash || scrollingElement.scrollTop === 0) {
|
|
6925
6987
|
return;
|
|
6926
6988
|
}
|
|
6927
6989
|
|
|
@@ -6930,13 +6992,11 @@
|
|
|
6930
6992
|
const elOffset = offset(this.$el);
|
|
6931
6993
|
|
|
6932
6994
|
if (this.isFixed && intersectRect(targetOffset, elOffset)) {
|
|
6933
|
-
scrollTop
|
|
6934
|
-
window,
|
|
6995
|
+
scrollingElement.scrollTop =
|
|
6935
6996
|
targetOffset.top -
|
|
6936
6997
|
elOffset.height -
|
|
6937
6998
|
toPx(this.targetOffset, 'height', this.placeholder) -
|
|
6938
|
-
toPx(this.offset, 'height', this.placeholder)
|
|
6939
|
-
|
|
6999
|
+
toPx(this.offset, 'height', this.placeholder);
|
|
6940
7000
|
}
|
|
6941
7001
|
});
|
|
6942
7002
|
} }],
|
|
@@ -7034,7 +7094,7 @@
|
|
|
7034
7094
|
|
|
7035
7095
|
|
|
7036
7096
|
{let { scroll: prevScroll = 0, dir: prevDir = 'down', overflow, overflowScroll = 0, start, end } = _ref4;
|
|
7037
|
-
const scroll = scrollTop
|
|
7097
|
+
const scroll = document.scrollingElement.scrollTop;
|
|
7038
7098
|
const dir = prevScroll <= scroll ? 'down' : 'up';
|
|
7039
7099
|
|
|
7040
7100
|
return {
|
|
@@ -7443,7 +7503,7 @@
|
|
|
7443
7503
|
|
|
7444
7504
|
events: [
|
|
7445
7505
|
{
|
|
7446
|
-
name: pointerDown,
|
|
7506
|
+
name: pointerDown$1,
|
|
7447
7507
|
|
|
7448
7508
|
filter() {
|
|
7449
7509
|
return includes(this.mode, 'hover');
|
|
@@ -7461,7 +7521,7 @@
|
|
|
7461
7521
|
trigger(this.$el, 'focus');
|
|
7462
7522
|
once(
|
|
7463
7523
|
document,
|
|
7464
|
-
pointerDown,
|
|
7524
|
+
pointerDown$1,
|
|
7465
7525
|
() => trigger(this.$el, 'blur'),
|
|
7466
7526
|
true,
|
|
7467
7527
|
(e) => !within(e.target, this.$el));
|
|
@@ -7554,7 +7614,7 @@
|
|
|
7554
7614
|
|
|
7555
7615
|
|
|
7556
7616
|
{
|
|
7557
|
-
name: '
|
|
7617
|
+
name: 'hide show',
|
|
7558
7618
|
|
|
7559
7619
|
self: true,
|
|
7560
7620
|
|
|
@@ -7562,10 +7622,8 @@
|
|
|
7562
7622
|
return this.target;
|
|
7563
7623
|
},
|
|
7564
7624
|
|
|
7565
|
-
handler(
|
|
7566
|
-
|
|
7567
|
-
this.updateAria(toggled);
|
|
7568
|
-
}
|
|
7625
|
+
handler(_ref2) {let { type } = _ref2;
|
|
7626
|
+
this.updateAria(type === 'show');
|
|
7569
7627
|
} },
|
|
7570
7628
|
|
|
7571
7629
|
|
|
@@ -7660,10 +7718,12 @@
|
|
|
7660
7718
|
Video: Video,
|
|
7661
7719
|
Close: Close,
|
|
7662
7720
|
Spinner: Spinner,
|
|
7721
|
+
NavParentIcon: NavParentIcon,
|
|
7663
7722
|
SlidenavNext: Slidenav,
|
|
7664
7723
|
SlidenavPrevious: Slidenav,
|
|
7665
7724
|
SearchIcon: Search,
|
|
7666
7725
|
Marker: IconComponent,
|
|
7726
|
+
NavbarParentIcon: IconComponent,
|
|
7667
7727
|
NavbarToggleIcon: IconComponent,
|
|
7668
7728
|
OverlayIcon: IconComponent,
|
|
7669
7729
|
PaginationNext: IconComponent,
|
|
@@ -8153,7 +8213,7 @@
|
|
|
8153
8213
|
|
|
8154
8214
|
},
|
|
8155
8215
|
|
|
8156
|
-
setState(state, animate) {if (animate === void 0) {animate = true;}
|
|
8216
|
+
async setState(state, animate) {if (animate === void 0) {animate = true;}
|
|
8157
8217
|
state = { filter: { '': '' }, sort: [], ...state };
|
|
8158
8218
|
|
|
8159
8219
|
trigger(this.$el, 'beforeFilter', [this, state]);
|
|
@@ -8162,15 +8222,17 @@
|
|
|
8162
8222
|
toggleClass(el, this.cls, !!matchFilter(el, this.attrItem, state)));
|
|
8163
8223
|
|
|
8164
8224
|
|
|
8165
|
-
Promise.all(
|
|
8225
|
+
await Promise.all(
|
|
8166
8226
|
$$(this.target, this.$el).map((target) => {
|
|
8167
8227
|
const filterFn = () => {
|
|
8168
8228
|
applyState(state, target, children(target));
|
|
8169
8229
|
this.$update(this.$el);
|
|
8170
8230
|
};
|
|
8171
8231
|
return animate ? this.animate(filterFn, target) : filterFn();
|
|
8172
|
-
}))
|
|
8173
|
-
|
|
8232
|
+
}));
|
|
8233
|
+
|
|
8234
|
+
|
|
8235
|
+
trigger(this.$el, 'afterFilter', [this]);
|
|
8174
8236
|
},
|
|
8175
8237
|
|
|
8176
8238
|
updateState() {
|
|
@@ -8460,6 +8522,11 @@
|
|
|
8460
8522
|
this.interval && clearInterval(this.interval);
|
|
8461
8523
|
} } };
|
|
8462
8524
|
|
|
8525
|
+
const pointerOptions = { passive: false, capture: true };
|
|
8526
|
+
const pointerDown = 'touchstart mousedown';
|
|
8527
|
+
const pointerMove = 'touchmove mousemove';
|
|
8528
|
+
const pointerUp = 'touchend touchcancel mouseup click input';
|
|
8529
|
+
|
|
8463
8530
|
var SliderDrag = {
|
|
8464
8531
|
props: {
|
|
8465
8532
|
draggable: Boolean },
|
|
@@ -8512,7 +8579,17 @@
|
|
|
8512
8579
|
|
|
8513
8580
|
handler(e) {
|
|
8514
8581
|
e.preventDefault();
|
|
8515
|
-
} }
|
|
8582
|
+
} },
|
|
8583
|
+
|
|
8584
|
+
|
|
8585
|
+
{
|
|
8586
|
+
// iOS workaround for slider stopping if swiping fast
|
|
8587
|
+
name: pointerMove + " " + pointerUp,
|
|
8588
|
+
el() {
|
|
8589
|
+
return this.list;
|
|
8590
|
+
},
|
|
8591
|
+
handler: noop,
|
|
8592
|
+
...pointerOptions }],
|
|
8516
8593
|
|
|
8517
8594
|
|
|
8518
8595
|
|
|
@@ -8534,10 +8611,10 @@
|
|
|
8534
8611
|
this.prevIndex = this.index;
|
|
8535
8612
|
}
|
|
8536
8613
|
|
|
8537
|
-
on(document, pointerMove, this.move,
|
|
8614
|
+
on(document, pointerMove, this.move, pointerOptions);
|
|
8538
8615
|
|
|
8539
8616
|
// 'input' event is triggered by video controls
|
|
8540
|
-
on(document, pointerUp
|
|
8617
|
+
on(document, pointerUp, this.end, pointerOptions);
|
|
8541
8618
|
|
|
8542
8619
|
css(this.list, 'userSelect', 'none');
|
|
8543
8620
|
},
|
|
@@ -8617,8 +8694,8 @@
|
|
|
8617
8694
|
},
|
|
8618
8695
|
|
|
8619
8696
|
end() {
|
|
8620
|
-
off(document, pointerMove, this.move,
|
|
8621
|
-
off(document, pointerUp
|
|
8697
|
+
off(document, pointerMove, this.move, pointerOptions);
|
|
8698
|
+
off(document, pointerUp, this.end, pointerOptions);
|
|
8622
8699
|
|
|
8623
8700
|
if (this.dragging) {
|
|
8624
8701
|
this.dragging = null;
|
|
@@ -9026,7 +9103,7 @@
|
|
|
9026
9103
|
|
|
9027
9104
|
events: [
|
|
9028
9105
|
{
|
|
9029
|
-
name: pointerMove + " " + pointerDown + " keydown",
|
|
9106
|
+
name: pointerMove$1 + " " + pointerDown$1 + " keydown",
|
|
9030
9107
|
|
|
9031
9108
|
handler: 'showControls' },
|
|
9032
9109
|
|
|
@@ -10681,7 +10758,7 @@
|
|
|
10681
10758
|
},
|
|
10682
10759
|
|
|
10683
10760
|
events: {
|
|
10684
|
-
name: pointerDown,
|
|
10761
|
+
name: pointerDown$1,
|
|
10685
10762
|
passive: false,
|
|
10686
10763
|
handler: 'init' },
|
|
10687
10764
|
|
|
@@ -10811,8 +10888,8 @@
|
|
|
10811
10888
|
this.placeholder = placeholder;
|
|
10812
10889
|
this.origin = { target, index: index(placeholder), ...this.pos };
|
|
10813
10890
|
|
|
10814
|
-
on(document, pointerMove, this.move);
|
|
10815
|
-
on(document, pointerUp, this.end);
|
|
10891
|
+
on(document, pointerMove$1, this.move);
|
|
10892
|
+
on(document, pointerUp$1, this.end);
|
|
10816
10893
|
|
|
10817
10894
|
if (!this.threshold) {
|
|
10818
10895
|
this.start(e);
|
|
@@ -10848,8 +10925,8 @@
|
|
|
10848
10925
|
},
|
|
10849
10926
|
|
|
10850
10927
|
end() {
|
|
10851
|
-
off(document, pointerMove, this.move);
|
|
10852
|
-
off(document, pointerUp, this.end);
|
|
10928
|
+
off(document, pointerMove$1, this.move);
|
|
10929
|
+
off(document, pointerUp$1, this.end);
|
|
10853
10930
|
|
|
10854
10931
|
if (!this.drag) {
|
|
10855
10932
|
return;
|
|
@@ -10918,7 +10995,7 @@
|
|
|
10918
10995
|
let last = Date.now();
|
|
10919
10996
|
trackTimer = setInterval(() => {
|
|
10920
10997
|
let { x, y } = pos;
|
|
10921
|
-
y += scrollTop
|
|
10998
|
+
y += document.scrollingElement.scrollTop;
|
|
10922
10999
|
|
|
10923
11000
|
const dist = (Date.now() - last) * 0.3;
|
|
10924
11001
|
last = Date.now();
|
|
@@ -10939,7 +11016,7 @@
|
|
|
10939
11016
|
}
|
|
10940
11017
|
|
|
10941
11018
|
if (scroll > 0 && scroll < scrollHeight - height) {
|
|
10942
|
-
scrollTop
|
|
11019
|
+
scrollEl.scrollTop = scroll;
|
|
10943
11020
|
return true;
|
|
10944
11021
|
}
|
|
10945
11022
|
});
|
|
@@ -11084,11 +11161,11 @@
|
|
|
11084
11161
|
|
|
11085
11162
|
this._unbind = once(
|
|
11086
11163
|
document, "show keydown " +
|
|
11087
|
-
pointerDown,
|
|
11164
|
+
pointerDown$1,
|
|
11088
11165
|
this.hide,
|
|
11089
11166
|
false,
|
|
11090
11167
|
(e) =>
|
|
11091
|
-
e.type === pointerDown && !within(e.target, this.$el) ||
|
|
11168
|
+
e.type === pointerDown$1 && !within(e.target, this.$el) ||
|
|
11092
11169
|
e.type === 'keydown' && e.keyCode === 27 ||
|
|
11093
11170
|
e.type === 'show' && e.detail[0] !== this && e.detail[0].$name === this.$name);
|
|
11094
11171
|
|
|
@@ -11159,7 +11236,7 @@
|
|
|
11159
11236
|
|
|
11160
11237
|
// Clicking a button does not give it focus on all browsers and platforms
|
|
11161
11238
|
// https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#clicking_and_focus
|
|
11162
|
-
[pointerDown](e) {
|
|
11239
|
+
[pointerDown$1](e) {
|
|
11163
11240
|
if (isTouch(e)) {
|
|
11164
11241
|
this.show();
|
|
11165
11242
|
}
|