uikit 3.9.5-dev.4be822584 → 3.9.5-dev.59737a9b5

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 +2 -2
  2. package/build/less.js +30 -11
  3. package/build/util.js +1 -20
  4. package/dist/css/uikit-core-rtl.css +7 -7
  5. package/dist/css/uikit-core-rtl.min.css +1 -1
  6. package/dist/css/uikit-core.css +4 -4
  7. package/dist/css/uikit-core.min.css +1 -1
  8. package/dist/css/uikit-rtl.css +7 -7
  9. package/dist/css/uikit-rtl.min.css +1 -1
  10. package/dist/css/uikit.css +4 -4
  11. package/dist/css/uikit.min.css +1 -1
  12. package/dist/js/components/countdown.js +1 -1
  13. package/dist/js/components/countdown.min.js +1 -1
  14. package/dist/js/components/filter.js +1 -1
  15. package/dist/js/components/filter.min.js +1 -1
  16. package/dist/js/components/lightbox-panel.js +1 -1
  17. package/dist/js/components/lightbox-panel.min.js +1 -1
  18. package/dist/js/components/lightbox.js +1 -1
  19. package/dist/js/components/lightbox.min.js +1 -1
  20. package/dist/js/components/notification.js +1 -1
  21. package/dist/js/components/notification.min.js +1 -1
  22. package/dist/js/components/parallax.js +1 -1
  23. package/dist/js/components/parallax.min.js +1 -1
  24. package/dist/js/components/slider-parallax.js +1 -1
  25. package/dist/js/components/slider-parallax.min.js +1 -1
  26. package/dist/js/components/slider.js +1 -1
  27. package/dist/js/components/slider.min.js +1 -1
  28. package/dist/js/components/slideshow-parallax.js +1 -1
  29. package/dist/js/components/slideshow-parallax.min.js +1 -1
  30. package/dist/js/components/slideshow.js +1 -1
  31. package/dist/js/components/slideshow.min.js +1 -1
  32. package/dist/js/components/sortable.js +2 -2
  33. package/dist/js/components/sortable.min.js +1 -1
  34. package/dist/js/components/tooltip.js +1 -1
  35. package/dist/js/components/tooltip.min.js +1 -1
  36. package/dist/js/components/upload.js +1 -1
  37. package/dist/js/components/upload.min.js +1 -1
  38. package/dist/js/uikit-core.js +114 -53
  39. package/dist/js/uikit-core.min.js +1 -1
  40. package/dist/js/uikit-icons.js +1 -1
  41. package/dist/js/uikit-icons.min.js +1 -1
  42. package/dist/js/uikit.js +115 -54
  43. package/dist/js/uikit.min.js +1 -1
  44. package/package.json +5 -7
  45. package/src/js/components/sortable.js +1 -1
  46. package/src/js/core/img.js +93 -49
  47. package/src/js/util/dom.js +2 -5
  48. package/src/less/components/list.less +1 -1
  49. package/src/less/components/utility.less +1 -1
  50. package/src/scss/components/list.scss +1 -1
  51. package/src/scss/components/utility.scss +1 -1
  52. package/tests/image.html +40 -14
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.9.5-dev.4be822584 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
1
+ /*! UIkit 3.9.5-dev.59737a9b5 | https://www.getuikit.com | (c) 2014 - 2021 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -659,7 +659,7 @@ a.uk-link-reset,
659
659
  content: "";
660
660
  /* 1 */
661
661
  position: absolute;
662
- top: calc(50% - ((0.2px + 0.05em) / 2));
662
+ top: calc(50% - (calc(0.2px + 0.05em) / 2));
663
663
  /* 2 */
664
664
  width: 2000px;
665
665
  /* 3 */
@@ -784,7 +784,7 @@ a.uk-link-reset,
784
784
  counter-increment: decimal;
785
785
  }
786
786
  [class*='uk-list'] > ::before {
787
- content: '';
787
+ content: "";
788
788
  position: relative;
789
789
  right: -30px;
790
790
  width: 30px;
@@ -7545,7 +7545,7 @@ td.uk-text-break {
7545
7545
  position: absolute;
7546
7546
  right: 50%;
7547
7547
  top: 50%;
7548
- --uk-position-translate-x: -50%;
7548
+ --uk-position-translate-x: 50%;
7549
7549
  --uk-position-translate-y: -50%;
7550
7550
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
7551
7551
  }
@@ -8080,7 +8080,7 @@ iframe.uk-cover {
8080
8080
  vertical-align: middle;
8081
8081
  }
8082
8082
  .uk-box-shadow-bottom::after {
8083
- content: '';
8083
+ content: "";
8084
8084
  /* 1 */
8085
8085
  position: absolute;
8086
8086
  bottom: -30px;
@@ -8914,7 +8914,7 @@ iframe.uk-cover {
8914
8914
  .uk-position-center {
8915
8915
  top: calc(50% - var(--uk-position-margin-offset));
8916
8916
  right: calc(50% - var(--uk-position-margin-offset));
8917
- --uk-position-translate-x: -50%;
8917
+ --uk-position-translate-x: 50%;
8918
8918
  --uk-position-translate-y: -50%;
8919
8919
  transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
8920
8920
  /* 1 */
@@ -8945,7 +8945,7 @@ iframe.uk-cover {
8945
8945
  .uk-position-top-center,
8946
8946
  .uk-position-bottom-center {
8947
8947
  right: calc(50% - var(--uk-position-margin-offset));
8948
- --uk-position-translate-x: -50%;
8948
+ --uk-position-translate-x: 50%;
8949
8949
  transform: translate(var(--uk-position-translate-x), 0);
8950
8950
  /* 1 */
8951
8951
  width: max-content;