uikit 3.15.15 → 3.15.16-dev.18a813195
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.
- package/CHANGELOG.md +17 -3
- package/dist/css/uikit-core-rtl.css +4 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +4 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +4 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +4 -1
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +10 -19
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +10 -19
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +4 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +2 -2
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +4 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -1
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +54 -62
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +58 -63
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/internal/slider-transitioner.js +2 -1
- package/src/js/core/accordion.js +5 -4
- package/src/js/core/grid.js +2 -5
- package/src/js/core/sticky.js +13 -11
- package/src/js/mixin/modal.js +6 -14
- package/src/js/mixin/parallax.js +3 -0
- package/src/js/util/dimensions.js +21 -24
- package/src/js/util/lang.js +7 -0
- package/src/less/components/offcanvas.less +6 -1
- package/src/scss/components/offcanvas.scss +6 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP
|
|
4
|
+
|
|
5
|
+
### Changed
|
|
6
|
+
|
|
7
|
+
- Add `will-change` css property to Parallax elements
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fix for elements with `position: sticky` to keep their position when Offcanvas is opened
|
|
12
|
+
- Fix regression in clicking hash links in Modal component that match `sel-close` option
|
|
13
|
+
- Fix jump after animation if Accordion content has `padding-bottom`
|
|
14
|
+
- Fix Sticky listens for resize of itself while not positioned `fixed`
|
|
15
|
+
- Fix Sticky positioning on mobile devices
|
|
16
|
+
|
|
3
17
|
## 3.15.15 (December 1, 2022)
|
|
4
18
|
|
|
5
19
|
### Changed
|
|
@@ -762,7 +776,7 @@
|
|
|
762
776
|
|
|
763
777
|
### Fixed
|
|
764
778
|
|
|
765
|
-
- Fix showing/
|
|
779
|
+
- Fix showing/hiding Modal/Offcanvas programmatically
|
|
766
780
|
|
|
767
781
|
## 3.6.14 (January 26, 2021)
|
|
768
782
|
|
|
@@ -1948,7 +1962,7 @@
|
|
|
1948
1962
|
- Fix Slideshow combined with Height Viewport component
|
|
1949
1963
|
- Fix Height Match component's `row` matching
|
|
1950
1964
|
- Fix height calculation in Height Match component
|
|
1951
|
-
- Fix regression with Video component not
|
|
1965
|
+
- Fix regression with Video component not autoplay/pause
|
|
1952
1966
|
|
|
1953
1967
|
## 3.0.0 beta 42 (April 5, 2018)
|
|
1954
1968
|
|
|
@@ -2273,7 +2287,7 @@
|
|
|
2273
2287
|
### Fixed
|
|
2274
2288
|
|
|
2275
2289
|
- Remove stacking context for `uk-inline`
|
|
2276
|
-
- Prevent scrolling in
|
|
2290
|
+
- Prevent scrolling in Lightbox with one slide only
|
|
2277
2291
|
|
|
2278
2292
|
## 3.0.0 beta 26 (July 20, 2017)
|
|
2279
2293
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.16-dev.18a813195 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3959,10 +3959,13 @@ select.uk-form-width-xsmall {
|
|
|
3959
3959
|
/*
|
|
3960
3960
|
* Prevent horizontal scrollbar when the content is slide-out
|
|
3961
3961
|
* Has to be on the `html` element too to make it work on the `body`
|
|
3962
|
+
* 1. `clip` is needed for `position: sticky` elements to keep their position
|
|
3962
3963
|
*/
|
|
3963
3964
|
.uk-offcanvas-page,
|
|
3964
3965
|
.uk-offcanvas-container {
|
|
3965
3966
|
overflow-x: hidden;
|
|
3967
|
+
/* 1 */
|
|
3968
|
+
overflow-x: clip;
|
|
3966
3969
|
}
|
|
3967
3970
|
/* Container
|
|
3968
3971
|
========================================================================== */
|