uikit 3.14.4-dev.871ba3c05 → 3.14.4-dev.8a6d8c5ed

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.
Files changed (138) hide show
  1. package/CHANGELOG.md +45 -11
  2. package/build/util.js +1 -0
  3. package/dist/css/uikit-core-rtl.css +385 -110
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +385 -110
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +402 -115
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +402 -115
  10. package/dist/css/uikit.min.css +1 -1
  11. package/dist/js/components/countdown.js +1 -1
  12. package/dist/js/components/countdown.min.js +1 -1
  13. package/dist/js/components/filter.js +7 -5
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +196 -140
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +196 -140
  18. package/dist/js/components/lightbox.min.js +1 -1
  19. package/dist/js/components/notification.js +1 -1
  20. package/dist/js/components/notification.min.js +1 -1
  21. package/dist/js/components/parallax.js +4 -5
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +4 -5
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +22 -7
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +4 -5
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +22 -7
  30. package/dist/js/components/slideshow.min.js +1 -1
  31. package/dist/js/components/sortable.js +3 -3
  32. package/dist/js/components/sortable.min.js +1 -1
  33. package/dist/js/components/tooltip.js +107 -137
  34. package/dist/js/components/tooltip.min.js +1 -1
  35. package/dist/js/components/upload.js +1 -1
  36. package/dist/js/components/upload.min.js +1 -1
  37. package/dist/js/uikit-core.js +1825 -1723
  38. package/dist/js/uikit-core.min.js +14 -1
  39. package/dist/js/uikit-icons.js +1 -1
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +1060 -941
  42. package/dist/js/uikit.min.js +14 -1
  43. package/package.json +1 -1
  44. package/src/images/{backgrounds/nav-parent-open.svg → components/nav-parent-icon-large.svg} +0 -0
  45. package/src/images/components/nav-parent-icon.svg +3 -0
  46. package/src/images/components/navbar-parent-icon.svg +3 -0
  47. package/src/images/components/navbar-toggle-icon.svg +22 -3
  48. package/src/js/api/state.js +2 -2
  49. package/src/js/components/filter.js +5 -3
  50. package/src/js/components/sortable.js +2 -3
  51. package/src/js/core/accordion.js +9 -17
  52. package/src/js/core/alert.js +35 -14
  53. package/src/js/core/drop.js +95 -61
  54. package/src/js/core/height-viewport.js +14 -6
  55. package/src/js/core/icon.js +16 -0
  56. package/src/js/core/index.js +2 -0
  57. package/src/js/core/leader.js +2 -2
  58. package/src/js/core/navbar.js +44 -30
  59. package/src/js/core/offcanvas.js +1 -47
  60. package/src/js/core/scroll.js +37 -10
  61. package/src/js/core/sticky.js +8 -9
  62. package/src/js/core/toggle.js +3 -5
  63. package/src/js/mixin/media.js +4 -5
  64. package/src/js/mixin/modal.js +97 -8
  65. package/src/js/mixin/position.js +26 -11
  66. package/src/js/mixin/slider-drag.js +20 -8
  67. package/src/js/mixin/style.js +11 -0
  68. package/src/js/mixin/togglable.js +88 -133
  69. package/src/js/util/animation.js +4 -3
  70. package/src/js/util/dimensions.js +6 -6
  71. package/src/js/util/filter.js +3 -7
  72. package/src/js/util/position.js +108 -107
  73. package/src/js/util/style.js +4 -13
  74. package/src/js/util/viewport.js +5 -32
  75. package/src/less/components/_import.less +1 -0
  76. package/src/less/components/drop.less +1 -18
  77. package/src/less/components/dropbar.less +115 -0
  78. package/src/less/components/dropdown.less +16 -16
  79. package/src/less/components/leader.less +1 -1
  80. package/src/less/components/nav.less +240 -63
  81. package/src/less/components/navbar.less +81 -38
  82. package/src/less/components/utility.less +21 -4
  83. package/src/less/theme/_import.less +1 -0
  84. package/src/less/theme/dropbar.less +44 -0
  85. package/src/less/theme/dropdown.less +0 -11
  86. package/src/less/theme/nav.less +43 -9
  87. package/src/less/theme/navbar.less +7 -11
  88. package/src/scss/components/_import.scss +1 -0
  89. package/src/scss/components/drop.scss +1 -18
  90. package/src/scss/components/dropbar.scss +115 -0
  91. package/src/scss/components/dropdown.scss +16 -16
  92. package/src/scss/components/leader.scss +1 -1
  93. package/src/scss/components/nav.scss +189 -51
  94. package/src/scss/components/navbar.scss +69 -38
  95. package/src/scss/components/utility.scss +19 -3
  96. package/src/scss/mixins-theme.scss +93 -25
  97. package/src/scss/mixins.scss +89 -17
  98. package/src/scss/theme/_import.scss +1 -0
  99. package/src/scss/theme/dropbar.scss +44 -0
  100. package/src/scss/theme/dropdown.scss +0 -8
  101. package/src/scss/theme/nav.scss +41 -9
  102. package/src/scss/theme/navbar.scss +7 -8
  103. package/src/scss/variables-theme.scss +71 -18
  104. package/src/scss/variables.scss +60 -14
  105. package/tests/accordion.html +2 -2
  106. package/tests/alert.html +2 -2
  107. package/tests/countdown.html +1 -1
  108. package/tests/drop.html +457 -371
  109. package/tests/dropbar.html +456 -0
  110. package/tests/dropdown.html +26 -401
  111. package/tests/filter.html +9 -12
  112. package/tests/form.html +1 -1
  113. package/tests/index.html +126 -107
  114. package/tests/js/index.js +1 -4
  115. package/tests/lightbox.html +5 -5
  116. package/tests/list.html +8 -8
  117. package/tests/modal.html +13 -13
  118. package/tests/nav.html +117 -75
  119. package/tests/navbar.html +2002 -1131
  120. package/tests/offcanvas.html +17 -21
  121. package/tests/parallax.html +1 -1
  122. package/tests/position.html +18 -16
  123. package/tests/progress.html +9 -9
  124. package/tests/scroll.html +7 -10
  125. package/tests/search.html +5 -5
  126. package/tests/slider.html +6 -5
  127. package/tests/slideshow.html +8 -8
  128. package/tests/sortable.html +6 -8
  129. package/tests/sticky-navbar.html +6 -6
  130. package/tests/sticky.html +8 -8
  131. package/tests/switcher.html +1 -1
  132. package/tests/tab.html +1 -1
  133. package/tests/table.html +7 -7
  134. package/tests/toggle.html +2 -2
  135. package/tests/tooltip.html +1 -1
  136. package/tests/upload.html +11 -11
  137. package/tests/utility.html +19 -0
  138. 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.871ba3c05 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.14.4-dev.8a6d8c5ed | 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
- matches(element, selector) || !!closest(element, selector) :
400
- element === selector || toNode(selector).contains(toNode(element));
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[0] === '-') {
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
- let i = cssPrefixes.length,
812
- prefixedName;
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
  }
