uikit 3.15.15 → 3.15.16-dev.18a813195

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 (52) hide show
  1. package/CHANGELOG.md +17 -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 +4 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +4 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +2 -2
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +4 -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 +54 -62
  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 +58 -63
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/components/internal/slider-transitioner.js +2 -1
  44. package/src/js/core/accordion.js +5 -4
  45. package/src/js/core/grid.js +2 -5
  46. package/src/js/core/sticky.js +13 -11
  47. package/src/js/mixin/modal.js +6 -14
  48. package/src/js/mixin/parallax.js +3 -0
  49. package/src/js/util/dimensions.js +21 -24
  50. package/src/js/util/lang.js +7 -0
  51. package/src/less/components/offcanvas.less +6 -1
  52. package/src/scss/components/offcanvas.scss +6 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Changed
6
+
7
+ - Add `will-change` css property to Parallax elements
8
+
9
+ ### Fixed
10
+
11
+ - Fix for elements with `position: sticky` to keep their position when Offcanvas is opened
12
+ - Fix regression in clicking hash links in Modal component that match `sel-close` option
13
+ - Fix jump after animation if Accordion content has `padding-bottom`
14
+ - Fix Sticky listens for resize of itself while not positioned `fixed`
15
+ - Fix Sticky positioning on mobile devices
16
+
3
17
  ## 3.15.15 (December 1, 2022)
4
18
 
5
19
  ### Changed
@@ -762,7 +776,7 @@
762
776
 
763
777
  ### Fixed
764
778
 
765
- - Fix showing/hidding Modal/Offcanvas programmatically
779
+ - Fix showing/hiding Modal/Offcanvas programmatically
766
780
 
767
781
  ## 3.6.14 (January 26, 2021)
768
782
 
@@ -1948,7 +1962,7 @@
1948
1962
  - Fix Slideshow combined with Height Viewport component
1949
1963
  - Fix Height Match component's `row` matching
1950
1964
  - Fix height calculation in Height Match component
1951
- - Fix regression with Video component not auto play/pause
1965
+ - Fix regression with Video component not autoplay/pause
1952
1966
 
1953
1967
  ## 3.0.0 beta 42 (April 5, 2018)
1954
1968
 
@@ -2273,7 +2287,7 @@
2273
2287
  ### Fixed
2274
2288
 
2275
2289
  - Remove stacking context for `uk-inline`
2276
- - Prevent scrolling in Lightboxes with one slide only
2290
+ - Prevent scrolling in Lightbox with one slide only
2277
2291
 
2278
2292
  ## 3.0.0 beta 26 (July 20, 2017)
2279
2293
 
@@ -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.18a813195 | 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
  ========================================================================== */