uikit 3.15.10 → 3.15.11-dev.536b75ef2
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 +29 -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 +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 +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 +5 -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 +52 -53
- 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 +57 -55
- package/dist/js/uikit.min.js +2 -2
- package/package.json +1 -1
- package/src/images/icons/crosshairs.svg +7 -0
- package/src/js/api/state.js +13 -6
- package/src/js/components/lightbox.js +1 -1
- package/src/js/components/tooltip.js +4 -1
- package/src/js/core/drop.js +5 -1
- 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/src/js/core/switcher.js +16 -23
- package/src/js/core/toggle.js +1 -4
- package/src/js/util/position.js +11 -6
- 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,22 @@
|
|
|
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
|
+
- Fix removing Lightbox causes JavaScript error
|
|
17
|
+
- Fix cases where Switcher component wouldn't correctly initialize in Chrome
|
|
18
|
+
- Fix Drop component positioning if target and element are not within same scroll parent
|
|
19
|
+
|
|
3
20
|
## 3.15.10 (September 21, 2022)
|
|
4
21
|
|
|
5
22
|
### Fixed
|
|
@@ -981,7 +998,7 @@
|
|
|
981
998
|
### Fixed
|
|
982
999
|
|
|
983
1000
|
- Fix prop observer for dataSrc option in Image component
|
|
984
|
-
- Fix ajax function supports responseType 'json' in
|
|
1001
|
+
- Fix ajax function supports responseType 'json' in IE11
|
|
985
1002
|
- Fix Accordion component with `multiple: true` and `collapsible: false`
|
|
986
1003
|
|
|
987
1004
|
## 3.5.3 (May 29, 2020)
|
|
@@ -1083,7 +1100,7 @@
|
|
|
1083
1100
|
- Fix Sticky component sets its width with fraction
|
|
1084
1101
|
- Fix Sticky component with `show-on-up` and `bottom` option updates correctly
|
|
1085
1102
|
- Fix Tooltip component no longer disappears on SVG shape elements
|
|
1086
|
-
- Fix regression with Modal/Offcanvas component not opening in
|
|
1103
|
+
- Fix regression with Modal/Offcanvas component not opening in IE11
|
|
1087
1104
|
|
|
1088
1105
|
## 3.4.0 (April 9, 2020)
|
|
1089
1106
|
|
|
@@ -1163,7 +1180,7 @@
|
|
|
1163
1180
|
|
|
1164
1181
|
- Fix style for breadcrumbs without last active item
|
|
1165
1182
|
- Fix infinite loop in Slider component
|
|
1166
|
-
- Fix
|
|
1183
|
+
- Fix IE11 compatibility
|
|
1167
1184
|
- Fix Spinner component in RTL mode
|
|
1168
1185
|
- Fix animating `stroke` in Parallax component when element is hidden
|
|
1169
1186
|
|
|
@@ -1322,7 +1339,7 @@
|
|
|
1322
1339
|
- Fix Modal close on bgClick behaviour
|
|
1323
1340
|
- Fix spreading event args on delegated event listeners
|
|
1324
1341
|
- Fix clicking an empty link within itself no longer closes the Drop
|
|
1325
|
-
- Fix
|
|
1342
|
+
- Fix IE11 compatibility
|
|
1326
1343
|
- Fix empty tooltips will no longer show
|
|
1327
1344
|
|
|
1328
1345
|
## 3.1.7 (July 31, 2019)
|
|
@@ -1531,7 +1548,7 @@
|
|
|
1531
1548
|
|
|
1532
1549
|
### Fixed
|
|
1533
1550
|
|
|
1534
|
-
- Fix `flex bug` mixin (
|
|
1551
|
+
- Fix `flex bug` mixin (IE11)
|
|
1535
1552
|
- Fix properly resolving css custom properties in scss
|
|
1536
1553
|
- Fix order of variable assignments in scss
|
|
1537
1554
|
- Fix background images are shown too large on retina displays in Image component
|
|
@@ -1772,11 +1789,11 @@
|
|
|
1772
1789
|
### Fixed
|
|
1773
1790
|
|
|
1774
1791
|
- Fix Filter component height during transition
|
|
1775
|
-
- Fix Filter/Sortable component in
|
|
1792
|
+
- Fix Filter/Sortable component in IE11
|
|
1776
1793
|
- Fix Overflow Auto component triggering `resize` event indefinitely
|
|
1777
1794
|
- Fix Slider/Slideshow capture slide during transition in Safari 11
|
|
1778
1795
|
- Fix Slider/Slideshow drag behavior in iOS 11.3+ (https://bugs.webkit.org/show_bug.cgi?id=184250)
|
|
1779
|
-
- Fix `toEventTargets` in
|
|
1796
|
+
- Fix `toEventTargets` in IE11
|
|
1780
1797
|
|
|
1781
1798
|
## 3.0.0 rc 8 (July 5, 2018)
|
|
1782
1799
|
|
|
@@ -1798,7 +1815,7 @@
|
|
|
1798
1815
|
|
|
1799
1816
|
### Fixed
|
|
1800
1817
|
|
|
1801
|
-
- Fix Dropbar in Navbar in
|
|
1818
|
+
- Fix Dropbar in Navbar in IE11
|
|
1802
1819
|
- Fix single components did not get exported from their modules
|
|
1803
1820
|
- Fix Lightbox reactivity
|
|
1804
1821
|
|
|
@@ -1859,7 +1876,7 @@
|
|
|
1859
1876
|
|
|
1860
1877
|
### Fixed
|
|
1861
1878
|
|
|
1862
|
-
- Fix regression in Scrollspy in
|
|
1879
|
+
- Fix regression in Scrollspy in IE11
|
|
1863
1880
|
- Fix Sass distribution
|
|
1864
1881
|
- Fix large close icon
|
|
1865
1882
|
|
|
@@ -1971,7 +1988,7 @@
|
|
|
1971
1988
|
- Fix Slider Nav initially has no state
|
|
1972
1989
|
- Fix Esc closing on Confirm and Prompt dialogs
|
|
1973
1990
|
- Fix using Grids in Slider component in Safari
|
|
1974
|
-
- Fix edge scrolling in Sortable component in
|
|
1991
|
+
- Fix edge scrolling in Sortable component in IE11
|
|
1975
1992
|
- Fix touch scrolling in Slideshow/Slider in Edge
|
|
1976
1993
|
- Fix tap event on touch devices
|
|
1977
1994
|
- Fix initial Drop positioning
|
|
@@ -2075,7 +2092,7 @@
|
|
|
2075
2092
|
- Fix Scrollspy triggering before other components have been applied at least once
|
|
2076
2093
|
- Fix Accordion title click behavior
|
|
2077
2094
|
- Fix Sortable on iOS
|
|
2078
|
-
- Fix Sticky Navbar (
|
|
2095
|
+
- Fix Sticky Navbar (IE11)
|
|
2079
2096
|
|
|
2080
2097
|
## 3.0.0 beta 34 (November 7, 2017)
|
|
2081
2098
|
|
|
@@ -2422,7 +2439,7 @@
|
|
|
2422
2439
|
|
|
2423
2440
|
- Fix deferred UIKit loading
|
|
2424
2441
|
- Fix Dropdowns not closing immediately upon hovering other navbar item in Navbar component
|
|
2425
|
-
- Fix navbar groups center left/right (
|
|
2442
|
+
- Fix navbar groups center left/right (IE11)
|
|
2426
2443
|
- Fix "sticky on up" behaviour in Sticky component
|
|
2427
2444
|
- Fix Offcanvas closing without animation
|
|
2428
2445
|
- Fix links in Notification message clickable
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.15.
|
|
1
|
+
/*! UIkit 3.15.11-dev.536b75ef2 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|