uikit 3.15.10 → 3.15.11-dev.08224920a
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 +26 -12
- 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 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 +8 -17
- package/dist/js/uikit-core.min.js +2 -2
- package/dist/js/uikit-icons.js +2 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +8 -17
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/images/icons/crosshairs.svg +7 -0
- package/src/js/core/icon.js +1 -3
- package/src/js/core/scrollspy.js +3 -2
- package/src/js/core/svg.js +2 -10
- package/tests/breadcrumb.html +25 -19
- package/tests/comment.html +9 -9
- package/tests/drop.html +2 -2
- package/tests/dropbar.html +1 -1
- package/tests/dropdown.html +1 -1
- package/tests/filter.html +1 -1
- package/tests/form.html +40 -40
- package/tests/icon.html +4 -0
- package/tests/index.html +22 -19
- package/tests/js/index.js +3 -3
- package/tests/lightbox.html +1 -1
- package/tests/list.html +1 -1
- package/tests/nav.html +1 -1
- package/tests/navbar.html +3 -3
- package/tests/search.html +21 -21
- package/tests/slider.html +3 -3
- package/tests/slideshow.html +2 -2
- package/tests/sticky.html +1 -1
- package/tests/table.html +9 -9
- package/tests/tooltip.html +2 -2
- package/tests/utility.html +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## WIP
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add Crosshairs icon
|
|
8
|
+
|
|
9
|
+
### Removed
|
|
10
|
+
|
|
11
|
+
- Remove `focusable` option from Icon and SVG component
|
|
12
|
+
|
|
13
|
+
### Fixed
|
|
14
|
+
|
|
15
|
+
- Fix content not focusable with keyboard in Scrollspy component
|
|
16
|
+
|
|
3
17
|
## 3.15.10 (September 21, 2022)
|
|
4
18
|
|
|
5
19
|
### Fixed
|
|
@@ -981,7 +995,7 @@
|
|
|
981
995
|
### Fixed
|
|
982
996
|
|
|
983
997
|
- Fix prop observer for dataSrc option in Image component
|
|
984
|
-
- Fix ajax function supports responseType 'json' in
|
|
998
|
+
- Fix ajax function supports responseType 'json' in IE11
|
|
985
999
|
- Fix Accordion component with `multiple: true` and `collapsible: false`
|
|
986
1000
|
|
|
987
1001
|
## 3.5.3 (May 29, 2020)
|
|
@@ -1083,7 +1097,7 @@
|
|
|
1083
1097
|
- Fix Sticky component sets its width with fraction
|
|
1084
1098
|
- Fix Sticky component with `show-on-up` and `bottom` option updates correctly
|
|
1085
1099
|
- Fix Tooltip component no longer disappears on SVG shape elements
|
|
1086
|
-
- Fix regression with Modal/Offcanvas component not opening in
|
|
1100
|
+
- Fix regression with Modal/Offcanvas component not opening in IE11
|
|
1087
1101
|
|
|
1088
1102
|
## 3.4.0 (April 9, 2020)
|
|
1089
1103
|
|
|
@@ -1163,7 +1177,7 @@
|
|
|
1163
1177
|
|
|
1164
1178
|
- Fix style for breadcrumbs without last active item
|
|
1165
1179
|
- Fix infinite loop in Slider component
|
|
1166
|
-
- Fix
|
|
1180
|
+
- Fix IE11 compatibility
|
|
1167
1181
|
- Fix Spinner component in RTL mode
|
|
1168
1182
|
- Fix animating `stroke` in Parallax component when element is hidden
|
|
1169
1183
|
|
|
@@ -1322,7 +1336,7 @@
|
|
|
1322
1336
|
- Fix Modal close on bgClick behaviour
|
|
1323
1337
|
- Fix spreading event args on delegated event listeners
|
|
1324
1338
|
- Fix clicking an empty link within itself no longer closes the Drop
|
|
1325
|
-
- Fix
|
|
1339
|
+
- Fix IE11 compatibility
|
|
1326
1340
|
- Fix empty tooltips will no longer show
|
|
1327
1341
|
|
|
1328
1342
|
## 3.1.7 (July 31, 2019)
|
|
@@ -1531,7 +1545,7 @@
|
|
|
1531
1545
|
|
|
1532
1546
|
### Fixed
|
|
1533
1547
|
|
|
1534
|
-
- Fix `flex bug` mixin (
|
|
1548
|
+
- Fix `flex bug` mixin (IE11)
|
|
1535
1549
|
- Fix properly resolving css custom properties in scss
|
|
1536
1550
|
- Fix order of variable assignments in scss
|
|
1537
1551
|
- Fix background images are shown too large on retina displays in Image component
|
|
@@ -1772,11 +1786,11 @@
|
|
|
1772
1786
|
### Fixed
|
|
1773
1787
|
|
|
1774
1788
|
- Fix Filter component height during transition
|
|
1775
|
-
- Fix Filter/Sortable component in
|
|
1789
|
+
- Fix Filter/Sortable component in IE11
|
|
1776
1790
|
- Fix Overflow Auto component triggering `resize` event indefinitely
|
|
1777
1791
|
- Fix Slider/Slideshow capture slide during transition in Safari 11
|
|
1778
1792
|
- Fix Slider/Slideshow drag behavior in iOS 11.3+ (https://bugs.webkit.org/show_bug.cgi?id=184250)
|
|
1779
|
-
- Fix `toEventTargets` in
|
|
1793
|
+
- Fix `toEventTargets` in IE11
|
|
1780
1794
|
|
|
1781
1795
|
## 3.0.0 rc 8 (July 5, 2018)
|
|
1782
1796
|
|
|
@@ -1798,7 +1812,7 @@
|
|
|
1798
1812
|
|
|
1799
1813
|
### Fixed
|
|
1800
1814
|
|
|
1801
|
-
- Fix Dropbar in Navbar in
|
|
1815
|
+
- Fix Dropbar in Navbar in IE11
|
|
1802
1816
|
- Fix single components did not get exported from their modules
|
|
1803
1817
|
- Fix Lightbox reactivity
|
|
1804
1818
|
|
|
@@ -1859,7 +1873,7 @@
|
|
|
1859
1873
|
|
|
1860
1874
|
### Fixed
|
|
1861
1875
|
|
|
1862
|
-
- Fix regression in Scrollspy in
|
|
1876
|
+
- Fix regression in Scrollspy in IE11
|
|
1863
1877
|
- Fix Sass distribution
|
|
1864
1878
|
- Fix large close icon
|
|
1865
1879
|
|
|
@@ -1971,7 +1985,7 @@
|
|
|
1971
1985
|
- Fix Slider Nav initially has no state
|
|
1972
1986
|
- Fix Esc closing on Confirm and Prompt dialogs
|
|
1973
1987
|
- Fix using Grids in Slider component in Safari
|
|
1974
|
-
- Fix edge scrolling in Sortable component in
|
|
1988
|
+
- Fix edge scrolling in Sortable component in IE11
|
|
1975
1989
|
- Fix touch scrolling in Slideshow/Slider in Edge
|
|
1976
1990
|
- Fix tap event on touch devices
|
|
1977
1991
|
- Fix initial Drop positioning
|
|
@@ -2075,7 +2089,7 @@
|
|
|
2075
2089
|
- Fix Scrollspy triggering before other components have been applied at least once
|
|
2076
2090
|
- Fix Accordion title click behavior
|
|
2077
2091
|
- Fix Sortable on iOS
|
|
2078
|
-
- Fix Sticky Navbar (
|
|
2092
|
+
- Fix Sticky Navbar (IE11)
|
|
2079
2093
|
|
|
2080
2094
|
## 3.0.0 beta 34 (November 7, 2017)
|
|
2081
2095
|
|
|
@@ -2422,7 +2436,7 @@
|
|
|
2422
2436
|
|
|
2423
2437
|
- Fix deferred UIKit loading
|
|
2424
2438
|
- Fix Dropdowns not closing immediately upon hovering other navbar item in Navbar component
|
|
2425
|
-
- Fix navbar groups center left/right (
|
|
2439
|
+
- Fix navbar groups center left/right (IE11)
|
|
2426
2440
|
- Fix "sticky on up" behaviour in Sticky component
|
|
2427
2441
|
- Fix Offcanvas closing without animation
|
|
2428
2442
|
- Fix links in Notification message clickable
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.11-dev.08224920a | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|