uikit 3.18.4-dev.01a468d2e → 3.18.4-dev.3b6dec3a6
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 +5 -0
- package/dist/css/uikit-core-rtl.css +31 -31
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +31 -31
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +31 -31
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +31 -31
- 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 +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +3 -7
- 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 +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 +3 -3
- 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 +5 -9
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/images/components/navbar-toggle-icon.svg +2 -2
- package/src/js/components/slider.js +2 -6
- package/src/less/components/heading.less +2 -2
- package/src/less/components/width.less +30 -30
- package/src/scss/components/heading.scss +2 -2
- package/src/scss/components/width.scss +30 -30
- package/tests/slider.html +1 -1
- package/tests/slideshow.html +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,12 +7,17 @@
|
|
|
7
7
|
- Add breakpoint classes for flex direction, dimension and alignment
|
|
8
8
|
- Add `active` option to Slider component
|
|
9
9
|
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Remove obsolete fix for rounding issues in Width component in IE11/Edge
|
|
13
|
+
|
|
10
14
|
### Fixed
|
|
11
15
|
|
|
12
16
|
- Fix combination of width auto and expand breakpoint classes
|
|
13
17
|
- Fix logo inverse selector to work with different types of images
|
|
14
18
|
- Fix Tooltips not showing in iOS
|
|
15
19
|
- Fix parallax scrolling for Slideshow/Slider component with finite mode
|
|
20
|
+
- Fix Slider component disables infinite scrolling prematurely
|
|
16
21
|
- Fix Sass sources by renaming spin() (LESS) to adjust-hue() (Sass)
|
|
17
22
|
|
|
18
23
|
## 3.18.3 (February 13, 2024)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.18.4-dev.
|
|
1
|
+
/*! UIkit 3.18.4-dev.3b6dec3a6 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -6418,7 +6418,7 @@ ul.uk-nav-sub {
|
|
|
6418
6418
|
width: 50%;
|
|
6419
6419
|
}
|
|
6420
6420
|
.uk-child-width-1-3 > * {
|
|
6421
|
-
width: calc(100%
|
|
6421
|
+
width: calc(100% / 3);
|
|
6422
6422
|
}
|
|
6423
6423
|
.uk-child-width-1-4 > * {
|
|
6424
6424
|
width: 25%;
|
|
@@ -6427,7 +6427,7 @@ ul.uk-nav-sub {
|
|
|
6427
6427
|
width: 20%;
|
|
6428
6428
|
}
|
|
6429
6429
|
.uk-child-width-1-6 > * {
|
|
6430
|
-
width: calc(100%
|
|
6430
|
+
width: calc(100% / 6);
|
|
6431
6431
|
}
|
|
6432
6432
|
.uk-child-width-auto > * {
|
|
6433
6433
|
width: auto;
|
|
@@ -6453,7 +6453,7 @@ ul.uk-nav-sub {
|
|
|
6453
6453
|
width: 50%;
|
|
6454
6454
|
}
|
|
6455
6455
|
.uk-child-width-1-3\@s > * {
|
|
6456
|
-
width: calc(100%
|
|
6456
|
+
width: calc(100% / 3);
|
|
6457
6457
|
}
|
|
6458
6458
|
.uk-child-width-1-4\@s > * {
|
|
6459
6459
|
width: 25%;
|
|
@@ -6462,7 +6462,7 @@ ul.uk-nav-sub {
|
|
|
6462
6462
|
width: 20%;
|
|
6463
6463
|
}
|
|
6464
6464
|
.uk-child-width-1-6\@s > * {
|
|
6465
|
-
width: calc(100%
|
|
6465
|
+
width: calc(100% / 6);
|
|
6466
6466
|
}
|
|
6467
6467
|
.uk-child-width-auto\@s > * {
|
|
6468
6468
|
width: auto;
|
|
@@ -6483,7 +6483,7 @@ ul.uk-nav-sub {
|
|
|
6483
6483
|
width: 50%;
|
|
6484
6484
|
}
|
|
6485
6485
|
.uk-child-width-1-3\@m > * {
|
|
6486
|
-
width: calc(100%
|
|
6486
|
+
width: calc(100% / 3);
|
|
6487
6487
|
}
|
|
6488
6488
|
.uk-child-width-1-4\@m > * {
|
|
6489
6489
|
width: 25%;
|
|
@@ -6492,7 +6492,7 @@ ul.uk-nav-sub {
|
|
|
6492
6492
|
width: 20%;
|
|
6493
6493
|
}
|
|
6494
6494
|
.uk-child-width-1-6\@m > * {
|
|
6495
|
-
width: calc(100%
|
|
6495
|
+
width: calc(100% / 6);
|
|
6496
6496
|
}
|
|
6497
6497
|
.uk-child-width-auto\@m > * {
|
|
6498
6498
|
width: auto;
|
|
@@ -6512,7 +6512,7 @@ ul.uk-nav-sub {
|
|
|
6512
6512
|
width: 50%;
|
|
6513
6513
|
}
|
|
6514
6514
|
.uk-child-width-1-3\@l > * {
|
|
6515
|
-
width: calc(100%
|
|
6515
|
+
width: calc(100% / 3);
|
|
6516
6516
|
}
|
|
6517
6517
|
.uk-child-width-1-4\@l > * {
|
|
6518
6518
|
width: 25%;
|
|
@@ -6521,7 +6521,7 @@ ul.uk-nav-sub {
|
|
|
6521
6521
|
width: 20%;
|
|
6522
6522
|
}
|
|
6523
6523
|
.uk-child-width-1-6\@l > * {
|
|
6524
|
-
width: calc(100%
|
|
6524
|
+
width: calc(100% / 6);
|
|
6525
6525
|
}
|
|
6526
6526
|
.uk-child-width-auto\@l > * {
|
|
6527
6527
|
width: auto;
|
|
@@ -6541,7 +6541,7 @@ ul.uk-nav-sub {
|
|
|
6541
6541
|
width: 50%;
|
|
6542
6542
|
}
|
|
6543
6543
|
.uk-child-width-1-3\@xl > * {
|
|
6544
|
-
width: calc(100%
|
|
6544
|
+
width: calc(100% / 3);
|
|
6545
6545
|
}
|
|
6546
6546
|
.uk-child-width-1-4\@xl > * {
|
|
6547
6547
|
width: 25%;
|
|
@@ -6550,7 +6550,7 @@ ul.uk-nav-sub {
|
|
|
6550
6550
|
width: 20%;
|
|
6551
6551
|
}
|
|
6552
6552
|
.uk-child-width-1-6\@xl > * {
|
|
6553
|
-
width: calc(100%
|
|
6553
|
+
width: calc(100% / 6);
|
|
6554
6554
|
}
|
|
6555
6555
|
.uk-child-width-auto\@xl > * {
|
|
6556
6556
|
width: auto;
|
|
@@ -6578,10 +6578,10 @@ ul.uk-nav-sub {
|
|
|
6578
6578
|
}
|
|
6579
6579
|
/* Thirds */
|
|
6580
6580
|
.uk-width-1-3 {
|
|
6581
|
-
width: calc(100%
|
|
6581
|
+
width: calc(100% / 3);
|
|
6582
6582
|
}
|
|
6583
6583
|
.uk-width-2-3 {
|
|
6584
|
-
width: calc(
|
|
6584
|
+
width: calc(200% / 3);
|
|
6585
6585
|
}
|
|
6586
6586
|
/* Quarters */
|
|
6587
6587
|
.uk-width-1-4 {
|
|
@@ -6605,10 +6605,10 @@ ul.uk-nav-sub {
|
|
|
6605
6605
|
}
|
|
6606
6606
|
/* Sixths */
|
|
6607
6607
|
.uk-width-1-6 {
|
|
6608
|
-
width: calc(100%
|
|
6608
|
+
width: calc(100% / 6);
|
|
6609
6609
|
}
|
|
6610
6610
|
.uk-width-5-6 {
|
|
6611
|
-
width: calc(
|
|
6611
|
+
width: calc(500% / 6);
|
|
6612
6612
|
}
|
|
6613
6613
|
/* Pixel */
|
|
6614
6614
|
.uk-width-small {
|
|
@@ -6647,10 +6647,10 @@ ul.uk-nav-sub {
|
|
|
6647
6647
|
}
|
|
6648
6648
|
/* Thirds */
|
|
6649
6649
|
.uk-width-1-3\@s {
|
|
6650
|
-
width: calc(100%
|
|
6650
|
+
width: calc(100% / 3);
|
|
6651
6651
|
}
|
|
6652
6652
|
.uk-width-2-3\@s {
|
|
6653
|
-
width: calc(
|
|
6653
|
+
width: calc(200% / 3);
|
|
6654
6654
|
}
|
|
6655
6655
|
/* Quarters */
|
|
6656
6656
|
.uk-width-1-4\@s {
|
|
@@ -6674,10 +6674,10 @@ ul.uk-nav-sub {
|
|
|
6674
6674
|
}
|
|
6675
6675
|
/* Sixths */
|
|
6676
6676
|
.uk-width-1-6\@s {
|
|
6677
|
-
width: calc(100%
|
|
6677
|
+
width: calc(100% / 6);
|
|
6678
6678
|
}
|
|
6679
6679
|
.uk-width-5-6\@s {
|
|
6680
|
-
width: calc(
|
|
6680
|
+
width: calc(500% / 6);
|
|
6681
6681
|
}
|
|
6682
6682
|
/* Pixel */
|
|
6683
6683
|
.uk-width-small\@s {
|
|
@@ -6718,10 +6718,10 @@ ul.uk-nav-sub {
|
|
|
6718
6718
|
}
|
|
6719
6719
|
/* Thirds */
|
|
6720
6720
|
.uk-width-1-3\@m {
|
|
6721
|
-
width: calc(100%
|
|
6721
|
+
width: calc(100% / 3);
|
|
6722
6722
|
}
|
|
6723
6723
|
.uk-width-2-3\@m {
|
|
6724
|
-
width: calc(
|
|
6724
|
+
width: calc(200% / 3);
|
|
6725
6725
|
}
|
|
6726
6726
|
/* Quarters */
|
|
6727
6727
|
.uk-width-1-4\@m {
|
|
@@ -6745,10 +6745,10 @@ ul.uk-nav-sub {
|
|
|
6745
6745
|
}
|
|
6746
6746
|
/* Sixths */
|
|
6747
6747
|
.uk-width-1-6\@m {
|
|
6748
|
-
width: calc(100%
|
|
6748
|
+
width: calc(100% / 6);
|
|
6749
6749
|
}
|
|
6750
6750
|
.uk-width-5-6\@m {
|
|
6751
|
-
width: calc(
|
|
6751
|
+
width: calc(500% / 6);
|
|
6752
6752
|
}
|
|
6753
6753
|
/* Pixel */
|
|
6754
6754
|
.uk-width-small\@m {
|
|
@@ -6789,10 +6789,10 @@ ul.uk-nav-sub {
|
|
|
6789
6789
|
}
|
|
6790
6790
|
/* Thirds */
|
|
6791
6791
|
.uk-width-1-3\@l {
|
|
6792
|
-
width: calc(100%
|
|
6792
|
+
width: calc(100% / 3);
|
|
6793
6793
|
}
|
|
6794
6794
|
.uk-width-2-3\@l {
|
|
6795
|
-
width: calc(
|
|
6795
|
+
width: calc(200% / 3);
|
|
6796
6796
|
}
|
|
6797
6797
|
/* Quarters */
|
|
6798
6798
|
.uk-width-1-4\@l {
|
|
@@ -6816,10 +6816,10 @@ ul.uk-nav-sub {
|
|
|
6816
6816
|
}
|
|
6817
6817
|
/* Sixths */
|
|
6818
6818
|
.uk-width-1-6\@l {
|
|
6819
|
-
width: calc(100%
|
|
6819
|
+
width: calc(100% / 6);
|
|
6820
6820
|
}
|
|
6821
6821
|
.uk-width-5-6\@l {
|
|
6822
|
-
width: calc(
|
|
6822
|
+
width: calc(500% / 6);
|
|
6823
6823
|
}
|
|
6824
6824
|
/* Pixel */
|
|
6825
6825
|
.uk-width-small\@l {
|
|
@@ -6860,10 +6860,10 @@ ul.uk-nav-sub {
|
|
|
6860
6860
|
}
|
|
6861
6861
|
/* Thirds */
|
|
6862
6862
|
.uk-width-1-3\@xl {
|
|
6863
|
-
width: calc(100%
|
|
6863
|
+
width: calc(100% / 3);
|
|
6864
6864
|
}
|
|
6865
6865
|
.uk-width-2-3\@xl {
|
|
6866
|
-
width: calc(
|
|
6866
|
+
width: calc(200% / 3);
|
|
6867
6867
|
}
|
|
6868
6868
|
/* Quarters */
|
|
6869
6869
|
.uk-width-1-4\@xl {
|
|
@@ -6887,10 +6887,10 @@ ul.uk-nav-sub {
|
|
|
6887
6887
|
}
|
|
6888
6888
|
/* Sixths */
|
|
6889
6889
|
.uk-width-1-6\@xl {
|
|
6890
|
-
width: calc(100%
|
|
6890
|
+
width: calc(100% / 6);
|
|
6891
6891
|
}
|
|
6892
6892
|
.uk-width-5-6\@xl {
|
|
6893
|
-
width: calc(
|
|
6893
|
+
width: calc(500% / 6);
|
|
6894
6894
|
}
|
|
6895
6895
|
/* Pixel */
|
|
6896
6896
|
.uk-width-small\@xl {
|