uikit 3.10.2-dev.c8aa7eda2 → 3.11.0

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 (60) hide show
  1. package/CHANGELOG.md +28 -14
  2. package/build/icons.js +4 -4
  3. package/dist/css/uikit-core-rtl.css +10 -1
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +10 -1
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +10 -1
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +10 -1
  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 +1 -1
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +1 -1
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +1 -1
  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 +257 -264
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +215 -257
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +1 -1
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +215 -257
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +1 -1
  30. package/dist/js/components/slideshow.min.js +1 -1
  31. package/dist/js/components/sortable.js +1 -1
  32. package/dist/js/components/sortable.min.js +1 -1
  33. package/dist/js/components/tooltip.js +1 -1
  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 +28 -26
  38. package/dist/js/uikit-core.min.js +1 -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 +284 -289
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +5 -5
  44. package/src/js/components/parallax.js +38 -8
  45. package/src/js/core/grid.js +2 -2
  46. package/src/js/core/svg.js +9 -7
  47. package/src/js/mixin/parallax.js +209 -242
  48. package/src/js/util/dimensions.js +4 -2
  49. package/src/js/util/viewport.js +9 -13
  50. package/src/less/components/position.less +2 -0
  51. package/src/less/components/sticky.less +6 -0
  52. package/src/scss/components/position.scss +2 -0
  53. package/src/scss/components/sticky.scss +6 -0
  54. package/tests/index.html +1 -1
  55. package/tests/js/index.js +1 -1
  56. package/tests/notification.html +5 -5
  57. package/tests/parallax.html +66 -50
  58. package/tests/sticky-parallax.html +274 -0
  59. package/tests/sticky.html +2 -2
  60. package/tests/tab.html +1 -1
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.10.2-dev.c8aa7eda2 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.11.0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -4052,6 +4052,12 @@ select.uk-form-width-xsmall {
4052
4052
  /* ========================================================================
4053
4053
  Component: Sticky
4054
4054
  ========================================================================== */
4055
+ /*
4056
+ * Create position context so it's t the same like when fixed.
4057
+ */
4058
+ .uk-sticky {
4059
+ position: relative;
4060
+ }
4055
4061
  /*
4056
4062
  * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
4057
4063
  */
@@ -9017,6 +9023,9 @@ iframe[data-uk-cover] {
9017
9023
  .uk-position-z-index {
9018
9024
  z-index: 1;
9019
9025
  }
9026
+ .uk-position-z-index-negative {
9027
+ z-index: -1;
9028
+ }
9020
9029
  /* ========================================================================
9021
9030
  Component: Transition
9022
9031
  ========================================================================== */