uikit 3.15.18 → 3.15.19-dev.818a491d5

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 (48) hide show
  1. package/CHANGELOG.md +13 -0
  2. package/dist/css/uikit-core-rtl.css +5 -2
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +5 -2
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +5 -2
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +5 -2
  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 +9 -14
  37. package/dist/js/uikit-core.min.js +2 -2
  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 +9 -14
  41. package/dist/js/uikit.min.js +2 -2
  42. package/package.json +1 -1
  43. package/src/js/core/accordion.js +6 -5
  44. package/src/js/core/svg.js +1 -1
  45. package/src/js/util/attr.js +1 -6
  46. package/src/js/util/viewport.js +1 -1
  47. package/src/less/components/sticky.less +4 -1
  48. package/src/scss/components/sticky.scss +4 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Fixed
6
+
7
+ - Fix stacking context if using `position: sticky` in Sticky component
8
+ - Fix height calculation for `box-sizing: border-box` on Accordion content
9
+ - Fix error in console if image can't be loaded in Svg component with `stroke-animation: true`
10
+ - Fix `scrollIntoView()` no longer considers elements with `position: clip` as scrollable parents
11
+
12
+ ### Changed
13
+
14
+ - `removeAttr` no longer accepts a space separated list of attribute names
15
+
3
16
  ## 3.15.18 (December 13, 2022)
4
17
 
5
18
  ### Fixed
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.15.18 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.15.19-dev.818a491d5 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3736,19 +3736,22 @@ select.uk-form-width-xsmall {
3736
3736
  ========================================================================== */
3737
3737
  /*
3738
3738
  * 1. Create position context so it's t the same like when fixed.
3739
+ * 2. Create stacking context already when not sticky to have the same context
3740
+ * for position set to `sticky` and `relative`
3739
3741
  * 2. More robust if padding and border are used and the sticky height is transitioned
3740
3742
  */
3741
3743
  .uk-sticky {
3742
3744
  /* 1 */
3743
3745
  position: relative;
3744
3746
  /* 2 */
3747
+ z-index: 980;
3748
+ /* 3 */
3745
3749
  box-sizing: border-box;
3746
3750
  }
3747
3751
  /*
3748
3752
  * 1. Force new layer to resolve frame rate issues on devices with lower frame rates
3749
3753
  */
3750
3754
  .uk-sticky-fixed {
3751
- z-index: 980;
3752
3755
  margin: 0 !important;
3753
3756
  /* 1 */
3754
3757
  -webkit-backface-visibility: hidden;