uikit 3.15.19-dev.818a491d5 → 3.15.19-dev.d90b15724
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 +3 -2
- package/build/util.js +23 -21
- package/dist/css/uikit-core-rtl.css +2 -2
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +2 -2
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +2 -2
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +2 -2
- 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 +7 -14
- package/dist/js/components/lightbox-panel.min.js +2 -2
- package/dist/js/components/lightbox.js +7 -14
- package/dist/js/components/lightbox.min.js +2 -2
- 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 +7 -14
- package/dist/js/components/slider.min.js +2 -2
- 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 +7 -14
- package/dist/js/components/slideshow.min.js +2 -2
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +2 -2
- 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 +2 -2
- package/dist/js/uikit-core.js +2 -2
- package/dist/js/uikit-core.min.js +2 -2
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +8 -15
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/js/mixin/slider.js +5 -12
- package/src/less/components/utility.less +1 -1
- package/src/scss/components/utility.scss +1 -1
- package/tests/dropbar.html +1 -1
- package/tests/index.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
- Fix height calculation for `box-sizing: border-box` on Accordion content
|
|
9
9
|
- Fix error in console if image can't be loaded in Svg component with `stroke-animation: true`
|
|
10
10
|
- Fix `scrollIntoView()` no longer considers elements with `position: clip` as scrollable parents
|
|
11
|
+
- Fix Slider shows not centered initially with `center: true`
|
|
11
12
|
|
|
12
13
|
### Changed
|
|
13
14
|
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
|
|
33
34
|
### Changed
|
|
34
35
|
|
|
35
|
-
- Add `will-change` css property to Parallax elements
|
|
36
|
+
- Add `will-change` css property to Parallax elements
|
|
36
37
|
|
|
37
38
|
### Fixed
|
|
38
39
|
|
|
@@ -54,7 +55,7 @@
|
|
|
54
55
|
- Fix Scroll and Scrollspy Nav components handle same site links only
|
|
55
56
|
- Fix Drop positioning within not scrollable viewport
|
|
56
57
|
- Fix overscroll behavior in Dropbar
|
|
57
|
-
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
58
|
+
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
58
59
|
|
|
59
60
|
## 3.15.14 (November 21, 2022)
|
|
60
61
|
|
package/build/util.js
CHANGED
|
@@ -110,28 +110,30 @@ export async function compile(file, dest, { external, globals, name, aliases, re
|
|
|
110
110
|
},
|
|
111
111
|
},
|
|
112
112
|
}),
|
|
113
|
-
debug
|
|
114
|
-
?
|
|
115
|
-
:
|
|
116
|
-
|
|
117
|
-
[
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
113
|
+
...(debug
|
|
114
|
+
? []
|
|
115
|
+
: [
|
|
116
|
+
babel({
|
|
117
|
+
presets: [
|
|
118
|
+
[
|
|
119
|
+
'@babel/preset-env',
|
|
120
|
+
{
|
|
121
|
+
loose: true,
|
|
122
|
+
targets: { safari: '12' },
|
|
123
|
+
bugfixes: true,
|
|
124
|
+
},
|
|
125
|
+
],
|
|
124
126
|
],
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
127
|
+
extensions: ['.js'],
|
|
128
|
+
babelHelpers: 'bundled',
|
|
129
|
+
retainLines: true,
|
|
130
|
+
compact: false,
|
|
131
|
+
}),
|
|
132
|
+
modify({
|
|
133
|
+
find: /(>)\n\s+|\n\s+(<)/,
|
|
134
|
+
replace: (m, m1, m2) => `${m1 || ''} ${m2 || ''}`,
|
|
135
|
+
}),
|
|
136
|
+
]),
|
|
135
137
|
],
|
|
136
138
|
};
|
|
137
139
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.19-dev.
|
|
1
|
+
/*! UIkit 3.15.19-dev.d90b15724 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -7752,7 +7752,7 @@ iframe[data-uk-cover] {
|
|
|
7752
7752
|
.uk-object-scale-down {
|
|
7753
7753
|
object-fit: scale-down;
|
|
7754
7754
|
}
|
|
7755
|
-
/*
|
|
7755
|
+
/*
|
|
7756
7756
|
* Position
|
|
7757
7757
|
*/
|
|
7758
7758
|
.uk-object-top-right {
|