uikit 3.19.2-dev.8313ce565 → 3.19.3-dev.16ee14962

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 (47) hide show
  1. package/CHANGELOG.md +5 -1
  2. package/build/util.js +37 -2
  3. package/dist/css/uikit-core-rtl.css +13 -3
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +13 -3
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +13 -3
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +13 -3
  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 +1 -1
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +1 -1
  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 +1 -1
  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 +8 -6
  38. package/dist/js/uikit-core.min.js +1 -1
  39. package/dist/js/uikit-icons.js +36 -36
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +8 -6
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +11 -11
  44. package/src/js/core/sticky.js +5 -4
  45. package/src/less/components/position.less +12 -2
  46. package/src/scss/components/position.scss +12 -2
  47. package/tests/position.html +41 -0
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.19.2-dev.8313ce565 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
1
+ /*! UIkit 3.19.3-dev.16ee14962 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -9463,7 +9463,8 @@ iframe[data-uk-cover] {
9463
9463
  }
9464
9464
  /* Vertical */
9465
9465
  [class*="uk-position-center-right"],
9466
- [class*="uk-position-center-left"] {
9466
+ [class*="uk-position-center-left"],
9467
+ .uk-position-center-vertical {
9467
9468
  top: calc(50% - var(--uk-position-margin-offset));
9468
9469
  --uk-position-translate-y: -50%;
9469
9470
  transform: translate(0, var(--uk-position-translate-y));
@@ -9474,6 +9475,10 @@ iframe[data-uk-cover] {
9474
9475
  .uk-position-center-left {
9475
9476
  left: 0;
9476
9477
  }
9478
+ .uk-position-center-vertical {
9479
+ right: 0;
9480
+ left: 0;
9481
+ }
9477
9482
  .uk-position-center-right-out {
9478
9483
  left: 100%;
9479
9484
  width: max-content;
@@ -9484,7 +9489,8 @@ iframe[data-uk-cover] {
9484
9489
  }
9485
9490
  /* Horizontal */
9486
9491
  .uk-position-top-center,
9487
- .uk-position-bottom-center {
9492
+ .uk-position-bottom-center,
9493
+ .uk-position-center-horizontal {
9488
9494
  right: calc(50% - var(--uk-position-margin-offset));
9489
9495
  --uk-position-translate-x: 50%;
9490
9496
  transform: translate(var(--uk-position-translate-x), 0);
@@ -9497,6 +9503,10 @@ iframe[data-uk-cover] {
9497
9503
  .uk-position-bottom-center {
9498
9504
  bottom: 0;
9499
9505
  }
9506
+ .uk-position-center-horizontal {
9507
+ top: 0;
9508
+ bottom: 0;
9509
+ }
9500
9510
  /*
9501
9511
  * Cover
9502
9512
  */