uikit 3.9.5-dev.ce77459c6 → 3.10.1-dev.2a182d8f9
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 -2
- package/build/build.js +5 -5
- package/build/less.js +30 -11
- package/build/publishDev.js +2 -1
- package/build/util.js +1 -20
- package/dist/css/uikit-core-rtl.css +15 -7
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +12 -4
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +15 -7
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +12 -4
- 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 +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 +5 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +2 -2
- 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 +117 -53
- 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 +122 -54
- package/dist/js/uikit.min.js +1 -1
- package/package.json +9 -11
- package/src/js/components/slideshow.js +4 -0
- package/src/js/components/sortable.js +1 -1
- package/src/js/core/img.js +93 -47
- package/src/js/util/dom.js +2 -5
- package/src/js/util/selector.js +4 -2
- package/src/less/components/list.less +1 -1
- package/src/less/components/search.less +9 -6
- package/src/less/components/utility.less +3 -2
- package/src/less/components/width.less +7 -0
- package/src/scss/components/list.scss +1 -1
- package/src/scss/components/search.scss +9 -6
- package/src/scss/components/utility.scss +3 -2
- package/src/scss/components/width.scss +7 -0
- package/src/scss/variables-theme.scss +4 -0
- package/src/scss/variables.scss +4 -0
- package/tests/image.html +40 -14
- package/tests/search.html +1 -1
package/dist/css/uikit-rtl.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.
|
|
1
|
+
/*! UIkit 3.10.1-dev.2a182d8f9 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -659,7 +659,7 @@ a.uk-link-reset,
|
|
|
659
659
|
content: "";
|
|
660
660
|
/* 1 */
|
|
661
661
|
position: absolute;
|
|
662
|
-
top: calc(50% - ((0.2px + 0.05em) / 2));
|
|
662
|
+
top: calc(50% - (calc(0.2px + 0.05em) / 2));
|
|
663
663
|
/* 2 */
|
|
664
664
|
width: 2000px;
|
|
665
665
|
/* 3 */
|
|
@@ -784,7 +784,7 @@ a.uk-link-reset,
|
|
|
784
784
|
counter-increment: decimal;
|
|
785
785
|
}
|
|
786
786
|
[class*='uk-list'] > ::before {
|
|
787
|
-
content:
|
|
787
|
+
content: "";
|
|
788
788
|
position: relative;
|
|
789
789
|
right: -30px;
|
|
790
790
|
width: 30px;
|
|
@@ -7117,6 +7117,14 @@ ul.uk-nav-sub {
|
|
|
7117
7117
|
min-width: 1px;
|
|
7118
7118
|
}
|
|
7119
7119
|
}
|
|
7120
|
+
/* Intrinsic Widths
|
|
7121
|
+
========================================================================== */
|
|
7122
|
+
.uk-width-max-content {
|
|
7123
|
+
width: max-content;
|
|
7124
|
+
}
|
|
7125
|
+
.uk-width-min-content {
|
|
7126
|
+
width: min-content;
|
|
7127
|
+
}
|
|
7120
7128
|
/* ========================================================================
|
|
7121
7129
|
Component: Height
|
|
7122
7130
|
========================================================================== */
|
|
@@ -7545,7 +7553,7 @@ td.uk-text-break {
|
|
|
7545
7553
|
position: absolute;
|
|
7546
7554
|
right: 50%;
|
|
7547
7555
|
top: 50%;
|
|
7548
|
-
--uk-position-translate-x:
|
|
7556
|
+
--uk-position-translate-x: 50%;
|
|
7549
7557
|
--uk-position-translate-y: -50%;
|
|
7550
7558
|
transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
|
|
7551
7559
|
}
|
|
@@ -8080,7 +8088,7 @@ iframe.uk-cover {
|
|
|
8080
8088
|
vertical-align: middle;
|
|
8081
8089
|
}
|
|
8082
8090
|
.uk-box-shadow-bottom::after {
|
|
8083
|
-
content:
|
|
8091
|
+
content: "";
|
|
8084
8092
|
/* 1 */
|
|
8085
8093
|
position: absolute;
|
|
8086
8094
|
bottom: -30px;
|
|
@@ -8914,7 +8922,7 @@ iframe.uk-cover {
|
|
|
8914
8922
|
.uk-position-center {
|
|
8915
8923
|
top: calc(50% - var(--uk-position-margin-offset));
|
|
8916
8924
|
right: calc(50% - var(--uk-position-margin-offset));
|
|
8917
|
-
--uk-position-translate-x:
|
|
8925
|
+
--uk-position-translate-x: 50%;
|
|
8918
8926
|
--uk-position-translate-y: -50%;
|
|
8919
8927
|
transform: translate(var(--uk-position-translate-x), var(--uk-position-translate-y));
|
|
8920
8928
|
/* 1 */
|
|
@@ -8945,7 +8953,7 @@ iframe.uk-cover {
|
|
|
8945
8953
|
.uk-position-top-center,
|
|
8946
8954
|
.uk-position-bottom-center {
|
|
8947
8955
|
right: calc(50% - var(--uk-position-margin-offset));
|
|
8948
|
-
--uk-position-translate-x:
|
|
8956
|
+
--uk-position-translate-x: 50%;
|
|
8949
8957
|
transform: translate(var(--uk-position-translate-x), 0);
|
|
8950
8958
|
/* 1 */
|
|
8951
8959
|
width: max-content;
|