uikit 3.10.1 → 3.11.1-dev.fbcf9eec9

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 (65) hide show
  1. package/CHANGELOG.md +45 -17
  2. package/build/icons.js +4 -4
  3. package/build/scope.js +4 -6
  4. package/build/scss.js +4 -4
  5. package/dist/css/uikit-core-rtl.css +10 -1
  6. package/dist/css/uikit-core-rtl.min.css +1 -1
  7. package/dist/css/uikit-core.css +10 -1
  8. package/dist/css/uikit-core.min.css +1 -1
  9. package/dist/css/uikit-rtl.css +10 -1
  10. package/dist/css/uikit-rtl.min.css +1 -1
  11. package/dist/css/uikit.css +10 -1
  12. package/dist/css/uikit.min.css +1 -1
  13. package/dist/js/components/countdown.js +1 -1
  14. package/dist/js/components/countdown.min.js +1 -1
  15. package/dist/js/components/filter.js +1 -1
  16. package/dist/js/components/filter.min.js +1 -1
  17. package/dist/js/components/lightbox-panel.js +1 -1
  18. package/dist/js/components/lightbox-panel.min.js +1 -1
  19. package/dist/js/components/lightbox.js +1 -1
  20. package/dist/js/components/lightbox.min.js +1 -1
  21. package/dist/js/components/notification.js +1 -1
  22. package/dist/js/components/notification.min.js +1 -1
  23. package/dist/js/components/parallax.js +257 -264
  24. package/dist/js/components/parallax.min.js +1 -1
  25. package/dist/js/components/slider-parallax.js +215 -257
  26. package/dist/js/components/slider-parallax.min.js +1 -1
  27. package/dist/js/components/slider.js +1 -1
  28. package/dist/js/components/slider.min.js +1 -1
  29. package/dist/js/components/slideshow-parallax.js +215 -257
  30. package/dist/js/components/slideshow-parallax.min.js +1 -1
  31. package/dist/js/components/slideshow.js +1 -1
  32. package/dist/js/components/slideshow.min.js +1 -1
  33. package/dist/js/components/sortable.js +1 -1
  34. package/dist/js/components/sortable.min.js +1 -1
  35. package/dist/js/components/tooltip.js +1 -1
  36. package/dist/js/components/tooltip.min.js +1 -1
  37. package/dist/js/components/upload.js +1 -1
  38. package/dist/js/components/upload.min.js +1 -1
  39. package/dist/js/uikit-core.js +38 -37
  40. package/dist/js/uikit-core.min.js +1 -1
  41. package/dist/js/uikit-icons.js +1 -1
  42. package/dist/js/uikit-icons.min.js +1 -1
  43. package/dist/js/uikit.js +294 -300
  44. package/dist/js/uikit.min.js +1 -1
  45. package/package.json +5 -5
  46. package/src/js/api/hooks.js +6 -10
  47. package/src/js/components/parallax.js +38 -8
  48. package/src/js/core/grid.js +2 -2
  49. package/src/js/core/scrollspy.js +1 -1
  50. package/src/js/core/svg.js +9 -7
  51. package/src/js/mixin/parallax.js +209 -242
  52. package/src/js/util/dimensions.js +4 -2
  53. package/src/js/util/lang.js +4 -0
  54. package/src/js/util/viewport.js +9 -13
  55. package/src/less/components/position.less +2 -0
  56. package/src/less/components/sticky.less +6 -0
  57. package/src/scss/components/position.scss +2 -0
  58. package/src/scss/components/sticky.scss +6 -0
  59. package/tests/index.html +1 -1
  60. package/tests/js/index.js +1 -1
  61. package/tests/notification.html +5 -5
  62. package/tests/parallax.html +66 -50
  63. package/tests/sticky-parallax.html +274 -0
  64. package/tests/sticky.html +2 -2
  65. package/tests/tab.html +1 -1
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.10.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.11.1-dev.fbcf9eec9 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3777,6 +3777,12 @@ select.uk-form-width-xsmall {
3777
3777
  /* ========================================================================
3778
3778
  Component: Sticky
3779
3779
  ========================================================================== */
3780
+ /*
3781
+ * Create position context so it's t the same like when fixed.
3782
+ */
3783
+ .uk-sticky {
3784
+ position: relative;
3785
+ }
3780
3786
  /*
3781
3787
  * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
3782
3788
  */
@@ -8612,6 +8618,9 @@ iframe[data-uk-cover] {
8612
8618
  .uk-position-z-index {
8613
8619
  z-index: 1;
8614
8620
  }
8621
+ .uk-position-z-index-negative {
8622
+ z-index: -1;
8623
+ }
8615
8624
  /* ========================================================================
8616
8625
  Component: Transition
8617
8626
  ========================================================================== */