uikit 3.13.11-dev.eb080f280 → 3.14.0
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 +6 -2
- 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 +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 -2
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +4 -2
- 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 -2
- 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 +86 -58
- 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 +90 -60
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/slider.js +1 -1
- package/src/js/core/cover.js +27 -14
- package/src/js/core/drop.js +22 -2
- package/src/js/core/height-match.js +1 -1
- package/src/js/core/margin.js +9 -2
- package/src/js/core/scrollspy-nav.js +2 -2
- package/src/js/mixin/parallax.js +3 -2
- package/src/js/util/lang.js +34 -38
- package/src/js/util/position.js +9 -9
- package/src/less/components/nav.less +1 -0
- package/src/less/components/utility.less +1 -0
- package/src/scss/components/nav.scss +1 -0
- package/src/scss/components/utility.scss +1 -0
- package/tests/alert.html +1 -1
- package/tests/drop.html +154 -80
- package/tests/navbar.html +1 -1
- package/tests/parallax.html +1 -1
- package/tests/sticky-parallax.html +8 -8
- package/tests/sticky.html +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 3.14.0 (April 27, 2022)
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
7
|
- Add position shifting to Drop and Dropdown components
|
|
8
8
|
- Add axis flipping if overflowing on both sides to Drop and Dropdown components
|
|
9
9
|
- Add `max-width` to prevent overflowing the viewport to Drop and Dropdown components
|
|
10
|
+
- Add `display` option to Drop and Dropdown components
|
|
10
11
|
- Add support for negative `start` value in Sticky component
|
|
11
12
|
- Add `overflow-flip` option to Sticky component
|
|
12
13
|
- Add navbar justify to Navbar component
|
|
13
14
|
- Add subtitle classes to Nav, Dropdown and Navbar components
|
|
14
15
|
- Add support for `vw`,`vh`,`%` and `px` units to scale property in Parallax component
|
|
16
|
+
- Add resize horizontal class to Utility component
|
|
15
17
|
|
|
16
18
|
### Changed
|
|
17
19
|
|
|
@@ -20,14 +22,16 @@
|
|
|
20
22
|
|
|
21
23
|
### Removed
|
|
22
24
|
|
|
25
|
+
- Remove `position: auto` option in Sticky component, use `overflow-flip` option instead
|
|
23
26
|
- Remove `overflow-x: hidden` on html element, while horizontal animation is active
|
|
24
|
-
- Remove `auto` value for `position` option in Sticky component, use `overflow-flip` option instead
|
|
25
27
|
|
|
26
28
|
### Fixed
|
|
27
29
|
|
|
28
30
|
- Fix dropbar dropdown alignment if boundary-align is true
|
|
29
31
|
- Fix viewport helper functions take border into account
|
|
30
32
|
- Fix Sticky component responsiveness on window resize
|
|
33
|
+
- Fix Cover component correctly applies ratio if only one of width/height is provided
|
|
34
|
+
- Fix responsiveness in Grid, Margin and Height Match component
|
|
31
35
|
|
|
32
36
|
## 3.13.10 (April 20, 2022)
|
|
33
37
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.
|
|
1
|
+
/*! UIkit 3.14.0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -7411,6 +7411,9 @@ iframe[data-uk-cover] {
|
|
|
7411
7411
|
.uk-resize {
|
|
7412
7412
|
resize: both;
|
|
7413
7413
|
}
|
|
7414
|
+
.uk-resize-horizontal {
|
|
7415
|
+
resize: horizontal;
|
|
7416
|
+
}
|
|
7414
7417
|
.uk-resize-vertical {
|
|
7415
7418
|
resize: vertical;
|
|
7416
7419
|
}
|