uikit 3.13.6-dev.f130508b6 → 3.13.6
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 +8 -5
- package/build/util.js +1 -1
- package/dist/css/uikit-core-rtl.css +7 -12
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +7 -12
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +7 -12
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +7 -12
- 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 +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +2 -2
- 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 +2 -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 +19 -53
- 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 +143 -227
- 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 +143 -227
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/slider-parallax.js +1 -1
- package/src/js/core/height-viewport.js +4 -2
- package/src/js/core/img.js +0 -57
- package/src/js/mixin/position.js +16 -49
- package/src/js/util/position.js +129 -125
- package/src/less/components/drop.less +1 -1
- package/src/less/components/dropdown.less +1 -1
- package/src/less/components/nav.less +1 -5
- package/src/less/components/navbar.less +2 -2
- package/src/less/components/tooltip.less +1 -1
- package/src/scss/components/drop.scss +1 -1
- package/src/scss/components/dropdown.scss +1 -1
- package/src/scss/components/nav.scss +1 -5
- package/src/scss/components/navbar.scss +2 -2
- package/src/scss/components/tooltip.scss +1 -1
- package/tests/position.html +39 -38
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 3.13.6 (April 1, 2022)
|
|
4
4
|
|
|
5
5
|
### Fixed
|
|
6
6
|
|
|
7
|
+
- Fix Position component
|
|
7
8
|
- Fix regression in Upload component with `multiple` option disabled
|
|
9
|
+
- Fix regression in Height Viewport component with `expand` option enabled
|
|
10
|
+
- Fix regression in Slider/Slideshow Parallax
|
|
11
|
+
|
|
12
|
+
### Removed
|
|
13
|
+
|
|
14
|
+
- Image component no longer sets a `background-size` for elements with `background-size` set to `auto`
|
|
8
15
|
|
|
9
16
|
## 3.13.5 (March 28, 2022)
|
|
10
17
|
|
|
@@ -27,10 +34,6 @@
|
|
|
27
34
|
|
|
28
35
|
## 3.13.2 (March 25, 2022)
|
|
29
36
|
|
|
30
|
-
### Added
|
|
31
|
-
|
|
32
|
-
- Drop/Dropdowns try to shift to stay within viewport
|
|
33
|
-
|
|
34
37
|
### Changed
|
|
35
38
|
|
|
36
39
|
- Use custom property for direction offset in components based on Position mixin
|
package/build/util.js
CHANGED
|
@@ -148,7 +148,7 @@ export async function compile(file, dest, { external, globals, name, aliases, re
|
|
|
148
148
|
output.push({
|
|
149
149
|
...outputOptions,
|
|
150
150
|
file: `${dest}.min.js`,
|
|
151
|
-
plugins: [minify ? rollupMinify() : undefined],
|
|
151
|
+
plugins: [minify && !debug ? rollupMinify() : undefined],
|
|
152
152
|
});
|
|
153
153
|
}
|
|
154
154
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.13.6
|
|
1
|
+
/*! UIkit 3.13.6 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3227,7 +3227,7 @@ select.uk-form-width-xsmall {
|
|
|
3227
3227
|
/* 2 */
|
|
3228
3228
|
position: absolute;
|
|
3229
3229
|
z-index: 1020;
|
|
3230
|
-
--uk-position-
|
|
3230
|
+
--uk-position-offset: 20px;
|
|
3231
3231
|
/* 3 */
|
|
3232
3232
|
box-sizing: border-box;
|
|
3233
3233
|
width: 300px;
|
|
@@ -3257,7 +3257,7 @@ select.uk-form-width-xsmall {
|
|
|
3257
3257
|
/* 2 */
|
|
3258
3258
|
position: absolute;
|
|
3259
3259
|
z-index: 1020;
|
|
3260
|
-
--uk-position-
|
|
3260
|
+
--uk-position-offset: 10px;
|
|
3261
3261
|
/* 3 */
|
|
3262
3262
|
box-sizing: border-box;
|
|
3263
3263
|
min-width: 200px;
|
|
@@ -4072,7 +4072,7 @@ select.uk-form-width-xsmall {
|
|
|
4072
4072
|
/* 2 */
|
|
4073
4073
|
position: absolute;
|
|
4074
4074
|
z-index: 1030;
|
|
4075
|
-
--uk-position-
|
|
4075
|
+
--uk-position-offset: 10px;
|
|
4076
4076
|
/* 3 */
|
|
4077
4077
|
top: 0;
|
|
4078
4078
|
/* 4 */
|
|
@@ -4562,7 +4562,6 @@ select.uk-form-width-xsmall {
|
|
|
4562
4562
|
* 1. Center content vertically, e.g. an icon
|
|
4563
4563
|
* 2. Imitate white space gap when using flexbox
|
|
4564
4564
|
* 3. Reset link
|
|
4565
|
-
* 4. Space is allocated solely based on content dimensions: 0 0 auto
|
|
4566
4565
|
*/
|
|
4567
4566
|
.uk-nav li > a {
|
|
4568
4567
|
/* 1 */
|
|
@@ -4573,10 +4572,6 @@ select.uk-form-width-xsmall {
|
|
|
4573
4572
|
/* 3*/
|
|
4574
4573
|
text-decoration: none;
|
|
4575
4574
|
}
|
|
4576
|
-
/* 4 */
|
|
4577
|
-
.uk-nav li > a > * {
|
|
4578
|
-
flex: none;
|
|
4579
|
-
}
|
|
4580
4575
|
/*
|
|
4581
4576
|
* Items
|
|
4582
4577
|
* Must target `a` elements to exclude other elements (e.g. lists)
|
|
@@ -4631,7 +4626,7 @@ ul.uk-nav-sub {
|
|
|
4631
4626
|
}
|
|
4632
4627
|
/* Divider
|
|
4633
4628
|
========================================================================== */
|
|
4634
|
-
.uk-nav
|
|
4629
|
+
.uk-nav .uk-nav-divider {
|
|
4635
4630
|
margin: 5px 0;
|
|
4636
4631
|
}
|
|
4637
4632
|
/* Default modifier
|
|
@@ -4939,7 +4934,7 @@ ul.uk-nav-sub {
|
|
|
4939
4934
|
/* 2 */
|
|
4940
4935
|
position: absolute;
|
|
4941
4936
|
z-index: 1020;
|
|
4942
|
-
--uk-position-
|
|
4937
|
+
--uk-position-offset: 0px;
|
|
4943
4938
|
/* 3 */
|
|
4944
4939
|
box-sizing: border-box;
|
|
4945
4940
|
width: 200px;
|
|
@@ -4995,7 +4990,7 @@ ul.uk-nav-sub {
|
|
|
4995
4990
|
*/
|
|
4996
4991
|
.uk-navbar-dropdown-dropbar {
|
|
4997
4992
|
/* 1 */
|
|
4998
|
-
--uk-position-
|
|
4993
|
+
--uk-position-offset: 0px;
|
|
4999
4994
|
/* 2 */
|
|
5000
4995
|
margin-bottom: 0px;
|
|
5001
4996
|
padding: 15px;
|