uikit 3.15.11 → 3.15.12-dev.0c0d42cdf
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 +20 -6
- package/build/util.js +20 -17
- package/dist/css/uikit-core-rtl.css +1 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +1 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +1 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +1 -1
- 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 +2 -5
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +7 -4
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +7 -4
- 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 +10 -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 +10 -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 +2 -5
- 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 +18 -13
- 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 +34 -20
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/api/boot.js +3 -1
- package/src/js/components/lightbox-panel.js +5 -2
- package/src/js/components/slider-parallax.js +9 -0
- package/src/js/core/margin.js +2 -0
- package/src/js/core/sticky.js +6 -7
- package/src/js/core/video.js +4 -3
- package/src/js/mixin/internal/animate-slide.js +1 -4
- package/src/js/util/env.js +1 -3
- package/tests/navbar.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add `uikit:init` event triggered on document before components initialize
|
|
8
|
+
|
|
9
|
+
### Fixed
|
|
10
|
+
|
|
11
|
+
- Fix placeholder has no width if Sticky element's width depends on its content
|
|
12
|
+
- Fix Slider/Slideshow Parallax respect `media` option
|
|
13
|
+
- Fix Video component with `autoplay: true` no longer resumes autoplay on scroll after being paused
|
|
14
|
+
- Fix width/height passed through `attrs` to video item in Lightbox component
|
|
15
|
+
- Fix regression in Sortable component (elements are hidden after sorting)
|
|
16
|
+
|
|
3
17
|
## 3.15.11 (October 25, 2022)
|
|
4
18
|
|
|
5
19
|
### Added
|
|
@@ -44,7 +58,7 @@
|
|
|
44
58
|
|
|
45
59
|
### Changed
|
|
46
60
|
|
|
47
|
-
- Improve Accordion component keeps toggle in view when toggling
|
|
61
|
+
- Improve Accordion component keeps toggle in view when toggling
|
|
48
62
|
|
|
49
63
|
### Fixed
|
|
50
64
|
|
|
@@ -85,7 +99,7 @@
|
|
|
85
99
|
|
|
86
100
|
### Fixed
|
|
87
101
|
|
|
88
|
-
- Fix Slideshow no longer completely resets upon adding slides
|
|
102
|
+
- Fix Slideshow no longer completely resets upon adding slides
|
|
89
103
|
|
|
90
104
|
## 3.15.2 (August 8, 2022)
|
|
91
105
|
|
|
@@ -95,7 +109,7 @@
|
|
|
95
109
|
|
|
96
110
|
### Fixed
|
|
97
111
|
|
|
98
|
-
- Remove click event listener in Scroll component correctly
|
|
112
|
+
- Remove click event listener in Scroll component correctly
|
|
99
113
|
|
|
100
114
|
## 3.15.1 (July 15, 2022)
|
|
101
115
|
|
|
@@ -114,8 +128,8 @@
|
|
|
114
128
|
### Added
|
|
115
129
|
|
|
116
130
|
- Add Dropbar component
|
|
117
|
-
- Add `target`, `target-x`, `target-y` and `inset` options to Drop component
|
|
118
|
-
- Add `stretch` and `bg-scroll` options to Drop component
|
|
131
|
+
- Add `target`, `target-x`, `target-y` and `inset` options to Drop component
|
|
132
|
+
- Add `stretch` and `bg-scroll` options to Drop component
|
|
119
133
|
- Add `shift` option to Drop component
|
|
120
134
|
- Add `slide` and `reveal` animations to Drop component
|
|
121
135
|
- Add `animate-out` option to Drop component
|
|
@@ -192,7 +206,7 @@
|
|
|
192
206
|
|
|
193
207
|
- Add `box-shadow` to `toggleHeight()` hide properties
|
|
194
208
|
- Add adaptive velocity to Alert and Accordion components
|
|
195
|
-
|
|
209
|
+
|
|
196
210
|
### Changed
|
|
197
211
|
|
|
198
212
|
- Set `transition` option to `ease` by default in Togglable mixin
|
package/build/util.js
CHANGED
|
@@ -110,22 +110,25 @@ export async function compile(file, dest, { external, globals, name, aliases, re
|
|
|
110
110
|
},
|
|
111
111
|
},
|
|
112
112
|
}),
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
113
|
+
debug
|
|
114
|
+
? undefined
|
|
115
|
+
: babel({
|
|
116
|
+
presets: [
|
|
117
|
+
[
|
|
118
|
+
'@babel/preset-env',
|
|
119
|
+
{
|
|
120
|
+
loose: true,
|
|
121
|
+
targets: {
|
|
122
|
+
safari: '12',
|
|
123
|
+
},
|
|
124
|
+
},
|
|
125
|
+
],
|
|
126
|
+
],
|
|
127
|
+
extensions: ['.js'],
|
|
128
|
+
babelHelpers: 'bundled',
|
|
129
|
+
retainLines: true,
|
|
130
|
+
compact: false,
|
|
131
|
+
}),
|
|
129
132
|
modify({
|
|
130
133
|
find: /(>)\\n\s+|\\n\s+(<)/,
|
|
131
134
|
replace: (m, m1, m2) => `${m1 || ''} ${m2 || ''}`,
|
|
@@ -192,7 +195,7 @@ export async function compile(file, dest, { external, globals, name, aliases, re
|
|
|
192
195
|
}
|
|
193
196
|
});
|
|
194
197
|
|
|
195
|
-
watcher.close();
|
|
198
|
+
await watcher.close();
|
|
196
199
|
}
|
|
197
200
|
}
|
|
198
201
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.12-dev.0c0d42cdf | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|