uikit 3.13.8-dev.f030a8b39 → 3.13.9
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 +13 -6
- package/dist/css/uikit-core-rtl.css +5 -34
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +5 -34
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +3 -34
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +3 -34
- 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 +5 -2
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +5 -2
- 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 +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +1 -1
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -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 +29 -59
- 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 +219 -205
- 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 +227 -243
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/hooks.js +1 -1
- package/src/js/components/lightbox-panel.js +4 -1
- package/src/js/components/tooltip.js +3 -38
- package/src/js/core/accordion.js +1 -1
- package/src/js/core/drop.js +12 -9
- package/src/js/core/height-match.js +8 -17
- package/src/js/core/margin.js +1 -1
- package/src/js/core/navbar.js +1 -3
- package/src/js/core/scrollspy.js +45 -26
- package/src/js/core/sticky.js +2 -2
- package/src/js/core/toggle.js +1 -1
- package/src/js/mixin/position.js +24 -22
- package/src/js/util/position.js +129 -128
- package/src/less/components/dropdown.less +1 -11
- package/src/less/components/nav.less +0 -22
- package/src/less/components/navbar.less +2 -22
- package/src/less/theme/dropdown.less +0 -2
- package/src/less/theme/nav.less +0 -4
- package/src/less/theme/navbar.less +0 -2
- package/src/scss/components/dropdown.scss +1 -11
- package/src/scss/components/nav.scss +0 -22
- package/src/scss/components/navbar.scss +2 -22
- package/src/scss/mixins-theme.scss +0 -4
- package/src/scss/mixins.scss +0 -4
- package/src/scss/theme/dropdown.scss +0 -2
- package/src/scss/theme/nav.scss +0 -4
- package/src/scss/theme/navbar.scss +0 -2
- package/src/scss/variables-theme.scss +1 -5
- package/src/scss/variables.scss +1 -5
- package/tests/dropdown.html +2 -16
- package/tests/nav.html +0 -27
- package/tests/navbar.html +4 -18
- package/tests/position.html +39 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,20 +1,26 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 3.13.9 (April 20, 2022)
|
|
4
4
|
|
|
5
|
-
###
|
|
5
|
+
### Fixed
|
|
6
6
|
|
|
7
|
-
-
|
|
8
|
-
|
|
7
|
+
- Fix release
|
|
8
|
+
|
|
9
|
+
## 3.13.8 (April 20, 2022)
|
|
9
10
|
|
|
10
11
|
### Changed
|
|
11
12
|
|
|
12
|
-
-
|
|
13
|
+
- Scrollspy component uses IntersectionObserver instead of scroll/resize events
|
|
13
14
|
|
|
14
15
|
### Fixed
|
|
15
16
|
|
|
16
17
|
- Fix Drop/Dropdowns component does not close on clicked `.uk-(drop|dropdown)-close` selector
|
|
17
|
-
- Fix
|
|
18
|
+
- Fix Accordion initially not closed
|
|
19
|
+
- Fix Height Match component not matching correctly
|
|
20
|
+
- Fix Margin component does not correctly listen for resize
|
|
21
|
+
- Fix regression in Sticky component affecting height of placeholder
|
|
22
|
+
- Fix Toggle not toggling after re-entering button with mouse before drop has closed itself
|
|
23
|
+
- Fix reposition Drop on scroll
|
|
18
24
|
|
|
19
25
|
## 3.13.7 (April 1, 2022)
|
|
20
26
|
|
|
@@ -29,6 +35,7 @@
|
|
|
29
35
|
|
|
30
36
|
- Image component no longer sets a `background-size` for elements with `background-size` set to `auto`
|
|
31
37
|
|
|
38
|
+
|
|
32
39
|
### Fixed
|
|
33
40
|
|
|
34
41
|
- Fix Position component
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.13.
|
|
1
|
+
/*! UIkit 3.13.9 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3274,6 +3274,9 @@ select.uk-form-width-xsmall {
|
|
|
3274
3274
|
/* Nav
|
|
3275
3275
|
* Adopts `uk-nav`
|
|
3276
3276
|
========================================================================== */
|
|
3277
|
+
.uk-dropdown-nav {
|
|
3278
|
+
white-space: nowrap;
|
|
3279
|
+
}
|
|
3277
3280
|
/*
|
|
3278
3281
|
* Items
|
|
3279
3282
|
*/
|
|
@@ -3285,12 +3288,6 @@ select.uk-form-width-xsmall {
|
|
|
3285
3288
|
.uk-dropdown-nav > li.uk-active > a {
|
|
3286
3289
|
color: #666;
|
|
3287
3290
|
}
|
|
3288
|
-
/*
|
|
3289
|
-
* Subtitle
|
|
3290
|
-
*/
|
|
3291
|
-
.uk-dropdown-nav .uk-nav-subtitle {
|
|
3292
|
-
font-size: 0.875rem;
|
|
3293
|
-
}
|
|
3294
3291
|
/*
|
|
3295
3292
|
* Header
|
|
3296
3293
|
*/
|
|
@@ -4648,12 +4645,6 @@ ul.uk-nav-sub {
|
|
|
4648
4645
|
.uk-nav-default > li.uk-active > a {
|
|
4649
4646
|
color: #333;
|
|
4650
4647
|
}
|
|
4651
|
-
/*
|
|
4652
|
-
* Subtitle
|
|
4653
|
-
*/
|
|
4654
|
-
.uk-nav-default .uk-nav-subtitle {
|
|
4655
|
-
font-size: 0.875rem;
|
|
4656
|
-
}
|
|
4657
4648
|
/*
|
|
4658
4649
|
* Header
|
|
4659
4650
|
*/
|
|
@@ -4696,12 +4687,6 @@ ul.uk-nav-sub {
|
|
|
4696
4687
|
.uk-nav-primary > li.uk-active > a {
|
|
4697
4688
|
color: #333;
|
|
4698
4689
|
}
|
|
4699
|
-
/*
|
|
4700
|
-
* Subtitle
|
|
4701
|
-
*/
|
|
4702
|
-
.uk-nav-primary .uk-nav-subtitle {
|
|
4703
|
-
font-size: 1.25rem;
|
|
4704
|
-
}
|
|
4705
4690
|
/*
|
|
4706
4691
|
* Header
|
|
4707
4692
|
*/
|
|
@@ -5002,21 +4987,13 @@ ul.uk-nav-sub {
|
|
|
5002
4987
|
* 1. Set position
|
|
5003
4988
|
* 2. Bottom padding for dropbar
|
|
5004
4989
|
* 3. Horizontal padding
|
|
5005
|
-
* 4. Reset padding if aligned to boundary
|
|
5006
4990
|
*/
|
|
5007
4991
|
.uk-navbar-dropdown-dropbar {
|
|
5008
4992
|
/* 1 */
|
|
5009
4993
|
--uk-position-offset: 0px;
|
|
5010
4994
|
/* 2 */
|
|
5011
4995
|
margin-bottom: 0px;
|
|
5012
|
-
|
|
5013
|
-
padding-right: 15px;
|
|
5014
|
-
padding-left: 15px;
|
|
5015
|
-
}
|
|
5016
|
-
/* 4 */
|
|
5017
|
-
.uk-navbar-dropdown-dropbar.uk-navbar-dropdown-boundary {
|
|
5018
|
-
padding-right: 0;
|
|
5019
|
-
padding-left: 0;
|
|
4996
|
+
padding: 15px;
|
|
5020
4997
|
}
|
|
5021
4998
|
/* Dropdown Nav
|
|
5022
4999
|
* Adopts `uk-nav`
|
|
@@ -5035,12 +5012,6 @@ ul.uk-nav-sub {
|
|
|
5035
5012
|
.uk-navbar-dropdown-nav > li.uk-active > a {
|
|
5036
5013
|
color: #333;
|
|
5037
5014
|
}
|
|
5038
|
-
/*
|
|
5039
|
-
* Subtitle
|
|
5040
|
-
*/
|
|
5041
|
-
.uk-navbar-dropdown-nav .uk-nav-subtitle {
|
|
5042
|
-
font-size: 0.875rem;
|
|
5043
|
-
}
|
|
5044
5015
|
/*
|
|
5045
5016
|
* Header
|
|
5046
5017
|
*/
|