uikit 3.15.19-dev.ec3157842 → 3.15.20-dev.7dfc72a88
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 +16 -2
- package/build/util.js +23 -21
- package/dist/css/uikit-core-rtl.css +6 -3
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +6 -3
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +6 -3
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +6 -3
- 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 +2 -2
- 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 +15 -18
- 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 +22 -32
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/js/components/sortable.js +1 -1
- package/src/js/core/accordion.js +6 -5
- package/src/js/core/img.js +1 -5
- package/src/js/core/sticky.js +2 -1
- package/src/js/core/svg.js +1 -1
- package/src/js/mixin/slider.js +5 -12
- package/src/js/util/dom.js +2 -2
- package/src/js/util/selector.js +2 -2
- package/src/js/util/viewport.js +1 -1
- package/src/less/components/sticky.less +4 -1
- package/src/less/components/utility.less +1 -1
- package/src/scss/components/sticky.scss +4 -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
|
@@ -2,10 +2,24 @@
|
|
|
2
2
|
|
|
3
3
|
## WIP
|
|
4
4
|
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- Fix disable native position sticky in Sticky component if parents `overflow` is not set to visible
|
|
8
|
+
|
|
9
|
+
## 3.15.19 (December 20, 2022)
|
|
10
|
+
|
|
5
11
|
### Changed
|
|
6
12
|
|
|
7
13
|
- `removeAttr` no longer accepts a space separated list of attribute names
|
|
8
14
|
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Fix stacking context if using `position: sticky` in Sticky component
|
|
18
|
+
- Fix height calculation for `box-sizing: border-box` on Accordion content
|
|
19
|
+
- Fix error in console if image can't be loaded in Svg component with `stroke-animation: true`
|
|
20
|
+
- Fix `scrollIntoView()` no longer considers elements with `position: clip` as scrollable parents
|
|
21
|
+
- Fix Slider shows not centered initially with `center: true`
|
|
22
|
+
|
|
9
23
|
## 3.15.18 (December 13, 2022)
|
|
10
24
|
|
|
11
25
|
### Fixed
|
|
@@ -25,7 +39,7 @@
|
|
|
25
39
|
|
|
26
40
|
### Changed
|
|
27
41
|
|
|
28
|
-
- Add `will-change` css property to Parallax elements
|
|
42
|
+
- Add `will-change` css property to Parallax elements
|
|
29
43
|
|
|
30
44
|
### Fixed
|
|
31
45
|
|
|
@@ -47,7 +61,7 @@
|
|
|
47
61
|
- Fix Scroll and Scrollspy Nav components handle same site links only
|
|
48
62
|
- Fix Drop positioning within not scrollable viewport
|
|
49
63
|
- Fix overscroll behavior in Dropbar
|
|
50
|
-
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
64
|
+
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
51
65
|
|
|
52
66
|
## 3.15.14 (November 21, 2022)
|
|
53
67
|
|
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.
|
|
1
|
+
/*! UIkit 3.15.20-dev.7dfc72a88 | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3736,19 +3736,22 @@ select.uk-form-width-xsmall {
|
|
|
3736
3736
|
========================================================================== */
|
|
3737
3737
|
/*
|
|
3738
3738
|
* 1. Create position context so it's t the same like when fixed.
|
|
3739
|
+
* 2. Create stacking context already when not sticky to have the same context
|
|
3740
|
+
* for position set to `sticky` and `relative`
|
|
3739
3741
|
* 2. More robust if padding and border are used and the sticky height is transitioned
|
|
3740
3742
|
*/
|
|
3741
3743
|
.uk-sticky {
|
|
3742
3744
|
/* 1 */
|
|
3743
3745
|
position: relative;
|
|
3744
3746
|
/* 2 */
|
|
3747
|
+
z-index: 980;
|
|
3748
|
+
/* 3 */
|
|
3745
3749
|
box-sizing: border-box;
|
|
3746
3750
|
}
|
|
3747
3751
|
/*
|
|
3748
3752
|
* 1. Force new layer to resolve frame rate issues on devices with lower frame rates
|
|
3749
3753
|
*/
|
|
3750
3754
|
.uk-sticky-fixed {
|
|
3751
|
-
z-index: 980;
|
|
3752
3755
|
margin: 0 !important;
|
|
3753
3756
|
/* 1 */
|
|
3754
3757
|
-webkit-backface-visibility: hidden;
|
|
@@ -7749,7 +7752,7 @@ iframe[data-uk-cover] {
|
|
|
7749
7752
|
.uk-object-scale-down {
|
|
7750
7753
|
object-fit: scale-down;
|
|
7751
7754
|
}
|
|
7752
|
-
/*
|
|
7755
|
+
/*
|
|
7753
7756
|
* Position
|
|
7754
7757
|
*/
|
|
7755
7758
|
.uk-object-top-right {
|