uikit 3.13.8-dev.62c5f9d37 → 3.13.8-dev.9cb7293e5
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 +10 -1
- package/dist/css/uikit-core-rtl.css +31 -5
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +31 -5
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +31 -3
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +31 -3
- 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 +13 -10
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +13 -10
- 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 +13 -10
- 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 +41 -49
- 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 +83 -107
- 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 +123 -111
- package/dist/js/uikit.min.js +1 -1
- package/package.json +5 -5
- package/src/js/api/hooks.js +1 -1
- package/src/js/components/lightbox-panel.js +4 -1
- package/src/js/components/tooltip.js +38 -3
- package/src/js/core/accordion.js +1 -1
- package/src/js/core/drop.js +6 -5
- package/src/js/core/height-match.js +7 -15
- package/src/js/core/navbar.js +1 -1
- package/src/js/core/scrollspy.js +45 -26
- package/src/js/core/sticky.js +2 -2
- package/src/js/mixin/media.js +12 -9
- package/src/js/mixin/position.js +4 -43
- package/src/js/util/position.js +4 -1
- package/src/less/components/dropdown.less +11 -1
- package/src/less/components/icon.less +3 -0
- package/src/less/components/nav.less +22 -0
- package/src/less/components/navbar.less +15 -2
- package/src/less/theme/dropdown.less +4 -0
- package/src/less/theme/nav.less +6 -0
- package/src/less/theme/navbar.less +4 -0
- package/src/scss/components/dropdown.scss +11 -1
- package/src/scss/components/icon.scss +3 -0
- package/src/scss/components/nav.scss +22 -0
- package/src/scss/components/navbar.scss +15 -2
- package/src/scss/mixins-theme.scss +4 -0
- package/src/scss/mixins.scss +4 -0
- package/src/scss/theme/dropdown.scss +4 -0
- package/src/scss/theme/nav.scss +6 -0
- package/src/scss/theme/navbar.scss +4 -0
- package/src/scss/variables-theme.scss +5 -1
- package/src/scss/variables.scss +5 -1
- package/tests/dropdown.html +16 -2
- package/tests/nav.html +27 -0
- package/tests/navbar.html +18 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,11 +4,21 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
+
- Add subtitle classes to Nav, Dropdown and Navbar component
|
|
7
8
|
- Drop/Dropdowns try to shift to stay within viewport
|
|
8
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Allow text to wrap into the next line for navs in Dropdown component
|
|
13
|
+
- Scrollspy component uses IntersectionObserver instead of scroll/resize events
|
|
14
|
+
|
|
9
15
|
### Fixed
|
|
10
16
|
|
|
11
17
|
- Fix Drop/Dropdowns component does not close on clicked `.uk-(drop|dropdown)-close` selector
|
|
18
|
+
- Fix dropbar dropdown alignment if boundary-align is true
|
|
19
|
+
- Fix Accordion initially not closed
|
|
20
|
+
- Fix Height Match component not matching correctly
|
|
21
|
+
- Fix regression in Sticky component affecting height of placeholder
|
|
12
22
|
|
|
13
23
|
## 3.13.7 (April 1, 2022)
|
|
14
24
|
|
|
@@ -23,7 +33,6 @@
|
|
|
23
33
|
|
|
24
34
|
- Image component no longer sets a `background-size` for elements with `background-size` set to `auto`
|
|
25
35
|
|
|
26
|
-
|
|
27
36
|
### Fixed
|
|
28
37
|
|
|
29
38
|
- Fix Position component
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.13.8-dev.
|
|
1
|
+
/*! UIkit 3.13.8-dev.9cb7293e5 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -1136,9 +1136,12 @@ button.uk-icon:not(:disabled) {
|
|
|
1136
1136
|
========================================================================== */
|
|
1137
1137
|
/*
|
|
1138
1138
|
* Link
|
|
1139
|
+
* 1. Allow text within link
|
|
1139
1140
|
*/
|
|
1140
1141
|
.uk-icon-link {
|
|
1141
1142
|
color: #999;
|
|
1143
|
+
/* 1 */
|
|
1144
|
+
text-decoration: none !important;
|
|
1142
1145
|
}
|
|
1143
1146
|
.uk-icon-link:hover {
|
|
1144
1147
|
color: #666;
|
|
@@ -3274,9 +3277,6 @@ select.uk-form-width-xsmall {
|
|
|
3274
3277
|
/* Nav
|
|
3275
3278
|
* Adopts `uk-nav`
|
|
3276
3279
|
========================================================================== */
|
|
3277
|
-
.uk-dropdown-nav {
|
|
3278
|
-
white-space: nowrap;
|
|
3279
|
-
}
|
|
3280
3280
|
/*
|
|
3281
3281
|
* Items
|
|
3282
3282
|
*/
|
|
@@ -3288,6 +3288,12 @@ select.uk-form-width-xsmall {
|
|
|
3288
3288
|
.uk-dropdown-nav > li.uk-active > a {
|
|
3289
3289
|
color: #666;
|
|
3290
3290
|
}
|
|
3291
|
+
/*
|
|
3292
|
+
* Subtitle
|
|
3293
|
+
*/
|
|
3294
|
+
.uk-dropdown-nav .uk-nav-subtitle {
|
|
3295
|
+
font-size: 0.875rem;
|
|
3296
|
+
}
|
|
3291
3297
|
/*
|
|
3292
3298
|
* Header
|
|
3293
3299
|
*/
|
|
@@ -4645,6 +4651,12 @@ ul.uk-nav-sub {
|
|
|
4645
4651
|
.uk-nav-default > li.uk-active > a {
|
|
4646
4652
|
color: #333;
|
|
4647
4653
|
}
|
|
4654
|
+
/*
|
|
4655
|
+
* Subtitle
|
|
4656
|
+
*/
|
|
4657
|
+
.uk-nav-default .uk-nav-subtitle {
|
|
4658
|
+
font-size: 0.875rem;
|
|
4659
|
+
}
|
|
4648
4660
|
/*
|
|
4649
4661
|
* Header
|
|
4650
4662
|
*/
|
|
@@ -4687,6 +4699,12 @@ ul.uk-nav-sub {
|
|
|
4687
4699
|
.uk-nav-primary > li.uk-active > a {
|
|
4688
4700
|
color: #333;
|
|
4689
4701
|
}
|
|
4702
|
+
/*
|
|
4703
|
+
* Subtitle
|
|
4704
|
+
*/
|
|
4705
|
+
.uk-nav-primary .uk-nav-subtitle {
|
|
4706
|
+
font-size: 1.25rem;
|
|
4707
|
+
}
|
|
4690
4708
|
/*
|
|
4691
4709
|
* Header
|
|
4692
4710
|
*/
|
|
@@ -4993,7 +5011,9 @@ ul.uk-nav-sub {
|
|
|
4993
5011
|
--uk-position-offset: 0px;
|
|
4994
5012
|
/* 2 */
|
|
4995
5013
|
margin-bottom: 0px;
|
|
4996
|
-
|
|
5014
|
+
/* 3 */
|
|
5015
|
+
padding-right: 15px;
|
|
5016
|
+
padding-left: 15px;
|
|
4997
5017
|
}
|
|
4998
5018
|
/* Dropdown Nav
|
|
4999
5019
|
* Adopts `uk-nav`
|
|
@@ -5012,6 +5032,12 @@ ul.uk-nav-sub {
|
|
|
5012
5032
|
.uk-navbar-dropdown-nav > li.uk-active > a {
|
|
5013
5033
|
color: #333;
|
|
5014
5034
|
}
|
|
5035
|
+
/*
|
|
5036
|
+
* Subtitle
|
|
5037
|
+
*/
|
|
5038
|
+
.uk-navbar-dropdown-nav .uk-nav-subtitle {
|
|
5039
|
+
font-size: 0.875rem;
|
|
5040
|
+
}
|
|
5015
5041
|
/*
|
|
5016
5042
|
* Header
|
|
5017
5043
|
*/
|