uikit 3.10.0 → 3.10.1
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/.eslintrc.json +0 -1
- package/CHANGELOG.md +17 -7
- package/CONTRIBUTING.md +1 -1
- package/README.md +4 -2
- package/build/.eslintrc.json +10 -1
- package/build/build.js +5 -5
- package/build/less.js +1 -2
- package/build/scss.js +1 -1
- package/dist/css/uikit-core-rtl.css +8 -5
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +8 -5
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +8 -5
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +8 -5
- 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 +5 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +2 -2
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +2 -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 +2 -2
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +3 -9
- 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 +3 -9
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +6 -2
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +5 -5
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +5 -4
- 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 +23 -22
- 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 +36 -36
- package/dist/js/uikit.min.js +1 -1
- package/package.json +3 -3
- package/src/js/api/component.js +3 -3
- package/src/js/api/state.js +3 -3
- package/src/js/components/slider-parallax.js +1 -7
- package/src/js/components/slideshow.js +4 -0
- package/src/js/components/tooltip.js +2 -1
- package/src/js/core/navbar.js +1 -1
- package/src/js/core/sticky.js +1 -1
- package/src/js/core/toggle.js +4 -3
- package/src/js/mixin/animate.js +4 -4
- package/src/js/mixin/internal/slideshow-animations.js +1 -1
- package/src/js/mixin/parallax.js +1 -1
- package/src/js/mixin/position.js +3 -3
- package/src/js/util/dom.js +3 -3
- package/src/js/util/lang.js +1 -1
- package/src/js/util/viewport.js +3 -3
- package/src/less/components/cover.less +4 -2
- package/src/less/components/divider.less +1 -1
- package/src/less/components/utility.less +2 -1
- package/src/scss/components/cover.scss +4 -2
- package/src/scss/components/divider.scss +1 -1
- package/src/scss/components/utility.scss +2 -1
- package/tests/base.html +12 -12
- package/tests/button.html +1 -1
- package/tests/cover.html +5 -5
- package/tests/drop.html +2 -2
- package/tests/dropdown.html +1 -1
- package/tests/flex.html +1 -1
- package/tests/grid-masonry.html +1 -1
- package/tests/grid-parallax.html +1 -1
- package/tests/grid.html +1 -1
- package/tests/height.html +2 -2
- package/tests/js/index.js +3 -8
- package/tests/margin.html +1 -1
- package/tests/modal.html +2 -2
- package/tests/navbar.html +2 -2
- package/tests/padding.html +1 -1
- package/tests/parallax.html +1 -1
- package/tests/slider.html +1 -1
- package/tests/slideshow.html +2 -2
- package/tests/sticky.html +2 -2
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/utility.html +1 -1
- package/tests/video.html +3 -3
- package/tests/width.html +1 -1
package/dist/css/uikit-rtl.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.10.
|
|
1
|
+
/*! UIkit 3.10.1 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -737,7 +737,7 @@ a.uk-link-reset,
|
|
|
737
737
|
/* Vertical
|
|
738
738
|
========================================================================== */
|
|
739
739
|
.uk-divider-vertical {
|
|
740
|
-
width:
|
|
740
|
+
width: max-content;
|
|
741
741
|
height: 100px;
|
|
742
742
|
margin-right: auto;
|
|
743
743
|
margin-left: auto;
|
|
@@ -7546,7 +7546,8 @@ td.uk-text-break {
|
|
|
7546
7546
|
* is absolute positioned or if the container has a height
|
|
7547
7547
|
*/
|
|
7548
7548
|
/* 1 */
|
|
7549
|
-
[uk-cover]
|
|
7549
|
+
[uk-cover],
|
|
7550
|
+
[data-uk-cover] {
|
|
7550
7551
|
/* 2 */
|
|
7551
7552
|
max-width: none;
|
|
7552
7553
|
/* 3 */
|
|
@@ -7557,7 +7558,8 @@ td.uk-text-break {
|
|
|
7557
7558
|
--uk-position-translate-y: -50%;
|
|
7558
7559
|
transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
|
|
7559
7560
|
}
|
|
7560
|
-
iframe
|
|
7561
|
+
iframe[uk-cover],
|
|
7562
|
+
iframe[data-uk-cover] {
|
|
7561
7563
|
pointer-events: none;
|
|
7562
7564
|
}
|
|
7563
7565
|
/* Container
|
|
@@ -8020,7 +8022,8 @@ iframe.uk-cover {
|
|
|
8020
8022
|
/*
|
|
8021
8023
|
* Fix initial iframe width. Without the viewport is expanded on iOS devices
|
|
8022
8024
|
*/
|
|
8023
|
-
[uk-responsive]
|
|
8025
|
+
[uk-responsive],
|
|
8026
|
+
[data-uk-responsive] {
|
|
8024
8027
|
max-width: 100%;
|
|
8025
8028
|
}
|
|
8026
8029
|
/* Border
|