uikit 3.15.15 → 3.15.16-dev.8230e5aaa

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 (45) hide show
  1. package/CHANGELOG.md +10 -3
  2. package/dist/css/uikit-core-rtl.css +4 -1
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +4 -1
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +4 -1
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +4 -1
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +10 -19
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +10 -19
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +1 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +1 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +1 -1
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +1 -1
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +1 -1
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +1 -1
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +11 -20
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +11 -20
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/mixin/modal.js +6 -14
  44. package/src/less/components/offcanvas.less +6 -1
  45. package/src/scss/components/offcanvas.scss +6 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Fixed
6
+
7
+ - Fix for elements with `position: sticky` to keep their position when Offcanvas is opened
8
+ - Fix regression in clicking hash links in Modal component that match `sel-close` option
9
+
3
10
  ## 3.15.15 (December 1, 2022)
4
11
 
5
12
  ### Changed
@@ -762,7 +769,7 @@
762
769
 
763
770
  ### Fixed
764
771
 
765
- - Fix showing/hidding Modal/Offcanvas programmatically
772
+ - Fix showing/hiding Modal/Offcanvas programmatically
766
773
 
767
774
  ## 3.6.14 (January 26, 2021)
768
775
 
@@ -1948,7 +1955,7 @@
1948
1955
  - Fix Slideshow combined with Height Viewport component
1949
1956
  - Fix Height Match component's `row` matching
1950
1957
  - Fix height calculation in Height Match component
1951
- - Fix regression with Video component not auto play/pause
1958
+ - Fix regression with Video component not autoplay/pause
1952
1959
 
1953
1960
  ## 3.0.0 beta 42 (April 5, 2018)
1954
1961
 
@@ -2273,7 +2280,7 @@
2273
2280
  ### Fixed
2274
2281
 
2275
2282
  - Remove stacking context for `uk-inline`
2276
- - Prevent scrolling in Lightboxes with one slide only
2283
+ - Prevent scrolling in Lightbox with one slide only
2277
2284
 
2278
2285
  ## 3.0.0 beta 26 (July 20, 2017)
2279
2286
 
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.15.15 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.15.16-dev.8230e5aaa | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3959,10 +3959,13 @@ select.uk-form-width-xsmall {
3959
3959
  /*
3960
3960
  * Prevent horizontal scrollbar when the content is slide-out
3961
3961
  * Has to be on the `html` element too to make it work on the `body`
3962
+ * 1. `clip` is needed for `position: sticky` elements to keep their position
3962
3963
  */
3963
3964
  .uk-offcanvas-page,
3964
3965
  .uk-offcanvas-container {
3965
3966
  overflow-x: hidden;
3967
+ /* 1 */
3968
+ overflow-x: clip;
3966
3969
  }
3967
3970
  /* Container
3968
3971
  ========================================================================== */