uikit 3.14.4-dev.8a8016a73 → 3.14.4-dev.a014fa609
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 +2 -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 +14 -6
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +14 -6
- 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 +12 -4
- 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 +45 -32
- 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 +45 -32
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/js/core/drop.js +23 -22
- package/src/js/core/navbar.js +3 -1
- package/src/js/mixin/modal.js +2 -2
- package/src/js/mixin/togglable.js +11 -3
- package/src/js/util/class.js +3 -1
- package/tests/drop.html +4 -4
- package/tests/dropbar.html +10 -8
- package/tests/index.html +1 -1
- package/tests/navbar.html +21 -9
- package/tests/search.html +2 -2
- package/tests/sticky-navbar.html +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
- Add Dropbar component
|
|
8
8
|
- Add `target`, `target-x`, `target-y` and `inset` options to Drop component
|
|
9
9
|
- Add `stretch` and `bg-scroll` options to Drop component
|
|
10
|
-
- Add `shift`
|
|
10
|
+
- Add `shift` option to Drop component
|
|
11
11
|
- Add `slide` and `reveal` animations to Drop component
|
|
12
12
|
- Add `animate-out` option to Drop component
|
|
13
13
|
- Add open and close animation to toggle icon in Navbar component
|
|
@@ -29,6 +29,7 @@
|
|
|
29
29
|
- IMPORTANT: Remove `*-justify` in `pos` option from Drop and Dropdown components. Use new `stretch` option instead
|
|
30
30
|
- IMPORTANT: Remove `boundary-align` option from Drop and Dropdown components. Use new `target` option instead
|
|
31
31
|
- IMPORTANT: Change `flip` option values in Drop and Dropdown components. Use new `shift` option too
|
|
32
|
+
- IMPORTANT: Remove `display` option in Drop and Dropdown components. Use new `auto-update` option instead.
|
|
32
33
|
- IMPORTANT: Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
|
|
33
34
|
- IMPORTANT: Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
|
|
34
35
|
- IMPORTANT: Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.14.4-dev.
|
|
1
|
+
/*! UIkit 3.14.4-dev.a014fa609 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|