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