uikit 3.10.1-dev.2a182d8f9 → 3.10.1-dev.6e87964a0
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 +8 -7
- package/CONTRIBUTING.md +1 -1
- package/README.md +2 -2
- package/build/.eslintrc.json +10 -1
- package/build/less.js +1 -2
- package/build/scss.js +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 +2 -2
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +2 -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 +2 -2
- 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 +2 -2
- 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 +3 -2
- 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 +6 -5
- 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 +9 -7
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/tooltip.js +2 -1
- package/src/js/core/toggle.js +4 -3
- package/src/js/mixin/internal/slideshow-animations.js +1 -1
- package/tests/button.html +1 -1
- package/tests/cover.html +5 -5
- package/tests/drop.html +2 -2
- package/tests/dropdown.html +1 -1
- package/tests/flex.html +1 -1
- package/tests/grid-masonry.html +1 -1
- package/tests/grid-parallax.html +1 -1
- package/tests/grid.html +1 -1
- package/tests/height.html +2 -2
- package/tests/margin.html +1 -1
- package/tests/modal.html +2 -2
- package/tests/navbar.html +2 -2
- package/tests/padding.html +1 -1
- package/tests/parallax.html +1 -1
- package/tests/slider.html +1 -1
- package/tests/slideshow.html +2 -2
- package/tests/sticky.html +2 -2
- package/tests/switcher.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/utility.html +1 -1
- package/tests/video.html +3 -3
- package/tests/width.html +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
### Fixed
|
|
6
6
|
|
|
7
7
|
- Fix Slideshow component no longer throws if items list does not exist
|
|
8
|
+
- Fix space key no longer triggers Toggle on <input> elements
|
|
8
9
|
|
|
9
10
|
## 3.10.0 (January 12, 2022)
|
|
10
11
|
|
|
@@ -44,7 +45,7 @@
|
|
|
44
45
|
|
|
45
46
|
### Fixed
|
|
46
47
|
|
|
47
|
-
- Fix build scripts for
|
|
48
|
+
- Fix build scripts for Windows users
|
|
48
49
|
- Fix css in Leader component
|
|
49
50
|
- Fix division deprecation warnings in Sass source
|
|
50
51
|
|
|
@@ -69,7 +70,7 @@
|
|
|
69
70
|
### Changed
|
|
70
71
|
|
|
71
72
|
- Make padding large a little bigger on small devices
|
|
72
|
-
- Change logo color to emphasis
|
|
73
|
+
- Change logo color to 'emphasis'
|
|
73
74
|
|
|
74
75
|
### Fixed
|
|
75
76
|
|
|
@@ -444,7 +445,7 @@
|
|
|
444
445
|
|
|
445
446
|
### Changed
|
|
446
447
|
|
|
447
|
-
- Sorting starts after traversing half the
|
|
448
|
+
- Sorting starts after traversing half the item's height/width in Sortable component
|
|
448
449
|
|
|
449
450
|
## 3.5.12 (December 7, 2020)
|
|
450
451
|
|
|
@@ -513,7 +514,7 @@
|
|
|
513
514
|
|
|
514
515
|
### Changed
|
|
515
516
|
|
|
516
|
-
- Sticky component uses window.Date instead of window.performance
|
|
517
|
+
- Sticky component uses 'window.Date' instead of 'window.performance'
|
|
517
518
|
- Sticky component with sticky-on-up no longer hides when Dropdown shows
|
|
518
519
|
|
|
519
520
|
### Fixed
|
|
@@ -800,7 +801,7 @@
|
|
|
800
801
|
|
|
801
802
|
### Added
|
|
802
803
|
|
|
803
|
-
- Parallax, Scroll, Scrollspy Nav components work inside
|
|
804
|
+
- Parallax, Scroll, Scrollspy Nav components work inside scrollable container
|
|
804
805
|
- Expose `scrollIntoView` utility function
|
|
805
806
|
|
|
806
807
|
### Fixed
|
|
@@ -1548,7 +1549,7 @@
|
|
|
1548
1549
|
|
|
1549
1550
|
### Added
|
|
1550
1551
|
|
|
1551
|
-
- Add support to center elements outside
|
|
1552
|
+
- Add support to center elements outside a container to Position component
|
|
1552
1553
|
|
|
1553
1554
|
### Changed
|
|
1554
1555
|
|
|
@@ -1955,7 +1956,7 @@
|
|
|
1955
1956
|
|
|
1956
1957
|
### Changed
|
|
1957
1958
|
|
|
1958
|
-
- IMPORTANT: Offcanvas requires
|
|
1959
|
+
- IMPORTANT: Offcanvas requires wrapping page in extra div
|
|
1959
1960
|
- Refactored Offcanvas component
|
|
1960
1961
|
- Update Instagram, Tumblr and Vimeo icons
|
|
1961
1962
|
- Component Constructor initializes multiple components at once
|
package/CONTRIBUTING.md
CHANGED
|
@@ -83,7 +83,7 @@ UIkit adapts the [Vue's commit convention](https://github.com/vuejs/vue/blob/dev
|
|
|
83
83
|
- `fix:` A bug fix
|
|
84
84
|
- `perf:` A code change that improves performance
|
|
85
85
|
- `refactor:` A code change that neither fixes a bug nor adds a feature
|
|
86
|
-
- `style:` Changes that do not affect the meaning of the code (white-space, formatting, etc)
|
|
86
|
+
- `style:` Changes that do not affect the meaning of the code (white-space, formatting, etc.)
|
|
87
87
|
- `test:` Adding missing tests or correcting existing tests
|
|
88
88
|
|
|
89
89
|
## Versioning
|
package/README.md
CHANGED
|
@@ -51,8 +51,8 @@ UIkit is maintained by using the [Semantic Versioning Specification (SemVer)](ht
|
|
|
51
51
|
## Browser Support
|
|
52
52
|
|
|
53
53
|
|  |  |  |  |  |
|
|
54
|
-
|
|
55
|
-
| Latest ✔
|
|
54
|
+
|-------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------|----------------------------------------------------------------------------------|-------------------------------------------------------------------------------------|
|
|
55
|
+
| Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |
|
|
56
56
|
|
|
57
57
|
Tested With<br>[](https://www.browserstack.com)
|
|
58
58
|
|
package/build/.eslintrc.json
CHANGED
package/build/less.js
CHANGED
package/build/scss.js
CHANGED
|
@@ -236,7 +236,7 @@ async function getVariablesFromFile(file, data) {
|
|
|
236
236
|
|
|
237
237
|
while (match) {
|
|
238
238
|
|
|
239
|
-
/* check if variable is
|
|
239
|
+
/* check if variable is a background icon, if so replace it directly by the SVG */
|
|
240
240
|
if (match[0].indexOf('../../images/backgrounds') >= 0) {
|
|
241
241
|
|
|
242
242
|
const iconregex = /(\$[\w-]+)\s*:\s*"\.\.\/\.\.\/images\/backgrounds\/([\w./-]+)" !default;/g;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.10.1-dev.
|
|
1
|
+
/*! UIkit 3.10.1-dev.6e87964a0 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|