uikit 3.19.2-dev.8313ce565 → 3.19.2

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 +5 -1
  2. package/dist/css/uikit-core-rtl.css +13 -3
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +13 -3
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +13 -3
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +13 -3
  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 +1 -1
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +1 -1
  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 +2 -2
  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 +2 -2
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +10 -10
  43. package/src/less/components/position.less +12 -2
  44. package/src/scss/components/position.scss +12 -2
  45. package/tests/position.html +41 -0
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
 
3
- ## WIP
3
+ ## 3.19.2 (March 12, 2024)
4
+
5
+ ### Added
6
+
7
+ - Add center vertical and horizontal classes to Position component
4
8
 
5
9
  ### Fixed
6
10
 
@@ -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.2 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -9046,7 +9046,8 @@ iframe[data-uk-cover] {
9046
9046
  }
9047
9047
  /* Vertical */
9048
9048
  [class*="uk-position-center-right"],
9049
- [class*="uk-position-center-left"] {
9049
+ [class*="uk-position-center-left"],
9050
+ .uk-position-center-vertical {
9050
9051
  top: calc(50% - var(--uk-position-margin-offset));
9051
9052
  --uk-position-translate-y: -50%;
9052
9053
  transform: translate(0, var(--uk-position-translate-y));
@@ -9057,6 +9058,10 @@ iframe[data-uk-cover] {
9057
9058
  .uk-position-center-left {
9058
9059
  left: 0;
9059
9060
  }
9061
+ .uk-position-center-vertical {
9062
+ right: 0;
9063
+ left: 0;
9064
+ }
9060
9065
  .uk-position-center-right-out {
9061
9066
  left: 100%;
9062
9067
  width: max-content;
@@ -9067,7 +9072,8 @@ iframe[data-uk-cover] {
9067
9072
  }
9068
9073
  /* Horizontal */
9069
9074
  .uk-position-top-center,
9070
- .uk-position-bottom-center {
9075
+ .uk-position-bottom-center,
9076
+ .uk-position-center-horizontal {
9071
9077
  right: calc(50% - var(--uk-position-margin-offset));
9072
9078
  --uk-position-translate-x: 50%;
9073
9079
  transform: translate(var(--uk-position-translate-x), 0);
@@ -9080,6 +9086,10 @@ iframe[data-uk-cover] {
9080
9086
  .uk-position-bottom-center {
9081
9087
  bottom: 0;
9082
9088
  }
9089
+ .uk-position-center-horizontal {
9090
+ top: 0;
9091
+ bottom: 0;
9092
+ }
9083
9093
  /*
9084
9094
  * Cover
9085
9095
  */