uikit 3.15.1-dev.a99898921 → 3.15.2-dev.07fe5036e
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 -0
- package/README.md +1 -1
- 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 +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +1 -2
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -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 +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 +1 -1
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- 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 +64 -56
- 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 +64 -57
- package/dist/js/uikit.min.js +2 -2
- package/package.json +4 -4
- package/src/js/components/lightbox-panel.js +0 -1
- package/src/js/core/drop.js +21 -8
- package/src/js/core/navbar.js +16 -28
- package/src/js/core/scroll.js +1 -1
- package/src/js/core/video.js +5 -0
- package/src/js/util/position.js +4 -1
- package/tests/drop.html +36 -3
- package/tests/navbar.html +49 -31
- package/tests/position.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## WIP
|
|
4
4
|
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add `boundary-x` and `boundary-y` options to Drop component
|
|
8
|
+
|
|
9
|
+
## Fixed
|
|
10
|
+
|
|
11
|
+
- Remove click event listener in Scroll component correctly
|
|
12
|
+
|
|
13
|
+
## 3.15.1 (July 15, 2022)
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Video component will set `allow="autoplay"` on iframe elements
|
|
18
|
+
- Allow additional props to be set on Navbar component to initialize its Drops with
|
|
19
|
+
|
|
5
20
|
### Fixed
|
|
6
21
|
|
|
7
22
|
- Fix Navbar component resize does not trigger reposition of dropbar
|
|
23
|
+
- Fix register scroll listener as passive
|
|
8
24
|
|
|
9
25
|
## 3.15.0 (July 11, 2022)
|
|
10
26
|
|
package/README.md
CHANGED
|
@@ -32,7 +32,7 @@ You have the following options to get UIkit:
|
|
|
32
32
|
- Install with [npm](https://npmjs.com) to get all source files as they are available on GitHub: ```npm install uikit```
|
|
33
33
|
- Install with [yarn](https://yarnpkg.com/) to get all source files as they are available on GitHub: ```yarn add uikit```
|
|
34
34
|
- Directly load UIkit from [jsDelivr](https://www.jsdelivr.com): https://www.jsdelivr.com/package/npm/uikit
|
|
35
|
-
- Clone the repo to get all source files including build scripts: `git clone git
|
|
35
|
+
- Clone the repo to get all source files including build scripts: `git clone git@github.com:uikit/uikit.git`
|
|
36
36
|
|
|
37
37
|
## Developers
|
|
38
38
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.2-dev.07fe5036e | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|