@@ -913,13 +899,14 @@
913
899
  const Transition = {
914
900
  start: transition,
915
901
 
916
- stop(element) {
902
+ async stop(element) {
917
903
  trigger(element, 'transitionend');
918
- return Promise.resolve();
904
+ await Promise.resolve();
919
905
  },
920
906
 
921
- cancel(element) {
907
+ async cancel(element) {
922
908
  trigger(element, 'transitioncanceled');
909
+ await Promise.resolve();
923
910
  },
924
911
 
925
912
  inProgress(element) {
@@ -929,7 +916,7 @@
929
916
 
930
917
  const animationPrefix = 'uk-animation-';
931
918
 
932
- function animate$1(element, animation, duration, origin, out) {if (duration === void 0) {duration = 200;}
919
+ function animate$2(element, animation, duration, origin, out) {if (duration === void 0) {duration = 200;}
933
920
  return Promise.all(
934
921
  toNodes(element).map(
935
922
  (element) =>
@@ -965,10 +952,10 @@
965
952
 
966
953
  const inProgress = new RegExp(animationPrefix + "(enter|leave)");
967
954
  const Animation = {
968
- in: animate$1,
955
+ in: animate$2,
969
956
 
970
957
  out(element, animation, duration, origin) {
971
- return animate$1(element, animation, duration, origin, true);
958
+ return animate$2(element, animation, duration, origin, true);
972
959
  },
973
960
 
974
961
  inProgress(element) {
@@ -1060,13 +1047,13 @@
1060
1047
  }
1061
1048
 
1062
1049
  function offsetPosition(element) {
1063
- const offset = [0, 0];
1064
-
1065
1050
  element = toNode(element);
1066
1051
 
1067
- do {
1068
- offset[0] += element.offsetTop;
1069
- offset[1] += element.offsetLeft;
1052
+ const offset = [element.offsetTop, element.offsetLeft];
1053
+
1054
+ while (element = element.offsetParent) {
1055
+ offset[0] += element.offsetTop + toFloat(css(element, "borderTopWidth"));
1056
+ offset[1] += element.offsetLeft + toFloat(css(element, "borderLeftWidth"));
1070
1057
 
1071
1058
  if (css(element, 'position') === 'fixed') {
1072
1059
  const win = toWindow(element);
@@ -1074,7 +1061,7 @@
1074
1061
  offset[1] += win.scrollX;
1075
1062
  return offset;
1076
1063
  }
1077
- } while (element = element.offsetParent);
1064
+ }
1078
1065
 
1079
1066
  return offset;
1080
1067
  }
@@ -1293,9 +1280,9 @@
1293
1280
  const hasTouch = inBrowser && 'ontouchstart' in window;
1294
1281
  const hasPointerEvents = inBrowser && window.PointerEvent;
1295
1282
 
1296
- const pointerDown = hasPointerEvents ? 'pointerdown' : hasTouch ? 'touchstart' : 'mousedown';
1297
- const pointerMove = hasPointerEvents ? 'pointermove' : hasTouch ? 'touchmove' : 'mousemove';
1298
- const pointerUp = hasPointerEvents ? 'pointerup' : hasTouch ? 'touchend' : 'mouseup';
1283
+ const pointerDown$1 = hasPointerEvents ? 'pointerdown' : hasTouch ? 'touchstart' : 'mousedown';
1284
+ const pointerMove$1 = hasPointerEvents ? 'pointermove' : hasTouch ? 'touchmove' : 'mousemove';
1285
+ const pointerUp$1 = hasPointerEvents ? 'pointerup' : hasTouch ? 'touchend' : 'mouseup';
1299
1286
  const pointerEnter = hasPointerEvents ? 'pointerenter' : hasTouch ? '' : 'mouseenter';
1300
1287
  const pointerLeave = hasPointerEvents ? 'pointerleave' : hasTouch ? '' : 'mouseleave';
1301
1288
  const pointerCancel = hasPointerEvents ? 'pointercancel' : 'touchcancel';
@@ -1795,20 +1782,6 @@
1795
1782
 
1796
1783
  }
1797
1784
 
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
1785
  function scrollIntoView(element, _temp) {let { offset: offsetBy = 0 } = _temp === void 0 ? {} : _temp;
1813
1786
  const parents = isVisible(element) ? scrollParents(element) : [];
1814
1787
  return parents.reduce(
@@ -1850,7 +1823,7 @@
1850
1823
  (function step() {
1851
1824
  const percent = ease(clamp((Date.now() - start) / duration));
1852
1825
 
1853
- scrollTop(element, scroll + top * percent);
1826
+ element.scrollTop = scroll + top * percent;
1854
1827
 
1855
1828
  // scroll more if we have not reached our destination
1856
1829
  if (percent === 1) {
@@ -1913,12 +1886,10 @@
1913
1886
  function offsetViewport(scrollElement) {
1914
1887
  const window = toWindow(scrollElement);
1915
1888
  const {
1916
- document: { body, documentElement } } =
1889
+ document: { documentElement } } =
1917
1890
  window;
1918
1891
  let viewportElement =
1919
- scrollElement === scrollingElement(scrollElement) || scrollElement === body ?
1920
- window :
1921
- scrollElement;
1892
+ scrollElement === scrollingElement(scrollElement) ? window : scrollElement;
1922
1893
 
1923
1894
  const { visualViewport } = window;
1924
1895
  if (isWindow(viewportElement) && visualViewport) {
@@ -1937,7 +1908,7 @@
1937
1908
  // iOS 12 returns <body> as scrollingElement
1938
1909
  viewportElement = documentElement;
1939
1910
  } else {
1940
- rect[start] += toFloat(css(viewportElement, "border" + ucfirst(start) + "Width"));
1911
+ rect[start] += toFloat(css(viewportElement, "border-" + start + "-width"));
1941
1912
  }
1942
1913
  rect[prop] = rect[dir] = viewportElement["client" + ucfirst(prop)];
1943
1914
  rect[end] = rect[prop] + rect[start];
@@ -1962,126 +1933,65 @@
1962
1933
  ...options.attach },
1963
1934
 
1964
1935
  offset: [0, 0],
1936
+ placement: [],
1965
1937
  ...options };
1966
1938
 
1967
1939
 
1968
- const dim = options.flip ?
1969
- attachToWithFlip(element, target, options) :
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];
1940
+ if (!isArray(target)) {
1941
+ target = [target, target];
1995
1942
  }
1996
- return position;
1997
- }
1998
1943
 
1999
- function moveBy(start, end, dim) {
2000
- return start === 'center' ? dim / 2 : start === end ? dim : 0;
1944
+ offset(element, getPosition(element, target, options));
2001
1945
  }
2002
1946
 
2003
- function attachToWithFlip(element, target, options) {
1947
+ function getPosition(element, target, options) {
2004
1948
  const position = attachTo(element, target, options);
2005
- const targetDim = offset(target);
2006
1949
 
2007
1950
  let {
2008
- flip,
2009
1951
  attach: { element: elAttach, target: targetAttach },
2010
1952
  offset: elOffset,
2011
1953
  boundary,
2012
- viewport,
2013
- viewportOffset } =
1954
+ viewportOffset,
1955
+ placement } =
2014
1956
  options;
2015
1957
 
2016
- let viewports = scrollParents(element);
2017
- if (boundary === target) {
2018
- viewports = viewports.filter((viewport) => viewport !== boundary);
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
- }
1958
+ let offsetPosition = position;
1959
+ for (const [i, [prop,, start, end]] of Object.entries(dirs)) {
1960
+ let viewports = scrollParents(target[i]);
1961
+ const [scrollElement] = viewports;
2028
1962
 
2029
- const willFlip =
2030
- !intersectLine(position, targetDim, i) && intersectLine(position, targetDim, 1 - i);
2031
-
2032
- viewport = getIntersectionArea(...viewports.filter(Boolean).map(offsetViewport));
1963
+ let viewport = getIntersectionArea(...viewports.map(offsetViewport));
2033
1964
 
2034
1965
  if (viewportOffset) {
2035
1966
  viewport[start] += viewportOffset;
2036
1967
  viewport[end] -= viewportOffset;
2037
1968
  }
2038
1969
 
2039
- if (boundary && !willFlip && position[prop] <= offset(boundary)[prop]) {
2040
- viewport = getIntersectionArea(viewport, offset(boundary));
1970
+ if (boundary) {
1971
+ viewport = getIntersectionArea(viewport, offsetViewport(boundary));
2041
1972
  }
2042
1973
 
2043
- const isInStartBoundary = position[start] >= viewport[start];
2044
- const isInEndBoundary = position[end] <= viewport[end];
1974
+ const isInStartViewport = position[start] >= viewport[start];
1975
+ const isInEndViewport = position[end] <= viewport[end];
2045
1976
 
2046
- if (isInStartBoundary && isInEndBoundary) {
1977
+ if (isInStartViewport && isInEndViewport) {
2047
1978
  continue;
2048
1979
  }
2049
1980
 
2050
- let offsetBy;
1981
+ let offsetBy = 0;
2051
1982
 
2052
1983
  // Flip
2053
- if (willFlip) {
1984
+ if (placement[i] === 'flip') {
2054
1985
  if (
2055
- elAttach[i] === end && isInStartBoundary ||
2056
- elAttach[i] === start && isInEndBoundary)
1986
+ targetAttach[i] === end && isInEndViewport ||
1987
+ targetAttach[i] === start && isInStartViewport)
2057
1988
  {
2058
1989
  continue;
2059
1990
  }
2060
1991
 
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))
1992
+ offsetBy = flip(element, target, options, i)[start] - position[start];
2083
1993
 
2084
- {
1994
+ if (!isInScrollArea(applyOffset(position, offsetBy, i), scrollElement, i)) {
2085
1995
  if (isInScrollArea(position, scrollElement, i)) {
2086
1996
  continue;
2087
1997
  }
@@ -2090,26 +2000,27 @@
2090
2000
  return false;
2091
2001
  }
2092
2002
 
2093
- if (flip === true || includes(flip, dirs[1 - i][1])) {
2094
- const newPos = attachToWithFlip(element, target, {
2095
- ...options,
2096
- attach: {
2097
- element: elAttach.map(flipDir).reverse(),
2098
- target: targetAttach.map(flipDir).reverse() },
2003
+ const newPos = getPosition(element, target, {
2004
+ ...options,
2005
+ attach: {
2006
+ element: elAttach.map(flipAxis).reverse(),
2007
+ target: targetAttach.map(flipAxis).reverse() },
2099
2008
 
2100
- offset: elOffset.reverse(),
2101
- flip: flip === true ? flip : [...flip, dirs[1 - i][1]],
2102
- recursion: true });
2009
+ offset: elOffset.reverse(),
2010
+ placement: placement.reverse(),
2011
+ recursion: true });
2103
2012
 
2104
2013
 
2105
- if (newPos && isInScrollArea(newPos, scrollElement, 1 - i)) {
2106
- return newPos;
2107
- }
2014
+ if (newPos && isInScrollArea(newPos, scrollElement, 1 - i)) {
2015
+ return newPos;
2108
2016
  }
2017
+
2018
+ continue;
2109
2019
  }
2110
2020
 
2111
- // Move
2112
- } else {
2021
+ // Shift
2022
+ } else if (placement[i] === 'shift') {
2023
+ const targetDim = offset(target[i]);
2113
2024
  offsetBy =
2114
2025
  clamp(
2115
2026
  clamp(position[start], viewport[start], viewport[end] - position[prop]),
@@ -2118,13 +2029,54 @@
2118
2029
  position[start];
2119
2030
  }
2120
2031
 
2121
- offsetPosition[start] = position[dir] = position[start] + offsetBy;
2122
- offsetPosition[end] += offsetBy;
2032
+ offsetPosition = applyOffset(offsetPosition, offsetBy, i);
2123
2033
  }
2124
2034
 
2125
2035
  return offsetPosition;
2126
2036
  }
2127
2037
 
2038
+ function attachTo(element, target, options) {
2039
+ let { attach, offset: offsetBy } = {
2040
+ attach: {
2041
+ element: ['left', 'top'],
2042
+ target: ['left', 'top'],
2043
+ ...options.attach },
2044
+
2045
+ offset: [0, 0],
2046
+ ...options };
2047
+
2048
+
2049
+ let elOffset = offset(element);
2050
+
2051
+ for (const [i, [prop,, start, end]] of Object.entries(dirs)) {
2052
+ const targetOffset =
2053
+ attach.target[i] === attach.element[i] ? offsetViewport(target[i]) : offset(target[i]);
2054
+
2055
+ elOffset = applyOffset(
2056
+ elOffset,
2057
+ targetOffset[start] -
2058
+ elOffset[start] +
2059
+ moveBy(attach.target[i], end, targetOffset[prop]) -
2060
+ moveBy(attach.element[i], end, elOffset[prop]) +
2061
+ +offsetBy[i],
2062
+ i);
2063
+
2064
+ }
2065
+ return elOffset;
2066
+ }
2067
+
2068
+ function applyOffset(position, offset, i) {
2069
+ const [, dir, start, end] = dirs[i];
2070
+ const newPos = { ...position };
2071
+ newPos[start] = position[dir] = position[start] + offset;
2072
+ newPos[end] += offset;
2073
+ return newPos;
2074
+ }
2075
+
2076
+ function moveBy(attach, end, dim) {
2077
+ return attach === 'center' ? dim / 2 : attach === end ? dim : 0;
2078
+ }
2079
+
2128
2080
  function getIntersectionArea() {
2129
2081
  let area = {};for (var _len = arguments.length, rects = new Array(_len), _key = 0; _key < _len; _key++) {rects[_key] = arguments[_key];}
2130
2082
  for (const rect of rects) {
@@ -2145,12 +2097,32 @@
2145
2097
  return position[start] >= viewport[start] && position[end] <= viewport[end];
2146
2098
  }
2147
2099
 
2148
- function intersectLine(dimA, dimB, dir) {
2149
- const [,, start, end] = dirs[dir];
2150
- return dimA[end] > dimB[start] && dimB[end] > dimA[start];
2100
+ function flip(element, target, _ref, i) {let { offset, attach } = _ref;
2101
+ return attachTo(element, target, {
2102
+ attach: {
2103
+ element: flipAttach(attach.element, i),
2104
+ target: flipAttach(attach.target, i) },
2105
+
2106
+ offset: flipOffset(offset, i) });
2107
+
2108
+ }
2109
+
2110
+ function flipAttach(attach, i) {
2111
+ const newAttach = [...attach];
2112
+ const index = dirs[i].indexOf(attach[i]);
2113
+ if (~index) {
2114
+ newAttach[i] = dirs[i][1 - index % 2 + 2];
2115
+ }
2116
+ return newAttach;
2117
+ }
2118
+
2119
+ function flipOffset(offset, i) {
2120
+ offset = [...offset];
2121
+ offset[i] *= -1;
2122
+ return offset;
2151
2123
  }
2152
2124
 
2153
- function flipDir(prop) {
2125
+ function flipAxis(prop) {
2154
2126
  for (let i = 0; i < dirs.length; i++) {
2155
2127
  const index = dirs[i].indexOf(prop);
2156
2128
  if (~index) {
@@ -2165,7 +2137,7 @@
2165
2137
  getImage: getImage,
2166
2138
  transition: transition,
2167
2139
  Transition: Transition,
2168
- animate: animate$1,
2140
+ animate: animate$2,
2169
2141
  Animation: Animation,
2170
2142
  attr: attr,
2171
2143
  hasAttr: hasAttr,
@@ -2205,9 +2177,9 @@
2205
2177
  inBrowser: inBrowser,
2206
2178
  isRtl: isRtl,
2207
2179
  hasTouch: hasTouch,
2208
- pointerDown: pointerDown,
2209
- pointerMove: pointerMove,
2210
- pointerUp: pointerUp,
2180
+ pointerDown: pointerDown$1,
2181
+ pointerMove: pointerMove$1,
2182
+ pointerUp: pointerUp$1,
2211
2183
  pointerEnter: pointerEnter,
2212
2184
  pointerLeave: pointerLeave,
2213
2185
  pointerCancel: pointerCancel,
@@ -2295,10 +2267,8 @@
2295
2267
  findAll: findAll,
2296
2268
  escape: escape,
2297
2269
  css: css,
2298
- getCssVar: getCssVar,
2299
2270
  propName: propName,
2300
2271
  isInView: isInView,
2301
- scrollTop: scrollTop,
2302
2272
  scrollIntoView: scrollIntoView,
2303
2273
  scrolledOver: scrolledOver,
2304
2274
  scrollParents: scrollParents,
@@ -2621,7 +2591,7 @@
2621
2591
 
2622
2592
  value = props[key] === Boolean && value === '' ? true : coerce$1(props[key], value);
2623
2593
 
2624
- if (prop === 'target' && (!value || startsWith(value, '_'))) {
2594
+ if (prop === 'target' && startsWith(value, '_')) {
2625
2595
  continue;
2626
2596
  }
2627
2597
 
@@ -2632,7 +2602,7 @@
2632
2602
 
2633
2603
  for (const key in options) {
2634
2604
  const prop = camelize(key);
2635
- if (props[prop] !== undefined) {
2605
+ if (!isUndefined(props[prop])) {
2636
2606
  data$1[prop] = coerce$1(props[prop], options[key]);
2637
2607
  }
2638
2608
  }
@@ -2961,7 +2931,7 @@
2961
2931
  UIkit.data = '__uikit__';
2962
2932
  UIkit.prefix = 'uk-';
2963
2933
  UIkit.options = {};
2964
- UIkit.version = '3.14.4-dev.871ba3c05';
2934
+ UIkit.version = '3.14.4-dev.8a6d8c5ed';
2965
2935
 
2966
2936
  globalAPI(UIkit);
2967
2937
  hooksAPI(UIkit);
@@ -3066,27 +3036,7 @@
3066
3036
  origin: false,
3067
3037
  transition: 'ease',
3068
3038
  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
-
3039
+ clsLeave: 'uk-togglabe-leave' },
3090
3040
 
3091
3041
 
3092
3042
  computed: {
@@ -3095,7 +3045,7 @@
3095
3045
  },
3096
3046
 
3097
3047
  hasTransition(_ref2) {let { animation } = _ref2;
3098
- return startsWith(animation[0], 'slide');
3048
+ return ['slide', 'reveal'].some((transition) => startsWith(animation[0], transition));
3099
3049
  } },
3100
3050
 
3101
3051
 
@@ -3188,130 +3138,105 @@
3188
3138
  };
3189
3139
  }
3190
3140
 
3191
- function toggleTransition(cmp) {
3192
- switch (cmp.animation[0]) {
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
-
3141
+ function toggleTransition(cmp) {var _cmp$animation$;
3142
+ const [mode = 'reveal', startProp = 'top'] = ((_cmp$animation$ = cmp.animation[0]) == null ? void 0 : _cmp$animation$.split('-')) || [];
3204
3143
 
3144
+ const dirs = [
3145
+ ['left', 'right'],
3146
+ ['top', 'bottom']];
3205
3147
 
3148
+ const dir = dirs[includes(dirs[0], startProp) ? 0 : 1];
3149
+ const end = dir[1] === startProp;
3150
+ const props = ['width', 'height'];
3151
+ const dimProp = props[dirs.indexOf(dir)];
3152
+ const marginProp = "margin-" + dir[0];
3153
+ const marginStartProp = "margin-" + startProp;
3206
3154
 
3155
+ return async (el, show) => {
3156
+ let { duration, velocity, transition, _toggle } = cmp;
3207
3157
 
3158
+ let currentDim = dimensions$1(el)[dimProp];
3208
3159
 
3209
- {let { isToggled, duration, velocity, initProps, hideProps, transition, _toggle } = _ref4;
3210
- return (el, show) => {
3211
3160
  const inProgress = Transition.inProgress(el);
3212
- const inner =
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);
3161
+ await Transition.cancel(el);
3222
3162
 
3223
- if (!isToggled(el)) {
3163
+ if (show) {
3224
3164
  _toggle(el, true);
3225
3165
  }
3226
3166
 
3227
- css(el, 'maxHeight', '');
3228
-
3229
- // Update child components first
3230
- fastdom.flush();
3231
-
3232
- const endHeight = toFloat(css(el, 'height')) + inner;
3233
- duration = velocity * endHeight + duration;
3234
-
3235
- css(el, { ...props, maxHeight: currentHeight });
3236
-
3237
- return (
3238
- show ?
3239
- Transition.start(
3240
- el,
3241
- { ...initProps, overflow: 'hidden', maxHeight: endHeight },
3242
- duration * (1 - currentHeight / endHeight),
3243
- transition) :
3244
-
3245
- Transition.start(
3246
- el,
3247
- hideProps,
3248
- duration * (currentHeight / endHeight),
3249
- transition).
3250
- then(() => _toggle(el, false))).
3251
- then(() => css(el, initProps));
3252
- };
3253
- }
3254
-
3255
- function slideHorizontal(_ref5, right) {let { isToggled, duration, velocity, transition, _toggle } = _ref5;
3256
- return (el, show) => {
3257
- const visible = isVisible(el);
3258
- const marginLeft = toFloat(css(el, 'marginLeft'));
3259
-
3260
- Transition.cancel(el);
3261
-
3262
- const [scrollElement] = scrollParents(el);
3263
- css(scrollElement, 'overflowX', 'hidden');
3264
-
3265
- if (!isToggled(el)) {
3266
- _toggle(el, true);
3267
- }
3167
+ const prevProps = Object.fromEntries(
3168
+ [
3169
+ 'padding',
3170
+ 'border',
3171
+ 'width',
3172
+ 'height',
3173
+ 'overflowY',
3174
+ 'overflowX',
3175
+ marginProp,
3176
+ marginStartProp].
3177
+ map((key) => [key, el.style[key]]));
3178
+
3179
+
3180
+ const dim = dimensions$1(el);
3181
+ const currentMargin = toFloat(css(el, marginProp));
3182
+ const marginStart = toFloat(css(el, marginStartProp));
3183
+ const endDim = dim[dimProp] + marginStart;
3184
+
3185
+ if (!inProgress && !show) {
3186
+ currentDim += marginStart;
3187
+ }
3188
+
3189
+ const [wrapper] = wrapInner(el, '<div>');
3190
+ css(wrapper, {
3191
+ boxSizing: 'border-box',
3192
+ height: dim.height,
3193
+ width: dim.width,
3194
+ ...css(el, [
3195
+ 'overflow',
3196
+ 'padding',
3197
+ 'borderTop',
3198
+ 'borderRight',
3199
+ 'borderBottom',
3200
+ 'borderLeft',
3201
+ 'borderImage',
3202
+ marginStartProp]) });
3268
3203
 
3269
- const width = toFloat(css(el, 'width'));
3270
- duration = velocity * width + duration;
3271
3204
 
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
3205
 
3278
3206
  css(el, {
3279
- clipPath: useClipPath ?
3280
- right ? "polygon(0 0," +
3281
- percent + "% 0," + percent + "% 100%,0 100%)" : "polygon(" + (
3282
- 100 - percent) + "% 0,100% 0,100% 100%," + (100 - percent) + "% 100%)" :
3283
- '',
3284
- marginLeft: (100 - percent) * (right ? 1 : -1) / 100 * width });
3285
-
3207
+ padding: 0,
3208
+ border: 0,
3209
+ [marginStartProp]: 0,
3210
+ width: dim.width,
3211
+ height: dim.height,
3212
+ overflow: 'hidden',
3213
+ [dimProp]: currentDim });
3286
3214
 
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
3215
 
3295
- duration * (1 - percent / 100),
3296
- transition) :
3216
+ const percent = currentDim / endDim;
3217
+ duration = (velocity * endDim + duration) * (show ? 1 - percent : percent);
3218
+ const endProps = { [dimProp]: show ? endDim : 0 };
3297
3219
 
3298
- Transition.start(
3299
- el,
3300
- {
3301
- clipPath: useClipPath ?
3302
- right ? "polygon(0 0,0 0,0 100%,0 100%)" : "polygon(100% 0,100% 0,100% 100%,100% 100%)" :
3220
+ if (end) {
3221
+ css(el, marginProp, endDim - currentDim + currentMargin);
3222
+ endProps[marginProp] = show ? currentMargin : endDim + currentMargin;
3223
+ }
3303
3224
 
3225
+ if (!end ^ mode === 'reveal') {
3226
+ css(wrapper, marginProp, -endDim + currentDim);
3227
+ Transition.start(wrapper, { [marginProp]: show ? 0 : -endDim }, duration, transition);
3228
+ }
3304
3229
 
3305
- '',
3306
- marginLeft: (right ? 1 : -1) * width },
3230
+ try {
3231
+ await Transition.start(el, endProps, duration, transition);
3232
+ } finally {
3233
+ css(el, prevProps);
3234
+ unwrap(wrapper.firstChild);
3307
3235
 
3308
- duration * (percent / 100),
3309
- transition).
3310
- then(() => _toggle(el, false))).
3311
- then(() => {
3312
- css(scrollElement, 'overflowX', '');
3313
- css(el, { clipPath: '', marginLeft: '' });
3314
- });
3236
+ if (!show) {
3237
+ _toggle(el, false);
3238
+ }
3239
+ }
3315
3240
  };
3316
3241
  }
3317
3242
 
@@ -3336,6 +3261,7 @@
3336
3261
  mixins: [Class, Lazyload, Togglable],
3337
3262
 
3338
3263
  props: {
3264
+ animation: Boolean,
3339
3265
  targets: String,
3340
3266
  active: null,
3341
3267
  collapsible: Boolean,
@@ -3348,7 +3274,7 @@
3348
3274
  data: {
3349
3275
  targets: '> *',
3350
3276
  active: false,
3351
- animation: ['slide'],
3277
+ animation: true,
3352
3278
  collapsible: true,
3353
3279
  multiple: false,
3354
3280
  clsOpen: 'uk-open',
@@ -3394,7 +3320,7 @@
3394
3320
  hide(
3395
3321
  el,
3396
3322
  !hasClass(
3397
- this.items.find((item) => item.contains(el)),
3323
+ this.items.find((item) => within(el, item)),
3398
3324
  this.clsOpen));
3399
3325
 
3400
3326
 
@@ -3446,23 +3372,15 @@
3446
3372
  toggleClass(el, this.clsOpen, show);
3447
3373
  attr($(this.$props.toggle, el), 'aria-expanded', show);
3448
3374
 
3449
- const content = $("" + (el._wrapper ? '> * ' : '') + this.content, el);
3375
+ const content = $(this.content, el);
3450
3376
 
3451
- if (animate === false || !this.hasTransition) {
3377
+ if (animate === false || !this.animation) {
3378
+ content.hidden = !show;
3452
3379
  hide(content, !show);
3453
3380
  return;
3454
3381
  }
3455
3382
 
3456
- if (!el._wrapper) {
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);
3383
+ await toggleTransition(this)(content, show);
3466
3384
 
3467
3385
  if (show) {
3468
3386
  const toggle = $(this.$props.toggle, el);
@@ -3488,18 +3406,17 @@
3488
3406
  args: 'animation',
3489
3407
 
3490
3408
  props: {
3409
+ animation: Boolean,
3491
3410
  close: String },
3492
3411
 
3493
3412
 
3494
3413
  data: {
3495
- animation: ['slide'],
3414
+ animation: true,
3496
3415
  selClose: '.uk-alert-close',
3497
- duration: 150,
3498
- hideProps: { opacity: 0, ...Togglable.data.hideProps } },
3416
+ duration: 150 },
3499
3417
 
3500
3418
 
3501
- events: [
3502
- {
3419
+ events: {
3503
3420
  name: 'click',
3504
3421
 
3505
3422
  delegate() {
@@ -3509,16 +3426,39 @@
3509
3426
  handler(e) {
3510
3427
  e.preventDefault();
3511
3428
  this.close();
3512
- } }],
3513
-
3429
+ } },
3514
3430
 
3515
3431
 
3516
3432
  methods: {
3517
3433
  async close() {
3518
- await this.toggleElement(this.$el);
3434
+ await this.toggleElement(this.$el, false, animate$1(this));
3519
3435
  this.$destroy(true);
3520
3436
  } } };
3521
3437
 
3438
+
3439
+
3440
+ function animate$1(_ref) {let { duration, transition, velocity } = _ref;
3441
+ return (el) => {
3442
+ const height = toFloat(css(el, 'height'));
3443
+ css(el, 'height', height);
3444
+ return Transition.start(
3445
+ el,
3446
+ {
3447
+ height: 0,
3448
+ marginTop: 0,
3449
+ marginBottom: 0,
3450
+ paddingTop: 0,
3451
+ paddingBottom: 0,
3452
+ borderTop: 0,
3453
+ borderBottom: 0,
3454
+ opacity: 0 },
3455
+
3456
+ velocity * height + duration,
3457
+ transition);
3458
+
3459
+ };
3460
+ }
3461
+
3522
3462
  var Video = {
3523
3463
  args: 'autoplay',
3524
3464
 
@@ -3667,13 +3607,17 @@
3667
3607
  props: {
3668
3608
  pos: String,
3669
3609
  offset: null,
3670
- flip: Boolean },
3610
+ flip: Boolean,
3611
+ shift: Boolean,
3612
+ inset: Boolean },
3671
3613
 
3672
3614
 
3673
3615
  data: {
3674
3616
  pos: "bottom-" + (isRtl ? 'right' : 'left'),
3617
+ offset: false,
3675
3618
  flip: true,
3676
- offset: false },
3619
+ shift: true,
3620
+ inset: false },
3677
3621
 
3678
3622
 
3679
3623
  connected() {
@@ -3685,19 +3629,24 @@
3685
3629
  methods: {
3686
3630
  positionAt(element, target, boundary) {
3687
3631
  let offset = [this.getPositionOffset(element), this.getShiftOffset(element)];
3632
+ const placement = [this.flip && 'flip', this.shift && 'shift'];
3688
3633
 
3689
3634
  const attach = {
3690
- element: [flipPosition(this.dir), this.align],
3635
+ element: [this.inset ? this.dir : flipPosition(this.dir), this.align],
3691
3636
  target: [this.dir, this.align] };
3692
3637
 
3693
3638
 
3694
3639
  if (this.axis === 'y') {
3695
3640
  for (const prop in attach) {
3696
- attach[prop] = attach[prop].reverse();
3641
+ attach[prop].reverse();
3697
3642
  }
3698
- offset = offset.reverse();
3643
+ offset.reverse();
3644
+ placement.reverse();
3699
3645
  }
3700
3646
 
3647
+ const [scrollElement] = scrollParents(element, /auto|scroll/);
3648
+ const { scrollTop, scrollLeft } = scrollElement;
3649
+
3701
3650
  // Ensure none positioned element does not generate scrollbars
3702
3651
  const elDim = dimensions$1(element);
3703
3652
  css(element, { top: -elDim.height, left: -elDim.width });
@@ -3706,93 +3655,88 @@
3706
3655
  attach,
3707
3656
  offset,
3708
3657
  boundary,
3709
- flip: this.flip,
3658
+ placement,
3710
3659
  viewportOffset: this.getViewportOffset(element) });
3711
3660
 
3661
+
3662
+ // Restore scroll position
3663
+ scrollElement.scrollTop = scrollTop;
3664
+ scrollElement.scrollLeft = scrollLeft;
3712
3665
  },
3713
3666
 
3714
3667
  getPositionOffset(element) {
3715
3668
  return (
3716
3669
  toPx(
3717
- this.offset === false ? getCssVar('position-offset', element) : this.offset,
3670
+ this.offset === false ? css(element, '--uk-position-offset') : this.offset,
3718
3671
  this.axis === 'x' ? 'width' : 'height',
3719
3672
  element) * (
3720
- includes(['left', 'top'], this.dir) ? -1 : 1));
3673
+
3674
+ includes(['left', 'top'], this.dir) ? -1 : 1) * (
3675
+ this.inset ? -1 : 1));
3721
3676
 
3722
3677
  },
3723
3678
 
3724
3679
  getShiftOffset(element) {
3725
- return includes(['center', 'justify', 'stretch'], this.align) ?
3680
+ return this.align === 'center' ?
3726
3681
  0 :
3727
3682
  toPx(
3728
- getCssVar('position-shift-offset', element),
3683
+ css(element, '--uk-position-shift-offset'),
3729
3684
  this.axis === 'y' ? 'width' : 'height',
3730
3685
  element) * (
3731
3686
  includes(['left', 'top'], this.align) ? 1 : -1);
3732
3687
  },
3733
3688
 
3734
3689
  getViewportOffset(element) {
3735
- return toPx(getCssVar('position-viewport-offset', element));
3690
+ return toPx(css(element, '--uk-position-viewport-offset'));
3736
3691
  } } };
3737
3692
 
3738
- let active$1;
3693
+ var Style = {
3694
+ beforeConnect() {
3695
+ this._style = attr(this.$el, 'style');
3696
+ },
3739
3697
 
3740
- var drop = {
3741
- mixins: [Container, Lazyload, Position, Togglable],
3698
+ disconnected() {
3699
+ attr(this.$el, 'style', this._style);
3700
+ } };
3742
3701
 
3743
- args: 'pos',
3702
+ const active$1 = [];
3703
+
3704
+ var Modal = {
3705
+ mixins: [Class, Container, Togglable],
3744
3706
 
3745
3707
  props: {
3746
- mode: 'list',
3747
- toggle: Boolean,
3748
- boundary: Boolean,
3749
- boundaryAlign: Boolean,
3750
- delayShow: Number,
3751
- delayHide: Number,
3752
- display: String,
3753
- clsDrop: String,
3754
- animateOut: Boolean },
3708
+ selPanel: String,
3709
+ selClose: String,
3710
+ escClose: Boolean,
3711
+ bgClose: Boolean,
3712
+ stack: Boolean },
3755
3713
 
3756
3714
 
3757
3715
  data: {
3758
- mode: ['click', 'hover'],
3759
- toggle: '- *',
3760
- boundary: true,
3761
- boundaryAlign: false,
3762
- delayShow: 0,
3763
- delayHide: 800,
3764
- display: null,
3765
- clsDrop: false,
3766
- animation: ['uk-animation-fade'],
3767
3716
  cls: 'uk-open',
3768
- container: false,
3769
- animateOut: false },
3717
+ escClose: true,
3718
+ bgClose: true,
3719
+ overlay: true,
3720
+ stack: false },
3770
3721
 
3771
3722
 
3772
- created() {
3773
- this.tracker = new MouseTracker();
3774
- },
3723
+ computed: {
3724
+ panel(_ref, $el) {let { selPanel } = _ref;
3725
+ return $(selPanel, $el);
3726
+ },
3775
3727
 
3776
- beforeConnect() {
3777
- this.clsDrop = this.$props.clsDrop || "uk-" + this.$options.name;
3778
- },
3728
+ transitionElement() {
3729
+ return this.panel;
3730
+ },
3779
3731
 
3780
- connected() {
3781
- addClass(this.$el, this.clsDrop);
3732
+ bgClose(_ref2) {let { bgClose } = _ref2;
3733
+ return bgClose && this.panel;
3734
+ } },
3782
3735
 
3783
- if (this.toggle && !this.target) {
3784
- this.target = this.$create('toggle', query(this.toggle, this.$el), {
3785
- target: this.$el,
3786
- mode: this.mode }).
3787
- $el;
3788
- attr(this.target, 'aria-haspopup', true);
3789
- this.lazyload(this.target);
3790
- }
3791
- },
3792
3736
 
3793
- disconnected() {
3794
- if (this.isActive()) {
3795
- active$1 = null;
3737
+ beforeDisconnect() {
3738
+ if (includes(active$1, this)) {
3739
+ this.toggleElement(this.$el, false, false);
3796
3740
  }
3797
3741
  },
3798
3742
 
@@ -3801,55 +3745,432 @@
3801
3745
  name: 'click',
3802
3746
 
3803
3747
  delegate() {
3804
- return "." + this.clsDrop + "-close";
3748
+ return this.selClose;
3805
3749
  },
3806
3750
 
3807
3751
  handler(e) {
3808
3752
  e.preventDefault();
3809
- this.hide(false);
3753
+ this.hide();
3810
3754
  } },
3811
3755
 
3812
3756
 
3813
3757
  {
3814
- name: 'click',
3758
+ name: 'toggle',
3815
3759
 
3816
- delegate() {
3817
- return 'a[href^="#"]';
3818
- },
3760
+ self: true,
3819
3761
 
3820
- handler(_ref) {let { defaultPrevented, current: { hash } } = _ref;
3821
- if (!defaultPrevented && hash && !within(hash, this.$el)) {
3822
- this.hide(false);
3762
+ handler(e) {
3763
+ if (e.defaultPrevented) {
3764
+ return;
3823
3765
  }
3824
- } },
3825
3766
 
3767
+ e.preventDefault();
3826
3768
 
3827
- {
3828
- name: 'beforescroll',
3829
-
3830
- handler() {
3831
- this.hide(false);
3769
+ if (this.isToggled() === includes(active$1, this)) {
3770
+ this.toggle();
3771
+ }
3832
3772
  } },
3833
3773
 
3834
3774
 
3835
3775
  {
3836
- name: 'toggle',
3776
+ name: 'beforeshow',
3837
3777
 
3838
3778
  self: true,
3839
3779
 
3840
- handler(e, toggle) {
3841
- e.preventDefault();
3780
+ handler(e) {
3781
+ if (includes(active$1, this)) {
3782
+ return false;
3783
+ }
3842
3784
 
3843
- if (this.isToggled()) {
3844
- this.hide(false);
3785
+ if (!this.stack && active$1.length) {
3786
+ Promise.all(active$1.map((modal) => modal.hide())).then(this.show);
3787
+ e.preventDefault();
3845
3788
  } else {
3846
- this.show(toggle == null ? void 0 : toggle.$el, false);
3789
+ active$1.push(this);
3847
3790
  }
3848
3791
  } },
3849
3792
 
3850
3793
 
3851
3794
  {
3852
- name: 'toggleshow',
3795
+ name: 'show',
3796
+
3797
+ self: true,
3798
+
3799
+ handler() {
3800
+ once(
3801
+ this.$el,
3802
+ 'hide',
3803
+ on(document, 'focusin', (e) => {
3804
+ if (last(active$1) === this && !within(e.target, this.$el)) {
3805
+ this.$el.focus();
3806
+ }
3807
+ }));
3808
+
3809
+
3810
+ if (this.overlay) {
3811
+ once(this.$el, 'hidden', preventOverscroll(this.$el), { self: true });
3812
+ once(this.$el, 'hidden', preventBackgroundScroll(), { self: true });
3813
+ }
3814
+
3815
+ if (this.stack) {
3816
+ css(this.$el, 'zIndex', toFloat(css(this.$el, 'zIndex')) + active$1.length);
3817
+ }
3818
+
3819
+ addClass(document.documentElement, this.clsPage);
3820
+
3821
+ if (this.bgClose) {
3822
+ once(
3823
+ this.$el,
3824
+ 'hide',
3825
+ on(document, pointerDown$1, (_ref3) => {let { target } = _ref3;
3826
+ if (
3827
+ last(active$1) !== this ||
3828
+ this.overlay && !within(target, this.$el) ||
3829
+ within(target, this.panel))
3830
+ {
3831
+ return;
3832
+ }
3833
+
3834
+ once(
3835
+ document,
3836
+ pointerUp$1 + " " + pointerCancel + " scroll",
3837
+ (_ref4) => {let { defaultPrevented, type, target: newTarget } = _ref4;
3838
+ if (
3839
+ !defaultPrevented &&
3840
+ type === pointerUp$1 &&
3841
+ target === newTarget)
3842
+ {
3843
+ this.hide();
3844
+ }
3845
+ },
3846
+ true);
3847
+
3848
+ }),
3849
+ { self: true });
3850
+
3851
+ }
3852
+
3853
+ if (this.escClose) {
3854
+ once(
3855
+ this.$el,
3856
+ 'hide',
3857
+ on(document, 'keydown', (e) => {
3858
+ if (e.keyCode === 27 && last(active$1) === this) {
3859
+ this.hide();
3860
+ }
3861
+ }),
3862
+ { self: true });
3863
+
3864
+ }
3865
+ } },
3866
+
3867
+
3868
+ {
3869
+ name: 'shown',
3870
+
3871
+ self: true,
3872
+
3873
+ handler() {
3874
+ if (!isFocusable(this.$el)) {
3875
+ attr(this.$el, 'tabindex', '-1');
3876
+ }
3877
+
3878
+ if (!$(':focus', this.$el)) {
3879
+ this.$el.focus();
3880
+ }
3881
+ } },
3882
+
3883
+
3884
+ {
3885
+ name: 'hidden',
3886
+
3887
+ self: true,
3888
+
3889
+ handler() {
3890
+ if (includes(active$1, this)) {
3891
+ active$1.splice(active$1.indexOf(this), 1);
3892
+ }
3893
+
3894
+ css(this.$el, 'zIndex', '');
3895
+
3896
+ if (!active$1.some((modal) => modal.clsPage === this.clsPage)) {
3897
+ removeClass(document.documentElement, this.clsPage);
3898
+ }
3899
+ } }],
3900
+
3901
+
3902
+
3903
+ methods: {
3904
+ toggle() {
3905
+ return this.isToggled() ? this.hide() : this.show();
3906
+ },
3907
+
3908
+ show() {
3909
+ if (this.container && parent(this.$el) !== this.container) {
3910
+ append(this.container, this.$el);
3911
+ return new Promise((resolve) =>
3912
+ requestAnimationFrame(() => this.show().then(resolve)));
3913
+
3914
+ }
3915
+
3916
+ return this.toggleElement(this.$el, true, animate(this));
3917
+ },
3918
+
3919
+ hide() {
3920
+ return this.toggleElement(this.$el, false, animate(this));
3921
+ } } };
3922
+
3923
+
3924
+
3925
+ function animate(_ref5) {let { transitionElement, _toggle } = _ref5;
3926
+ return (el, show) =>
3927
+ new Promise((resolve, reject) =>
3928
+ once(el, 'show hide', () => {
3929
+ el._reject == null ? void 0 : el._reject();
3930
+ el._reject = reject;
3931
+
3932
+ _toggle(el, show);
3933
+
3934
+ const off = once(
3935
+ transitionElement,
3936
+ 'transitionstart',
3937
+ () => {
3938
+ once(transitionElement, 'transitionend transitioncancel', resolve, {
3939
+ self: true });
3940
+
3941
+ clearTimeout(timer);
3942
+ },
3943
+ { self: true });
3944
+
3945
+
3946
+ const timer = setTimeout(() => {
3947
+ off();
3948
+ resolve();
3949
+ }, toMs(css(transitionElement, 'transitionDuration')));
3950
+ })).
3951
+ then(() => delete el._reject);
3952
+ }
3953
+
3954
+ function toMs(time) {
3955
+ return time ? endsWith(time, 'ms') ? toFloat(time) : toFloat(time) * 1000 : 0;
3956
+ }
3957
+
3958
+ function preventOverscroll(el) {
3959
+ if (CSS.supports('overscroll-behavior', 'contain')) {
3960
+ const elements = filterChildren(el, (child) => /auto|scroll/.test(css(child, 'overflow')));
3961
+ css(elements, 'overscrollBehavior', 'contain');
3962
+ return () => css(elements, 'overscrollBehavior', '');
3963
+ }
3964
+
3965
+ let startClientY;
3966
+
3967
+ const events = [
3968
+ on(
3969
+ el,
3970
+ 'touchstart',
3971
+ (_ref6) => {let { targetTouches } = _ref6;
3972
+ if (targetTouches.length === 1) {
3973
+ startClientY = targetTouches[0].clientY;
3974
+ }
3975
+ },
3976
+ { passive: true }),
3977
+
3978
+
3979
+ on(
3980
+ el,
3981
+ 'touchmove',
3982
+ (e) => {
3983
+ if (e.targetTouches.length !== 1) {
3984
+ return;
3985
+ }
3986
+
3987
+ let [scrollParent] = scrollParents(e.target, /auto|scroll/);
3988
+ if (!within(scrollParent, el)) {
3989
+ scrollParent = el;
3990
+ }
3991
+
3992
+ const clientY = e.targetTouches[0].clientY - startClientY;
3993
+ const { scrollTop, scrollHeight, clientHeight } = scrollParent;
3994
+
3995
+ if (
3996
+ clientHeight >= scrollHeight ||
3997
+ scrollTop === 0 && clientY > 0 ||
3998
+ scrollHeight - scrollTop <= clientHeight && clientY < 0)
3999
+ {
4000
+ e.cancelable && e.preventDefault();
4001
+ }
4002
+ },
4003
+ { passive: false })];
4004
+
4005
+
4006
+
4007
+ return () => events.forEach((fn) => fn());
4008
+ }
4009
+
4010
+ let prevented;
4011
+ function preventBackgroundScroll() {
4012
+ if (prevented) {
4013
+ return noop;
4014
+ }
4015
+ prevented = true;
4016
+ const { body, documentElement } = document;
4017
+ css(body, {
4018
+ overflowY: width(window) > documentElement.clientWidth ? 'scroll' : '',
4019
+ touchAction: 'none' });
4020
+
4021
+ css(documentElement, 'overflowY', 'hidden');
4022
+ return () => {
4023
+ prevented = false;
4024
+ css(documentElement, 'overflowY', '');
4025
+ css(body, { overflowY: '', touchAction: '' });
4026
+ };
4027
+ }
4028
+
4029
+ function filterChildren(el, fn) {
4030
+ const children = [];
4031
+ apply(el, (node) => {
4032
+ if (fn(node)) {
4033
+ children.push(node);
4034
+ }
4035
+ });
4036
+ return children;
4037
+ }
4038
+
4039
+ let active;
4040
+
4041
+ var drop = {
4042
+ mixins: [Container, Lazyload, Position, Style, Togglable],
4043
+
4044
+ args: 'pos',
4045
+
4046
+ props: {
4047
+ mode: 'list',
4048
+ toggle: Boolean,
4049
+ boundary: Boolean,
4050
+ target: Boolean,
4051
+ targetX: Boolean,
4052
+ targetY: Boolean,
4053
+ stretch: Boolean,
4054
+ delayShow: Number,
4055
+ delayHide: Number,
4056
+ display: String,
4057
+ clsDrop: String,
4058
+ animateOut: Boolean,
4059
+ bgScroll: Boolean },
4060
+
4061
+
4062
+ data: {
4063
+ mode: ['click', 'hover'],
4064
+ toggle: '- *',
4065
+ boundary: false,
4066
+ target: false,
4067
+ targetX: false,
4068
+ targetY: false,
4069
+ stretch: false,
4070
+ delayShow: 0,
4071
+ delayHide: 800,
4072
+ display: null,
4073
+ clsDrop: false,
4074
+ animateOut: false,
4075
+ bgScroll: true,
4076
+ animation: ['uk-animation-fade'],
4077
+ cls: 'uk-open',
4078
+ container: false },
4079
+
4080
+
4081
+ computed: {
4082
+ target(_ref, $el) {let { target, targetX, targetY } = _ref;
4083
+ targetX = targetX || target || this.targetEl;
4084
+ targetY = targetY || target || this.targetEl;
4085
+
4086
+ return [
4087
+ targetX === true ? window : query(targetX, $el),
4088
+ targetY === true ? window : query(targetY, $el)];
4089
+
4090
+ } },
4091
+
4092
+
4093
+ created() {
4094
+ this.tracker = new MouseTracker();
4095
+ },
4096
+
4097
+ beforeConnect() {
4098
+ this.clsDrop = this.$props.clsDrop || "uk-" + this.$options.name;
4099
+ },
4100
+
4101
+ connected() {
4102
+ addClass(this.$el, this.clsDrop);
4103
+
4104
+ if (this.toggle && !this.targetEl) {
4105
+ this.targetEl = this.$create('toggle', query(this.toggle, this.$el), {
4106
+ target: this.$el,
4107
+ mode: this.mode }).
4108
+ $el;
4109
+ attr(this.targetEl, 'aria-haspopup', true);
4110
+ this.lazyload(this.targetEl);
4111
+ }
4112
+ },
4113
+
4114
+ disconnected() {
4115
+ if (this.isActive()) {
4116
+ active = null;
4117
+ }
4118
+ },
4119
+
4120
+ events: [
4121
+ {
4122
+ name: 'click',
4123
+
4124
+ delegate() {
4125
+ return "." + this.clsDrop + "-close";
4126
+ },
4127
+
4128
+ handler(e) {
4129
+ e.preventDefault();
4130
+ this.hide(false);
4131
+ } },
4132
+
4133
+
4134
+ {
4135
+ name: 'click',
4136
+
4137
+ delegate() {
4138
+ return 'a[href^="#"]';
4139
+ },
4140
+
4141
+ handler(_ref2) {let { defaultPrevented, current: { hash } } = _ref2;
4142
+ if (!defaultPrevented && hash && !within(hash, this.$el)) {
4143
+ this.hide(false);
4144
+ }
4145
+ } },
4146
+
4147
+
4148
+ {
4149
+ name: 'beforescroll',
4150
+
4151
+ handler() {
4152
+ this.hide(false);
4153
+ } },
4154
+
4155
+
4156
+ {
4157
+ name: 'toggle',
4158
+
4159
+ self: true,
4160
+
4161
+ handler(e, toggle) {
4162
+ e.preventDefault();
4163
+
4164
+ if (this.isToggled()) {
4165
+ this.hide(false);
4166
+ } else {
4167
+ this.show(toggle == null ? void 0 : toggle.$el, false);
4168
+ }
4169
+ } },
4170
+
4171
+
4172
+ {
4173
+ name: 'toggleshow',
3853
4174
 
3854
4175
  self: true,
3855
4176
 
@@ -3921,25 +4242,25 @@
3921
4242
  self: true,
3922
4243
 
3923
4244
  handler() {
3924
- active$1 = this;
4245
+ active = this;
3925
4246
 
3926
4247
  this.tracker.init();
3927
4248
 
3928
4249
  for (const handler of [
3929
4250
  on(
3930
4251
  document,
3931
- pointerDown,
3932
- (_ref2) => {let { target } = _ref2;return (
4252
+ pointerDown$1,
4253
+ (_ref3) => {let { target } = _ref3;return (
3933
4254
  !within(target, this.$el) &&
3934
4255
  once(
3935
4256
  document,
3936
- pointerUp + " " + pointerCancel + " scroll",
3937
- (_ref3) => {let { defaultPrevented, type, target: newTarget } = _ref3;
4257
+ pointerUp$1 + " " + pointerCancel + " scroll",
4258
+ (_ref4) => {let { defaultPrevented, type, target: newTarget } = _ref4;
3938
4259
  if (
3939
4260
  !defaultPrevented &&
3940
- type === pointerUp &&
4261
+ type === pointerUp$1 &&
3941
4262
  target === newTarget &&
3942
- !(this.target && within(target, this.target)))
4263
+ !(this.targetEl && within(target, this.targetEl)))
3943
4264
  {
3944
4265
  this.hide(false);
3945
4266
  }
@@ -3954,13 +4275,17 @@
3954
4275
  }
3955
4276
  }),
3956
4277
 
3957
- ...(this.display === 'static' && this.align !== 'stretch' ?
4278
+ ...(this.bgScroll ?
4279
+ [] :
4280
+ [preventOverscroll(this.$el), preventBackgroundScroll()]),
4281
+
4282
+ ...(this.display === 'static' ?
3958
4283
  [] :
3959
4284
  (() => {
3960
4285
  const handler = () => this.$emit();
3961
4286
  return [
3962
4287
  on(window, 'resize', handler),
3963
- on(document, 'scroll', handler, true),
4288
+ on([document, scrollParents(this.$el)], 'scroll', handler),
3964
4289
  (() => {
3965
4290
  const observer = observeResize(
3966
4291
  scrollParents(this.$el),
@@ -3989,16 +4314,16 @@
3989
4314
  {
3990
4315
  name: 'hide',
3991
4316
 
3992
- handler(_ref4) {let { target } = _ref4;
4317
+ handler(_ref5) {let { target } = _ref5;
3993
4318
  if (this.$el !== target) {
3994
- active$1 =
3995
- active$1 === null && within(target, this.$el) && this.isToggled() ?
4319
+ active =
4320
+ active === null && within(target, this.$el) && this.isToggled() ?
3996
4321
  this :
3997
- active$1;
4322
+ active;
3998
4323
  return;
3999
4324
  }
4000
4325
 
4001
- active$1 = this.isActive() ? null : active$1;
4326
+ active = this.isActive() ? null : active;
4002
4327
  this.tracker.cancel();
4003
4328
  } }],
4004
4329
 
@@ -4013,12 +4338,12 @@
4013
4338
 
4014
4339
 
4015
4340
  methods: {
4016
- show(target, delay) {if (target === void 0) {target = this.target;}if (delay === void 0) {delay = true;}
4017
- if (this.isToggled() && target && this.target && target !== this.target) {
4341
+ show(target, delay) {if (target === void 0) {target = this.targetEl;}if (delay === void 0) {delay = true;}
4342
+ if (this.isToggled() && target && this.targetEl && target !== this.targetEl) {
4018
4343
  this.hide(false, false);
4019
4344
  }
4020
4345
 
4021
- this.target = target;
4346
+ this.targetEl = target;
4022
4347
 
4023
4348
  this.clearTimers();
4024
4349
 
@@ -4026,16 +4351,16 @@
4026
4351
  return;
4027
4352
  }
4028
4353
 
4029
- if (active$1) {
4030
- if (delay && active$1.isDelaying) {
4354
+ if (active) {
4355
+ if (delay && active.isDelaying) {
4031
4356
  this.showTimer = setTimeout(() => matches(target, ':hover') && this.show(), 10);
4032
4357
  return;
4033
4358
  }
4034
4359
 
4035
4360
  let prev;
4036
- while (active$1 && prev !== active$1 && !within(this.$el, active$1.$el)) {
4037
- prev = active$1;
4038
- active$1.hide(false, false);
4361
+ while (active && prev !== active && !within(this.$el, active.$el)) {
4362
+ prev = active;
4363
+ active.hide(false, false);
4039
4364
  }
4040
4365
  }
4041
4366
 
@@ -4076,65 +4401,74 @@
4076
4401
  },
4077
4402
 
4078
4403
  isActive() {
4079
- return active$1 === this;
4404
+ return active === this;
4080
4405
  },
4081
4406
 
4082
4407
  position() {
4083
4408
  removeClass(this.$el, this.clsDrop + "-stack");
4084
- toggleClass(this.$el, this.clsDrop + "-boundary", this.boundaryAlign);
4085
- toggleClass(this.$el, this.clsDrop + "-stretch", this.align === 'stretch');
4409
+ attr(this.$el, 'style', this._style);
4086
4410
 
4087
- const boundary = query(this.boundary, this.$el);
4088
- const target = boundary && this.boundaryAlign ? boundary : this.target;
4089
- const [scrollParent] = scrollParents(
4090
- boundary && this.boundaryAlign ? boundary : this.$el);
4411
+ // Ensure none positioned element does not generate scrollbars
4412
+ this.$el.hidden = true;
4091
4413
 
4092
- const scrollParentOffset = offset(scrollParent);
4093
- const boundaryOffset = boundary ? offset(boundary) : scrollParentOffset;
4414
+ const boundary = query(this.boundary, this.$el);
4415
+ const boundaryOffset = offsetViewport(boundary || window);
4416
+ const viewports = this.target.map((target) => offsetViewport(scrollParents(target)[0]));
4094
4417
  const viewportOffset = this.getViewportOffset(this.$el);
4095
4418
 
4096
- css(this.$el, 'maxWidth', '');
4097
- const maxWidth = scrollParentOffset.width - 2 * viewportOffset;
4419
+ const dirs = [
4420
+ [0, ['x', 'width', 'left', 'right']],
4421
+ [1, ['y', 'height', 'top', 'bottom']]];
4098
4422
 
4099
- if (this.align === 'justify') {
4100
- const prop = this.axis === 'y' ? 'width' : 'height';
4101
- css(
4102
- this.$el,
4103
- prop,
4104
- Math.min(
4105
- (boundary ? boundaryOffset : offset(this.target))[prop],
4106
- scrollParentOffset[prop] - 2 * viewportOffset));
4107
-
4108
-
4109
- } else if (this.align === 'stretch') {
4110
- this.flip = this.axis === 'y' ? 'x' : 'y';
4111
- this.display = 'static';
4112
-
4113
- const viewport = offsetViewport(scrollParent);
4114
- const targetDim = offset(target);
4115
- const elOffset = Math.abs(this.getPositionOffset(this.$el)) + viewportOffset;
4116
-
4117
- css(this.$el, {
4118
- width:
4119
- this.axis === 'y' ?
4120
- viewport.width :
4121
- (this.dir === 'left' ?
4122
- targetDim.left - viewport.left :
4123
- viewport.right - targetDim.right) - elOffset,
4124
- height:
4125
- this.axis === 'x' ?
4126
- viewport.height :
4127
- (this.dir === 'top' ?
4128
- targetDim.top - viewport.top :
4129
- viewport.bottom - targetDim.bottom) - elOffset });
4130
-
4131
- } else if (this.$el.offsetWidth > maxWidth) {
4423
+
4424
+ for (const [i, [axis, prop]] of dirs) {
4425
+ if (this.axis !== axis && includes([axis, true], this.stretch)) {
4426
+ css(this.$el, {
4427
+ [prop]: Math.min(
4428
+ boundaryOffset[prop],
4429
+ viewports[i][prop] - 2 * viewportOffset),
4430
+
4431
+ ["overflow-" + axis]: 'auto' });
4432
+
4433
+ }
4434
+ }
4435
+
4436
+ const maxWidth = viewports[0].width - 2 * viewportOffset;
4437
+
4438
+ if (this.$el.offsetWidth > maxWidth) {
4132
4439
  addClass(this.$el, this.clsDrop + "-stack");
4133
4440
  }
4134
4441
 
4135
4442
  css(this.$el, 'maxWidth', maxWidth);
4136
4443
 
4137
- this.positionAt(this.$el, target, boundary);
4444
+ this.$el.hidden = false;
4445
+
4446
+ this.positionAt(this.$el, this.target, boundary);
4447
+
4448
+ for (const [i, [axis, prop, start, end]] of dirs) {
4449
+ if (this.axis === axis && includes([axis, true], this.stretch)) {
4450
+ const positionOffset = Math.abs(this.getPositionOffset(this.$el));
4451
+ const targetOffset = offset(this.target[i]);
4452
+ const elOffset = offset(this.$el);
4453
+
4454
+ css(this.$el, {
4455
+ [prop]:
4456
+ (targetOffset[start] > elOffset[start] ?
4457
+ targetOffset[start] -
4458
+ Math.max(
4459
+ boundaryOffset[start],
4460
+ viewports[i][start] + viewportOffset) :
4461
+
4462
+ Math.min(
4463
+ boundaryOffset[end],
4464
+ viewports[i][end] - viewportOffset) -
4465
+ targetOffset[end]) - positionOffset,
4466
+ ["overflow-" + axis]: 'auto' });
4467
+
4468
+
4469
+ this.positionAt(this.$el, this.target, boundary);
4470
+ }
4471
+ }
4138
4472
  } } };
4139
4473
 
4140
4474
 
@@ -4631,8 +4965,11 @@
4631
4965
  let minHeight = '';
4632
4966
  const box = boxModelAdjust(this.$el, 'height', 'content-box');
4633
4967
 
4968
+ const { body, scrollingElement } = document;
4634
4969
  const [scrollElement] = scrollParents(this.$el, /auto|scroll/);
4635
- const { height: viewportHeight } = offsetViewport(scrollElement);
4970
+ const { height: viewportHeight } = offsetViewport(
4971
+ scrollElement === body ? scrollingElement : scrollElement);
4972
+
4636
4973
 
4637
4974
  if (this.expand) {
4638
4975
  minHeight = Math.max(
@@ -4642,14 +4979,19 @@
4642
4979
  0);
4643
4980
 
4644
4981
  } else {
4645
- // on mobile devices (iOS and Android) window.innerHeight !== 100vh
4646
- minHeight = "calc(" + (
4647
- document.scrollingElement === scrollElement ? '100vh' : viewportHeight + "px");
4982
+ const isScrollingElement =
4983
+ scrollingElement === scrollElement || body === scrollElement;
4648
4984
 
4985
+ // on mobile devices (iOS and Android) window.innerHeight !== 100vh
4986
+ minHeight = "calc(" + (isScrollingElement ? '100vh' : viewportHeight + "px");
4649
4987
 
4650
4988
  if (this.offsetTop) {
4651
- const top = offsetPosition(this.$el)[0] - offsetPosition(scrollElement)[0];
4652
- minHeight += top > 0 && top < viewportHeight / 2 ? " - " + top + "px" : '';
4989
+ if (isScrollingElement) {
4990
+ const top = offsetPosition(this.$el)[0] - offsetPosition(scrollElement)[0];
4991
+ minHeight += top > 0 && top < viewportHeight / 2 ? " - " + top + "px" : '';
4992
+ } else {
4993
+ minHeight += " - " + css(scrollElement, 'paddingTop');
4994
+ }
4653
4995
  }
4654
4996
 
4655
4997
  if (this.offsetBottom === true) {
@@ -4888,11 +5230,17 @@
4888
5230
 
4889
5231
  var closeIcon = "<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" xmlns=\"http://www.w3.org/2000/svg\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"1\" y1=\"1\" x2=\"13\" y2=\"13\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.1\" x1=\"13\" y1=\"1\" x2=\"1\" y2=\"13\"/></svg>";
4890
5232
 
4891
- var closeLarge = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"1\" y1=\"1\" x2=\"19\" y2=\"19\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"19\" y1=\"1\" x2=\"1\" y2=\"19\"/></svg>";
5233
+ var closeLarge = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"1\" y1=\"1\" x2=\"19\" y2=\"19\"/><line fill=\"none\" stroke=\"#000\" stroke-width=\"1.4\" x1=\"19\" y1=\"1\" x2=\"1\" y2=\"19\"/></svg>";
5234
+
5235
+ 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>";
5236
+
5237
+ 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>";
5238
+
5239
+ 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>";
4892
5240
 
4893
- 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>";
5241
+ 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>";
4894
5242
 
4895
- var navbarToggleIcon = "<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\"9\" width=\"20\" height=\"2\"/><rect y=\"3\" width=\"20\" height=\"2\"/><rect y=\"15\" width=\"20\" height=\"2\"/></svg>";
5243
+ 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>";
4896
5244
 
4897
5245
  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>";
4898
5246
 
@@ -4924,6 +5272,9 @@
4924
5272
  marker,
4925
5273
  'close-icon': closeIcon,
4926
5274
  'close-large': closeLarge,
5275
+ 'nav-parent-icon': navParentIcon,
5276
+ 'nav-parent-icon-large': navParentIconLarge,
5277
+ 'navbar-parent-icon': navbarParentIcon,
4927
5278
  'navbar-toggle-icon': navbarToggleIcon,
4928
5279
  'overlay-icon': overlayIcon,
4929
5280
  'pagination-next': paginationNext,
@@ -4981,6 +5332,15 @@
4981
5332
  } };
4982
5333
 
4983
5334
 
5335
+ const NavParentIcon = {
5336
+ extends: IconComponent,
5337
+
5338
+ beforeConnect() {
5339
+ const icon = this.$props.icon;
5340
+ this.icon = closest(this.$el, '.uk-nav-primary') ? icon + "-large" : icon;
5341
+ } };
5342
+
5343
+
4984
5344
  const Slidenav = {
4985
5345
  extends: IconComponent,
4986
5346
 
@@ -5192,385 +5552,133 @@
5192
5552
  append(picture, source);
5193
5553
  }
5194
5554
  append(picture, img);
5195
- }
5196
- }
5197
-
5198
- function parseSources(sources) {
5199
- if (!sources) {
5200
- return [];
5201
- }
5202
-
5203
- if (startsWith(sources, '[')) {
5204
- try {
5205
- sources = JSON.parse(sources);
5206
- } catch (e) {
5207
- sources = [];
5208
- }
5209
- } else {
5210
- sources = parseOptions(sources);
5211
- }
5212
-
5213
- if (!isArray(sources)) {
5214
- sources = [sources];
5215
- }
5216
-
5217
- return sources.filter((source) => !isEmpty(source));
5218
- }
5219
-
5220
- function ensureSrcAttribute(el) {
5221
- if (isImg(el) && !hasAttr(el, 'src')) {
5222
- attr(el, 'src', 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>');
5223
- }
5224
- }
5225
-
5226
- function isPicture(el) {
5227
- return isTag(el, 'picture');
5228
- }
5229
-
5230
- function isImg(el) {
5231
- return isTag(el, 'img');
5232
- }
5233
-
5234
- var Media = {
5235
- props: {
5236
- media: Boolean },
5237
-
5238
-
5239
- data: {
5240
- media: false },
5241
-
5242
-
5243
- connected() {
5244
- const media = toMedia(this.media);
5245
- this.matchMedia = true;
5246
- if (media) {
5247
- this.mediaObj = window.matchMedia(media);
5248
- const handler = () => {
5249
- this.matchMedia = this.mediaObj.matches;
5250
- trigger(this.$el, createEvent('mediachange', false, true, [this.mediaObj]));
5251
- };
5252
- this.offMediaObj = on(this.mediaObj, 'change', () => {
5253
- handler();
5254
- this.$emit('resize');
5255
- });
5256
- handler();
5257
- }
5258
- },
5259
-
5260
- disconnected() {var _this$offMediaObj;
5261
- (_this$offMediaObj = this.offMediaObj) == null ? void 0 : _this$offMediaObj.call(this);
5262
- } };
5263
-
5264
-
5265
- function toMedia(value) {
5266
- if (isString(value)) {
5267
- if (startsWith(value, '@')) {
5268
- const name = "breakpoint-" + value.substr(1);
5269
- value = toFloat(getCssVar(name));
5270
- } else if (isNaN(value)) {
5271
- return value;
5272
- }
5273
- }
5274
-
5275
- return value && isNumeric(value) ? "(min-width: " + value + "px)" : '';
5276
- }
5277
-
5278
- var leader = {
5279
- mixins: [Class, Media, Resize],
5280
-
5281
- props: {
5282
- fill: String },
5283
-
5284
-
5285
- data: {
5286
- fill: '',
5287
- clsWrapper: 'uk-leader-fill',
5288
- clsHide: 'uk-leader-hide',
5289
- attrFill: 'data-fill' },
5290
-
5291
-
5292
- computed: {
5293
- fill(_ref) {let { fill } = _ref;
5294
- return fill || getCssVar('leader-fill-content');
5295
- } },
5296
-
5297
-
5298
- connected() {
5299
- [this.wrapper] = wrapInner(this.$el, "<span class=\"" + this.clsWrapper + "\">");
5300
- },
5301
-
5302
- disconnected() {
5303
- unwrap(this.wrapper.childNodes);
5304
- },
5305
-
5306
- update: {
5307
- read() {
5308
- const width = Math.trunc(this.$el.offsetWidth / 2);
5309
-
5310
- return {
5311
- width,
5312
- fill: this.fill,
5313
- hide: !this.matchMedia };
5314
-
5315
- },
5316
-
5317
- write(_ref2) {let { width, fill, hide } = _ref2;
5318
- toggleClass(this.wrapper, this.clsHide, hide);
5319
- attr(this.wrapper, this.attrFill, new Array(width).join(fill));
5320
- },
5321
-
5322
- events: ['resize'] } };
5323
-
5324
- const active = [];
5325
-
5326
- var Modal = {
5327
- mixins: [Class, Container, Togglable],
5328
-
5329
- props: {
5330
- selPanel: String,
5331
- selClose: String,
5332
- escClose: Boolean,
5333
- bgClose: Boolean,
5334
- stack: Boolean },
5335
-
5336
-
5337
- data: {
5338
- cls: 'uk-open',
5339
- escClose: true,
5340
- bgClose: true,
5341
- overlay: true,
5342
- stack: false },
5343
-
5344
-
5345
- computed: {
5346
- panel(_ref, $el) {let { selPanel } = _ref;
5347
- return $(selPanel, $el);
5348
- },
5349
-
5350
- transitionElement() {
5351
- return this.panel;
5352
- },
5353
-
5354
- bgClose(_ref2) {let { bgClose } = _ref2;
5355
- return bgClose && this.panel;
5356
- } },
5357
-
5358
-
5359
- beforeDisconnect() {
5360
- if (includes(active, this)) {
5361
- this.toggleElement(this.$el, false, false);
5362
- }
5363
- },
5364
-
5365
- events: [
5366
- {
5367
- name: 'click',
5368
-
5369
- delegate() {
5370
- return this.selClose;
5371
- },
5372
-
5373
- handler(e) {
5374
- e.preventDefault();
5375
- this.hide();
5376
- } },
5377
-
5378
-
5379
- {
5380
- name: 'toggle',
5381
-
5382
- self: true,
5383
-
5384
- handler(e) {
5385
- if (e.defaultPrevented) {
5386
- return;
5387
- }
5388
-
5389
- e.preventDefault();
5390
-
5391
- if (this.isToggled() === includes(active, this)) {
5392
- this.toggle();
5393
- }
5394
- } },
5395
-
5396
-
5397
- {
5398
- name: 'beforeshow',
5399
-
5400
- self: true,
5401
-
5402
- handler(e) {
5403
- if (includes(active, this)) {
5404
- return false;
5405
- }
5406
-
5407
- if (!this.stack && active.length) {
5408
- Promise.all(active.map((modal) => modal.hide())).then(this.show);
5409
- e.preventDefault();
5410
- } else {
5411
- active.push(this);
5412
- }
5413
- } },
5414
-
5415
-
5416
- {
5417
- name: 'show',
5418
-
5419
- self: true,
5420
-
5421
- handler() {
5422
- const docEl = document.documentElement;
5423
-
5424
- if (width(window) > docEl.clientWidth && this.overlay) {
5425
- css(document.body, 'overflowY', 'scroll');
5426
- }
5427
-
5428
- if (this.stack) {
5429
- css(this.$el, 'zIndex', toFloat(css(this.$el, 'zIndex')) + active.length);
5430
- }
5431
-
5432
- addClass(docEl, this.clsPage);
5433
-
5434
- if (this.bgClose) {
5435
- once(
5436
- this.$el,
5437
- 'hide',
5438
- on(document, pointerDown, (_ref3) => {let { target } = _ref3;
5439
- if (
5440
- last(active) !== this ||
5441
- this.overlay && !within(target, this.$el) ||
5442
- within(target, this.panel))
5443
- {
5444
- return;
5445
- }
5446
-
5447
- once(
5448
- document,
5449
- pointerUp + " " + pointerCancel + " scroll",
5450
- (_ref4) => {let { defaultPrevented, type, target: newTarget } = _ref4;
5451
- if (
5452
- !defaultPrevented &&
5453
- type === pointerUp &&
5454
- target === newTarget)
5455
- {
5456
- this.hide();
5457
- }
5458
- },
5459
- true);
5460
-
5461
- }),
5462
- { self: true });
5555
+ }
5556
+ }
5463
5557
 
5464
- }
5558
+ function parseSources(sources) {
5559
+ if (!sources) {
5560
+ return [];
5561
+ }
5465
5562
 
5466
- if (this.escClose) {
5467
- once(
5468
- this.$el,
5469
- 'hide',
5470
- on(document, 'keydown', (e) => {
5471
- if (e.keyCode === 27 && last(active) === this) {
5472
- this.hide();
5473
- }
5474
- }),
5475
- { self: true });
5563
+ if (startsWith(sources, '[')) {
5564
+ try {
5565
+ sources = JSON.parse(sources);
5566
+ } catch (e) {
5567
+ sources = [];
5568
+ }
5569
+ } else {
5570
+ sources = parseOptions(sources);
5571
+ }
5476
5572
 
5477
- }
5478
- } },
5573
+ if (!isArray(sources)) {
5574
+ sources = [sources];
5575
+ }
5479
5576
 
5577
+ return sources.filter((source) => !isEmpty(source));
5578
+ }
5480
5579
 
5481
- {
5482
- name: 'shown',
5580
+ function ensureSrcAttribute(el) {
5581
+ if (isImg(el) && !hasAttr(el, 'src')) {
5582
+ attr(el, 'src', 'data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg"></svg>');
5583
+ }
5584
+ }
5483
5585
 
5484
- self: true,
5586
+ function isPicture(el) {
5587
+ return isTag(el, 'picture');
5588
+ }
5485
5589
 
5486
- handler() {
5487
- if (!isFocusable(this.$el)) {
5488
- attr(this.$el, 'tabindex', '-1');
5489
- }
5590
+ function isImg(el) {
5591
+ return isTag(el, 'img');
5592
+ }
5490
5593
 
5491
- if (!$(':focus', this.$el)) {
5492
- this.$el.focus();
5493
- }
5494
- } },
5594
+ var Media = {
5595
+ props: {
5596
+ media: Boolean },
5495
5597
 
5496
5598
 
5497
- {
5498
- name: 'hidden',
5599
+ data: {
5600
+ media: false },
5499
5601
 
5500
- self: true,
5501
5602
 
5502
- handler() {
5503
- if (includes(active, this)) {
5504
- active.splice(active.indexOf(this), 1);
5505
- }
5603
+ connected() {
5604
+ const media = toMedia(this.media, this.$el);
5605
+ this.matchMedia = true;
5606
+ if (media) {
5607
+ this.mediaObj = window.matchMedia(media);
5608
+ const handler = () => {
5609
+ this.matchMedia = this.mediaObj.matches;
5610
+ trigger(this.$el, createEvent('mediachange', false, true, [this.mediaObj]));
5611
+ };
5612
+ this.offMediaObj = on(this.mediaObj, 'change', () => {
5613
+ handler();
5614
+ this.$emit('resize');
5615
+ });
5616
+ handler();
5617
+ }
5618
+ },
5506
5619
 
5507
- if (!active.length) {
5508
- css(document.body, 'overflowY', '');
5509
- }
5620
+ disconnected() {var _this$offMediaObj;
5621
+ (_this$offMediaObj = this.offMediaObj) == null ? void 0 : _this$offMediaObj.call(this);
5622
+ } };
5510
5623
 
5511
- css(this.$el, 'zIndex', '');
5512
5624
 
5513
- if (!active.some((modal) => modal.clsPage === this.clsPage)) {
5514
- removeClass(document.documentElement, this.clsPage);
5515
- }
5516
- } }],
5625
+ function toMedia(value, element) {
5626
+ if (isString(value)) {
5627
+ if (startsWith(value, '@')) {
5628
+ value = toFloat(css(element, "--uk-breakpoint-" + value.substr(1)));
5629
+ } else if (isNaN(value)) {
5630
+ return value;
5631
+ }
5632
+ }
5517
5633
 
5634
+ return value && isNumeric(value) ? "(min-width: " + value + "px)" : '';
5635
+ }
5518
5636
 
5637
+ var leader = {
5638
+ mixins: [Class, Media, Resize],
5519
5639
 
5520
- methods: {
5521
- toggle() {
5522
- return this.isToggled() ? this.hide() : this.show();
5523
- },
5640
+ props: {
5641
+ fill: String },
5524
5642
 
5525
- show() {
5526
- if (this.container && parent(this.$el) !== this.container) {
5527
- append(this.container, this.$el);
5528
- return new Promise((resolve) =>
5529
- requestAnimationFrame(() => this.show().then(resolve)));
5530
5643
 
5531
- }
5644
+ data: {
5645
+ fill: '',
5646
+ clsWrapper: 'uk-leader-fill',
5647
+ clsHide: 'uk-leader-hide',
5648
+ attrFill: 'data-fill' },
5532
5649
 
5533
- return this.toggleElement(this.$el, true, animate(this));
5534
- },
5535
5650
 
5536
- hide() {
5537
- return this.toggleElement(this.$el, false, animate(this));
5538
- } } };
5651
+ computed: {
5652
+ fill(_ref) {let { fill } = _ref;
5653
+ return fill || css(this.$el, '--uk-leader-fill-content');
5654
+ } },
5539
5655
 
5540
5656
 
5657
+ connected() {
5658
+ [this.wrapper] = wrapInner(this.$el, "<span class=\"" + this.clsWrapper + "\">");
5659
+ },
5541
5660
 
5542
- function animate(_ref5) {let { transitionElement, _toggle } = _ref5;
5543
- return (el, show) =>
5544
- new Promise((resolve, reject) =>
5545
- once(el, 'show hide', () => {
5546
- el._reject == null ? void 0 : el._reject();
5547
- el._reject = reject;
5661
+ disconnected() {
5662
+ unwrap(this.wrapper.childNodes);
5663
+ },
5548
5664
 
5549
- _toggle(el, show);
5665
+ update: {
5666
+ read() {
5667
+ const width = Math.trunc(this.$el.offsetWidth / 2);
5550
5668
 
5551
- const off = once(
5552
- transitionElement,
5553
- 'transitionstart',
5554
- () => {
5555
- once(transitionElement, 'transitionend transitioncancel', resolve, {
5556
- self: true });
5669
+ return {
5670
+ width,
5671
+ fill: this.fill,
5672
+ hide: !this.matchMedia };
5557
5673
 
5558
- clearTimeout(timer);
5559
5674
  },
5560
- { self: true });
5561
5675
 
5676
+ write(_ref2) {let { width, fill, hide } = _ref2;
5677
+ toggleClass(this.wrapper, this.clsHide, hide);
5678
+ attr(this.wrapper, this.attrFill, new Array(width).join(fill));
5679
+ },
5562
5680
 
5563
- const timer = setTimeout(() => {
5564
- off();
5565
- resolve();
5566
- }, toMs(css(transitionElement, 'transitionDuration')));
5567
- })).
5568
- then(() => delete el._reject);
5569
- }
5570
-
5571
- function toMs(time) {
5572
- return time ? endsWith(time, 'ms') ? toFloat(time) : toFloat(time) * 1000 : 0;
5573
- }
5681
+ events: ['resize'] } };
5574
5682
 
5575
5683
  var modal = {
5576
5684
  install: install$2,
@@ -5734,7 +5842,9 @@
5734
5842
  align: String,
5735
5843
  offset: Number,
5736
5844
  boundary: Boolean,
5737
- boundaryAlign: Boolean,
5845
+ target: Boolean,
5846
+ targetX: Boolean,
5847
+ targetY: Boolean,
5738
5848
  clsDrop: String,
5739
5849
  delayShow: Number,
5740
5850
  delayHide: Number,
@@ -5751,9 +5861,12 @@
5751
5861
  offset: undefined,
5752
5862
  delayShow: undefined,
5753
5863
  delayHide: undefined,
5754
- boundaryAlign: undefined,
5755
- flip: 'x',
5864
+ flip: false,
5865
+ shift: true,
5756
5866
  boundary: true,
5867
+ target: false,
5868
+ targetX: false,
5869
+ targetY: false,
5757
5870
  dropbar: false,
5758
5871
  dropbarAnchor: false,
5759
5872
  duration: 200,
@@ -5788,7 +5901,7 @@
5788
5901
  },
5789
5902
 
5790
5903
  watch(dropbar) {
5791
- addClass(dropbar, 'uk-navbar-dropbar');
5904
+ addClass(dropbar, 'uk-dropbar', 'uk-dropbar-top', 'uk-navbar-dropbar');
5792
5905
  },
5793
5906
 
5794
5907
  immediate: true },
@@ -5804,7 +5917,7 @@
5804
5917
 
5805
5918
  if (this.dropContainer !== $el) {
5806
5919
  for (const el of $$("." + clsDrop, this.dropContainer)) {var _this$getDropdown;
5807
- const target = (_this$getDropdown = this.getDropdown(el)) == null ? void 0 : _this$getDropdown.target;
5920
+ const target = (_this$getDropdown = this.getDropdown(el)) == null ? void 0 : _this$getDropdown.targetEl;
5808
5921
  if (!includes(dropdowns, el) && target && within(target, this.$el)) {
5809
5922
  dropdowns.push(el);
5810
5923
  }
@@ -5821,8 +5934,7 @@
5821
5934
  {
5822
5935
  ...this.$props,
5823
5936
  boundary: this.boundary,
5824
- pos: this.pos,
5825
- offset: this.dropbar || this.offset });
5937
+ pos: this.pos });
5826
5938
 
5827
5939
 
5828
5940
  },
@@ -5867,8 +5979,8 @@
5867
5979
  if (
5868
5980
  active &&
5869
5981
  includes(active.mode, 'hover') &&
5870
- active.target &&
5871
- !within(active.target, current) &&
5982
+ active.targetEl &&
5983
+ !within(active.targetEl, current) &&
5872
5984
  !active.isDelaying)
5873
5985
  {
5874
5986
  active.hide(false);
@@ -5890,7 +6002,7 @@
5890
6002
  if (keyCode === keyMap.DOWN && hasAttr(current, 'aria-expanded')) {
5891
6003
  e.preventDefault();
5892
6004
 
5893
- if (!active || active.target !== current) {
6005
+ if (!active || active.targetEl !== current) {
5894
6006
  current.click();
5895
6007
  once(this.dropContainer, 'show', (_ref8) => {let { target } = _ref8;return (
5896
6008
  focusFirstFocusableElement(target));});
@@ -5940,8 +6052,8 @@
5940
6052
  }
5941
6053
  }
5942
6054
 
5943
- if (keyCode === keyMap.ESC) {var _active$target;
5944
- active == null ? void 0 : (_active$target = active.target) == null ? void 0 : _active$target.focus();
6055
+ if (keyCode === keyMap.ESC) {var _active$targetEl;
6056
+ active == null ? void 0 : (_active$targetEl = active.targetEl) == null ? void 0 : _active$targetEl.focus();
5945
6057
  }
5946
6058
 
5947
6059
  handleNavItemNavigation(e, this.toggles, active);
@@ -5983,8 +6095,8 @@
5983
6095
  return this.dropbar;
5984
6096
  },
5985
6097
 
5986
- handler(_, _ref9) {let { $el, align } = _ref9;
5987
- if (!hasClass($el, this.clsDrop) || align === 'stretch') {
6098
+ handler(_ref9) {let { target } = _ref9;
6099
+ if (!this.isDropbarDrop(target)) {
5988
6100
  return;
5989
6101
  }
5990
6102
 
@@ -5992,7 +6104,7 @@
5992
6104
  after(this.dropbarAnchor || this.$el, this.dropbar);
5993
6105
  }
5994
6106
 
5995
- addClass($el, this.clsDrop + "-dropbar");
6107
+ addClass(target, this.clsDrop + "-dropbar");
5996
6108
  } },
5997
6109
 
5998
6110
 
@@ -6007,19 +6119,24 @@
6007
6119
  return this.dropbar;
6008
6120
  },
6009
6121
 
6010
- handler(_, _ref10) {let { $el, align } = _ref10;
6011
- if (!hasClass($el, this.clsDrop) || align === 'stretch') {
6122
+ handler(_ref10) {let { target } = _ref10;
6123
+ if (!this.isDropbarDrop(target)) {
6012
6124
  return;
6013
6125
  }
6014
6126
 
6015
- this._observer = observeResize($el, () =>
6016
- this.transitionTo(
6017
- offset($el).bottom -
6018
- offset(this.dropbar).top +
6019
- toFloat(css($el, 'marginBottom')),
6020
- $el));
6021
-
6127
+ this._observer = observeResize(target, () => {
6128
+ const targetOffsets = parents(target, "." + this.clsDrop).
6129
+ concat(target).
6130
+ map((el) => offset(el));
6131
+ const minTop = Math.min(...targetOffsets.map((_ref11) => {let { top } = _ref11;return top;}));
6132
+ const maxBottom = Math.max(...targetOffsets.map((_ref12) => {let { bottom } = _ref12;return bottom;}));
6133
+ const dropbarOffset = offset(this.dropbar);
6134
+ css(this.dropbar, 'top', this.dropbar.offsetTop - (dropbarOffset.top - minTop));
6135
+ this.transitionTo(
6136
+ maxBottom - minTop + toFloat(css(target, 'marginBottom')),
6137
+ target);
6022
6138
 
6139
+ });
6023
6140
  } },
6024
6141
 
6025
6142
 
@@ -6034,13 +6151,13 @@
6034
6151
  return this.dropbar;
6035
6152
  },
6036
6153
 
6037
- handler(e, _ref11) {let { $el } = _ref11;
6154
+ handler(e) {
6038
6155
  const active = this.getActive();
6039
6156
 
6040
6157
  if (
6041
6158
  matches(this.dropbar, ':hover') &&
6042
- (active == null ? void 0 : active.$el) === $el &&
6043
- !this.toggles.some((el) => active.target !== el && matches(el, ':focus')))
6159
+ (active == null ? void 0 : active.$el) === e.target &&
6160
+ !this.toggles.some((el) => active.targetEl !== el && matches(el, ':focus')))
6044
6161
  {
6045
6162
  e.preventDefault();
6046
6163
  }
@@ -6058,8 +6175,8 @@
6058
6175
  return this.dropbar;
6059
6176
  },
6060
6177
 
6061
- handler(_, _ref12) {let { $el, align } = _ref12;
6062
- if (!hasClass($el, this.clsDrop) || align === 'stretch') {
6178
+ handler(_ref13) {let { target } = _ref13;
6179
+ if (!this.isDropbarDrop(target)) {
6063
6180
  return;
6064
6181
  }
6065
6182
 
@@ -6067,7 +6184,7 @@
6067
6184
 
6068
6185
  const active = this.getActive();
6069
6186
 
6070
- if (!active || (active == null ? void 0 : active.$el) === $el) {
6187
+ if (!active || (active == null ? void 0 : active.$el) === target) {
6071
6188
  this.transitionTo(0);
6072
6189
  }
6073
6190
  } }],
@@ -6076,7 +6193,7 @@
6076
6193
 
6077
6194
  methods: {
6078
6195
  getActive() {
6079
- return active$1 && within(active$1.target, this.$el) && active$1;
6196
+ return active && within(active.targetEl, this.$el) && active;
6080
6197
  },
6081
6198
 
6082
6199
  transitionTo(newHeight, el) {
@@ -6106,13 +6223,17 @@
6106
6223
 
6107
6224
  getDropdown(el) {
6108
6225
  return this.$getComponent(el, 'drop') || this.$getComponent(el, 'dropdown');
6226
+ },
6227
+
6228
+ isDropbarDrop(el) {
6229
+ return this.getDropdown(el) && hasClass(el, this.clsDrop);
6109
6230
  } } };
6110
6231
 
6111
6232
 
6112
6233
 
6113
6234
  function handleNavItemNavigation(e, toggles, active) {
6114
6235
  const { current, keyCode } = e;
6115
- const target = (active == null ? void 0 : active.target) || current;
6236
+ const target = (active == null ? void 0 : active.targetEl) || current;
6116
6237
  const i = toggles.indexOf(target);
6117
6238
 
6118
6239
  // Left
@@ -6169,7 +6290,7 @@
6169
6290
 
6170
6291
  registerEvent(this, {
6171
6292
  el: this.swipeTarget,
6172
- name: pointerDown,
6293
+ name: pointerDown$1,
6173
6294
  passive: true,
6174
6295
  handler(e) {
6175
6296
  if (!isTouch(e)) {
@@ -6179,7 +6300,7 @@
6179
6300
  // Handle Swipe Gesture
6180
6301
  const pos = getEventPos(e);
6181
6302
  const target = 'tagName' in e.target ? e.target : parent(e.target);
6182
- once(document, pointerUp + " " + pointerCancel + " scroll", (e) => {
6303
+ once(document, pointerUp$1 + " " + pointerCancel + " scroll", (e) => {
6183
6304
  const { x, y } = getEventPos(e);
6184
6305
 
6185
6306
  // swipe
@@ -6286,22 +6407,6 @@
6286
6407
  } },
6287
6408
 
6288
6409
 
6289
- {
6290
- name: 'touchstart',
6291
-
6292
- passive: true,
6293
-
6294
- el() {
6295
- return this.panel;
6296
- },
6297
-
6298
- handler(_ref8) {let { targetTouches } = _ref8;
6299
- if (targetTouches.length === 1) {
6300
- this.clientY = targetTouches[0].clientY;
6301
- }
6302
- } },
6303
-
6304
-
6305
6410
  {
6306
6411
  name: 'touchmove',
6307
6412
 
@@ -6317,33 +6422,6 @@
6317
6422
  } },
6318
6423
 
6319
6424
 
6320
- {
6321
- name: 'touchmove',
6322
-
6323
- passive: false,
6324
-
6325
- el() {
6326
- return this.panel;
6327
- },
6328
-
6329
- handler(e) {
6330
- if (e.targetTouches.length !== 1) {
6331
- return;
6332
- }
6333
-
6334
- const clientY = e.targetTouches[0].clientY - this.clientY;
6335
- const { scrollTop, scrollHeight, clientHeight } = this.panel;
6336
-
6337
- if (
6338
- clientHeight >= scrollHeight ||
6339
- scrollTop === 0 && clientY > 0 ||
6340
- scrollHeight - scrollTop <= clientHeight && clientY < 0)
6341
- {
6342
- e.cancelable && e.preventDefault();
6343
- }
6344
- } },
6345
-
6346
-
6347
6425
  {
6348
6426
  name: 'show',
6349
6427
 
@@ -6355,7 +6433,6 @@
6355
6433
  addClass(parent(this.panel), this.clsMode);
6356
6434
  }
6357
6435
 
6358
- css(document.documentElement, 'overflowY', this.overlay ? 'hidden' : '');
6359
6436
  addClass(document.body, this.clsContainer, this.clsFlip);
6360
6437
  css(document.body, 'touch-action', 'pan-y pinch-zoom');
6361
6438
  css(this.$el, 'display', 'block');
@@ -6363,7 +6440,7 @@
6363
6440
  addClass(
6364
6441
  this.panel,
6365
6442
  this.clsSidebarAnimation,
6366
- this.mode !== 'reveal' ? this.clsMode : '');
6443
+ this.mode === 'reveal' ? '' : this.clsMode);
6367
6444
 
6368
6445
 
6369
6446
  height(document.body); // force reflow
@@ -6400,8 +6477,6 @@
6400
6477
  removeClass(this.$el, this.clsOverlay);
6401
6478
  css(this.$el, 'display', '');
6402
6479
  removeClass(document.body, this.clsContainer, this.clsFlip);
6403
-
6404
- css(document.documentElement, 'overflowY', '');
6405
6480
  } },
6406
6481
 
6407
6482
 
@@ -6526,6 +6601,14 @@
6526
6601
  offset: 0 },
6527
6602
 
6528
6603
 
6604
+ connected() {
6605
+ registerClick(this);
6606
+ },
6607
+
6608
+ disconnected() {
6609
+ unregisterClick(this);
6610
+ },
6611
+
6529
6612
  methods: {
6530
6613
  async scrollTo(el) {
6531
6614
  el = el && $(el) || document.body;
@@ -6534,20 +6617,39 @@
6534
6617
  await scrollIntoView(el, { offset: this.offset });
6535
6618
  trigger(this.$el, 'scrolled', [this, el]);
6536
6619
  }
6537
- } },
6620
+ } } };
6538
6621
 
6539
6622
 
6540
- events: {
6541
- click(e) {
6542
- if (e.defaultPrevented) {
6543
- return;
6544
- }
6545
6623
 
6546
- e.preventDefault();
6547
- this.scrollTo(getTargetElement(this.$el));
6548
- } } };
6624
+ const components$2 = new Set();
6625
+ function registerClick(cmp) {
6626
+ if (!components$2.size) {
6627
+ on(document, 'click', clickHandler);
6628
+ }
6629
+
6630
+ components$2.add(cmp);
6631
+ }
6632
+
6633
+ function unregisterClick(cmp) {
6634
+ components$2.delete(cmp);
6635
+
6636
+ if (!components$2.length) {
6637
+ off(document, 'click', clickHandler);
6638
+ }
6639
+ }
6549
6640
 
6641
+ function clickHandler(e) {
6642
+ if (e.defaultPrevented) {
6643
+ return;
6644
+ }
6550
6645
 
6646
+ for (const component of components$2) {
6647
+ if (within(e.target, component.$el)) {
6648
+ e.preventDefault();
6649
+ component.scrollTo(getTargetElement(component.$el));
6650
+ }
6651
+ }
6652
+ }
6551
6653
 
6552
6654
  function getTargetElement(el) {
6553
6655
  return document.getElementById(decodeURIComponent(el.hash).substring(1));
@@ -6877,7 +6979,9 @@
6877
6979
  },
6878
6980
 
6879
6981
  handler() {
6880
- if (!location.hash || scrollTop(window) === 0) {
6982
+ const { scrollingElement } = document;
6983
+
6984
+ if (!location.hash || scrollingElement.scrollTop === 0) {
6881
6985
  return;
6882
6986
  }
6883
6987
 
@@ -6886,13 +6990,11 @@
6886
6990
  const elOffset = offset(this.$el);
6887
6991
 
6888
6992
  if (this.isFixed && intersectRect(targetOffset, elOffset)) {
6889
- scrollTop(
6890
- window,
6993
+ scrollingElement.scrollTop =
6891
6994
  targetOffset.top -
6892
6995
  elOffset.height -
6893
6996
  toPx(this.targetOffset, 'height', this.placeholder) -
6894
- toPx(this.offset, 'height', this.placeholder));
6895
-
6997
+ toPx(this.offset, 'height', this.placeholder);
6896
6998
  }
6897
6999
  });
6898
7000
  } }],
@@ -6990,7 +7092,7 @@
6990
7092
 
6991
7093
 
6992
7094
  {let { scroll: prevScroll = 0, dir: prevDir = 'down', overflow, overflowScroll = 0, start, end } = _ref4;
6993
- const scroll = scrollTop(window);
7095
+ const scroll = document.scrollingElement.scrollTop;
6994
7096
  const dir = prevScroll <= scroll ? 'down' : 'up';
6995
7097
 
6996
7098
  return {
@@ -7399,7 +7501,7 @@
7399
7501
 
7400
7502
  events: [
7401
7503
  {
7402
- name: pointerDown,
7504
+ name: pointerDown$1,
7403
7505
 
7404
7506
  filter() {
7405
7507
  return includes(this.mode, 'hover');
@@ -7417,7 +7519,7 @@
7417
7519
  trigger(this.$el, 'focus');
7418
7520
  once(
7419
7521
  document,
7420
- pointerDown,
7522
+ pointerDown$1,
7421
7523
  () => trigger(this.$el, 'blur'),
7422
7524
  true,
7423
7525
  (e) => !within(e.target, this.$el));
@@ -7510,7 +7612,7 @@
7510
7612
 
7511
7613
 
7512
7614
  {
7513
- name: 'toggled',
7615
+ name: 'hide show',
7514
7616
 
7515
7617
  self: true,
7516
7618
 
@@ -7518,10 +7620,8 @@
7518
7620
  return this.target;
7519
7621
  },
7520
7622
 
7521
- handler(e, toggled) {
7522
- if (e.target === this.target[0]) {
7523
- this.updateAria(toggled);
7524
- }
7623
+ handler(_ref2) {let { type } = _ref2;
7624
+ this.updateAria(type === 'show');
7525
7625
  } },
7526
7626
 
7527
7627
 
@@ -7616,10 +7716,12 @@
7616
7716
  Video: Video,
7617
7717
  Close: Close,
7618
7718
  Spinner: Spinner,
7719
+ NavParentIcon: NavParentIcon,
7619
7720
  SlidenavNext: Slidenav,
7620
7721
  SlidenavPrevious: Slidenav,
7621
7722
  SearchIcon: Search,
7622
7723
  Marker: IconComponent,
7724
+ NavbarParentIcon: IconComponent,
7623
7725
  NavbarToggleIcon: IconComponent,
7624
7726
  OverlayIcon: IconComponent,
7625
7727
  PaginationNext: IconComponent,
@@ -8109,7 +8211,7 @@
8109
8211
 
8110
8212
  },
8111
8213
 
8112
- setState(state, animate) {if (animate === void 0) {animate = true;}
8214
+ async setState(state, animate) {if (animate === void 0) {animate = true;}
8113
8215
  state = { filter: { '': '' }, sort: [], ...state };
8114
8216
 
8115
8217
  trigger(this.$el, 'beforeFilter', [this, state]);
@@ -8118,15 +8220,17 @@
8118
8220
  toggleClass(el, this.cls, !!matchFilter(el, this.attrItem, state)));
8119
8221
 
8120
8222
 
8121
- Promise.all(
8223
+ await Promise.all(
8122
8224
  $$(this.target, this.$el).map((target) => {
8123
8225
  const filterFn = () => {
8124
8226
  applyState(state, target, children(target));
8125
8227
  this.$update(this.$el);
8126
8228
  };
8127
8229
  return animate ? this.animate(filterFn, target) : filterFn();
8128
- })).
8129
- then(() => trigger(this.$el, 'afterFilter', [this]));
8230
+ }));
8231
+
8232
+
8233
+ trigger(this.$el, 'afterFilter', [this]);
8130
8234
  },
8131
8235
 
8132
8236
  updateState() {
@@ -8416,6 +8520,11 @@
8416
8520
  this.interval && clearInterval(this.interval);
8417
8521
  } } };
8418
8522
 
8523
+ const pointerOptions = { passive: false, capture: true };
8524
+ const pointerDown = 'touchstart mousedown';
8525
+ const pointerMove = 'touchmove mousemove';
8526
+ const pointerUp = 'touchend touchcancel mouseup click input';
8527
+
8419
8528
  var SliderDrag = {
8420
8529
  props: {
8421
8530
  draggable: Boolean },
@@ -8468,7 +8577,17 @@
8468
8577
 
8469
8578
  handler(e) {
8470
8579
  e.preventDefault();
8471
- } }],
8580
+ } },
8581
+
8582
+
8583
+ {
8584
+ // iOS workaround for slider stopping if swiping fast
8585
+ name: pointerMove + " " + pointerUp,
8586
+ el() {
8587
+ return this.list;
8588
+ },
8589
+ handler: noop,
8590
+ ...pointerOptions }],
8472
8591
 
8473
8592
 
8474
8593
 
@@ -8490,10 +8609,10 @@
8490
8609
  this.prevIndex = this.index;
8491
8610
  }
8492
8611
 
8493
- on(document, pointerMove, this.move, { passive: false });
8612
+ on(document, pointerMove, this.move, pointerOptions);
8494
8613
 
8495
8614
  // 'input' event is triggered by video controls
8496
- on(document, pointerUp + " " + pointerCancel + " input", this.end, true);
8615
+ on(document, pointerUp, this.end, pointerOptions);
8497
8616
 
8498
8617
  css(this.list, 'userSelect', 'none');
8499
8618
  },
@@ -8573,8 +8692,8 @@
8573
8692
  },
8574
8693
 
8575
8694
  end() {
8576
- off(document, pointerMove, this.move, { passive: false });
8577
- off(document, pointerUp + " " + pointerCancel + " input", this.end, true);
8695
+ off(document, pointerMove, this.move, pointerOptions);
8696
+ off(document, pointerUp, this.end, pointerOptions);
8578
8697
 
8579
8698
  if (this.dragging) {
8580
8699
  this.dragging = null;
@@ -8982,7 +9101,7 @@
8982
9101
 
8983
9102
  events: [
8984
9103
  {
8985
- name: pointerMove + " " + pointerDown + " keydown",
9104
+ name: pointerMove$1 + " " + pointerDown$1 + " keydown",
8986
9105
 
8987
9106
  handler: 'showControls' },
8988
9107
 
@@ -10637,7 +10756,7 @@
10637
10756
  },
10638
10757
 
10639
10758
  events: {
10640
- name: pointerDown,
10759
+ name: pointerDown$1,
10641
10760
  passive: false,
10642
10761
  handler: 'init' },
10643
10762
 
@@ -10767,8 +10886,8 @@
10767
10886
  this.placeholder = placeholder;
10768
10887
  this.origin = { target, index: index(placeholder), ...this.pos };
10769
10888
 
10770
- on(document, pointerMove, this.move);
10771
- on(document, pointerUp, this.end);
10889
+ on(document, pointerMove$1, this.move);
10890
+ on(document, pointerUp$1, this.end);
10772
10891
 
10773
10892
  if (!this.threshold) {
10774
10893
  this.start(e);
@@ -10804,8 +10923,8 @@
10804
10923
  },
10805
10924
 
10806
10925
  end() {
10807
- off(document, pointerMove, this.move);
10808
- off(document, pointerUp, this.end);
10926
+ off(document, pointerMove$1, this.move);
10927
+ off(document, pointerUp$1, this.end);
10809
10928
 
10810
10929
  if (!this.drag) {
10811
10930
  return;
@@ -10874,7 +10993,7 @@
10874
10993
  let last = Date.now();
10875
10994
  trackTimer = setInterval(() => {
10876
10995
  let { x, y } = pos;
10877
- y += scrollTop(window);
10996
+ y += document.scrollingElement.scrollTop;
10878
10997
 
10879
10998
  const dist = (Date.now() - last) * 0.3;
10880
10999
  last = Date.now();
@@ -10895,7 +11014,7 @@
10895
11014
  }
10896
11015
 
10897
11016
  if (scroll > 0 && scroll < scrollHeight - height) {
10898
- scrollTop(scrollEl, scroll);
11017
+ scrollEl.scrollTop = scroll;
10899
11018
  return true;
10900
11019
  }
10901
11020
  });
@@ -11040,11 +11159,11 @@
11040
11159
 
11041
11160
  this._unbind = once(
11042
11161
  document, "show keydown " +
11043
- pointerDown,
11162
+ pointerDown$1,
11044
11163
  this.hide,
11045
11164
  false,
11046
11165
  (e) =>
11047
- e.type === pointerDown && !within(e.target, this.$el) ||
11166
+ e.type === pointerDown$1 && !within(e.target, this.$el) ||
11048
11167
  e.type === 'keydown' && e.keyCode === 27 ||
11049
11168
  e.type === 'show' && e.detail[0] !== this && e.detail[0].$name === this.$name);
11050
11169
 
@@ -11115,7 +11234,7 @@
11115
11234
 
11116
11235
  // Clicking a button does not give it focus on all browsers and platforms
11117
11236
  // https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#clicking_and_focus
11118
- [pointerDown](e) {
11237
+ [pointerDown$1](e) {
11119
11238
  if (isTouch(e)) {
11120
11239
  this.show();
11121
11240
  }