@frankenstyle/uikit 0.0.1

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 (701) hide show
  1. package/.prettierignore +15 -0
  2. package/.prettierrc.json +12 -0
  3. package/BACKERS.md +5 -0
  4. package/CHANGELOG.md +3759 -0
  5. package/CONTRIBUTING.md +96 -0
  6. package/LICENSE.md +7 -0
  7. package/README.md +65 -0
  8. package/build/build.js +95 -0
  9. package/build/icons.js +35 -0
  10. package/build/less.js +95 -0
  11. package/build/package.json +4 -0
  12. package/build/prefix.js +76 -0
  13. package/build/publishDev.js +33 -0
  14. package/build/release.js +123 -0
  15. package/build/scope.js +106 -0
  16. package/build/scss/mixin.scss +32 -0
  17. package/build/scss.js +252 -0
  18. package/build/util.js +288 -0
  19. package/build/wrapper/component.js +7 -0
  20. package/build/wrapper/icons.js +13 -0
  21. package/composer.json +17 -0
  22. package/dist/css/uikit-rtl.css +13333 -0
  23. package/dist/css/uikit-rtl.min.css +1 -0
  24. package/dist/css/uikit.css +13333 -0
  25. package/dist/css/uikit.min.css +1 -0
  26. package/dist/js/components/.gitkeep +0 -0
  27. package/dist/js/components/countdown.js +112 -0
  28. package/dist/js/components/countdown.min.js +1 -0
  29. package/dist/js/components/filter.js +527 -0
  30. package/dist/js/components/filter.min.js +1 -0
  31. package/dist/js/components/lightbox-panel.js +1695 -0
  32. package/dist/js/components/lightbox-panel.min.js +1 -0
  33. package/dist/js/components/lightbox.js +1783 -0
  34. package/dist/js/components/lightbox.min.js +1 -0
  35. package/dist/js/components/notification.js +127 -0
  36. package/dist/js/components/notification.min.js +1 -0
  37. package/dist/js/components/parallax.js +726 -0
  38. package/dist/js/components/parallax.min.js +1 -0
  39. package/dist/js/components/slider-parallax.js +637 -0
  40. package/dist/js/components/slider-parallax.min.js +1 -0
  41. package/dist/js/components/slider.js +1731 -0
  42. package/dist/js/components/slider.min.js +1 -0
  43. package/dist/js/components/slideshow-parallax.js +637 -0
  44. package/dist/js/components/slideshow-parallax.min.js +1 -0
  45. package/dist/js/components/slideshow.js +1555 -0
  46. package/dist/js/components/slideshow.min.js +1 -0
  47. package/dist/js/components/sortable.js +680 -0
  48. package/dist/js/components/sortable.min.js +1 -0
  49. package/dist/js/components/tooltip.js +446 -0
  50. package/dist/js/components/tooltip.min.js +1 -0
  51. package/dist/js/components/upload.js +235 -0
  52. package/dist/js/components/upload.min.js +1 -0
  53. package/dist/js/uikit-core.js +6726 -0
  54. package/dist/js/uikit-core.min.js +1 -0
  55. package/dist/js/uikit-icons.js +184 -0
  56. package/dist/js/uikit-icons.min.js +1 -0
  57. package/dist/js/uikit.js +10077 -0
  58. package/dist/js/uikit.min.js +1 -0
  59. package/eslint.config.mjs +35 -0
  60. package/jsconfig.json +9 -0
  61. package/package.json +66 -0
  62. package/src/images/backgrounds/accordion-close.svg +4 -0
  63. package/src/images/backgrounds/accordion-open.svg +3 -0
  64. package/src/images/backgrounds/divider-icon.svg +3 -0
  65. package/src/images/backgrounds/form-checkbox-indeterminate.svg +3 -0
  66. package/src/images/backgrounds/form-checkbox.svg +3 -0
  67. package/src/images/backgrounds/form-datalist.svg +3 -0
  68. package/src/images/backgrounds/form-radio.svg +3 -0
  69. package/src/images/backgrounds/form-select.svg +4 -0
  70. package/src/images/backgrounds/list-bullet.svg +3 -0
  71. package/src/images/components/close-icon.svg +1 -0
  72. package/src/images/components/close-large.svg +1 -0
  73. package/src/images/components/drop-parent-icon.svg +1 -0
  74. package/src/images/components/marker.svg +1 -0
  75. package/src/images/components/nav-parent-icon-large.svg +1 -0
  76. package/src/images/components/nav-parent-icon.svg +1 -0
  77. package/src/images/components/navbar-parent-icon.svg +1 -0
  78. package/src/images/components/navbar-toggle-icon.svg +34 -0
  79. package/src/images/components/overlay-icon.svg +1 -0
  80. package/src/images/components/pagination-next.svg +1 -0
  81. package/src/images/components/pagination-previous.svg +1 -0
  82. package/src/images/components/search-icon.svg +1 -0
  83. package/src/images/components/search-large.svg +1 -0
  84. package/src/images/components/search-medium.svg +1 -0
  85. package/src/images/components/slidenav-next-large.svg +1 -0
  86. package/src/images/components/slidenav-next.svg +1 -0
  87. package/src/images/components/slidenav-previous-large.svg +1 -0
  88. package/src/images/components/slidenav-previous.svg +1 -0
  89. package/src/images/components/spinner.svg +3 -0
  90. package/src/images/components/totop.svg +1 -0
  91. package/src/images/icons/500px.svg +30 -0
  92. package/src/images/icons/album.svg +5 -0
  93. package/src/images/icons/android-robot.svg +6 -0
  94. package/src/images/icons/android.svg +3 -0
  95. package/src/images/icons/apple.svg +3 -0
  96. package/src/images/icons/arrow-down-arrow-up.svg +6 -0
  97. package/src/images/icons/arrow-down.svg +4 -0
  98. package/src/images/icons/arrow-left.svg +4 -0
  99. package/src/images/icons/arrow-right.svg +4 -0
  100. package/src/images/icons/arrow-up-right.svg +4 -0
  101. package/src/images/icons/arrow-up.svg +4 -0
  102. package/src/images/icons/bag.svg +4 -0
  103. package/src/images/icons/ban.svg +4 -0
  104. package/src/images/icons/behance.svg +5 -0
  105. package/src/images/icons/bell.svg +4 -0
  106. package/src/images/icons/bluesky.svg +3 -0
  107. package/src/images/icons/bold.svg +3 -0
  108. package/src/images/icons/bolt.svg +3 -0
  109. package/src/images/icons/bookmark.svg +3 -0
  110. package/src/images/icons/calendar.svg +5 -0
  111. package/src/images/icons/camera.svg +4 -0
  112. package/src/images/icons/cart.svg +5 -0
  113. package/src/images/icons/check.svg +3 -0
  114. package/src/images/icons/chevron-double-left.svg +4 -0
  115. package/src/images/icons/chevron-double-right.svg +4 -0
  116. package/src/images/icons/chevron-down.svg +3 -0
  117. package/src/images/icons/chevron-left.svg +3 -0
  118. package/src/images/icons/chevron-right.svg +3 -0
  119. package/src/images/icons/chevron-up.svg +3 -0
  120. package/src/images/icons/clock.svg +5 -0
  121. package/src/images/icons/close-circle.svg +5 -0
  122. package/src/images/icons/close.svg +4 -0
  123. package/src/images/icons/cloud-download.svg +5 -0
  124. package/src/images/icons/cloud-upload.svg +5 -0
  125. package/src/images/icons/code.svg +4 -0
  126. package/src/images/icons/cog.svg +4 -0
  127. package/src/images/icons/comment.svg +3 -0
  128. package/src/images/icons/commenting.svg +6 -0
  129. package/src/images/icons/comments.svg +4 -0
  130. package/src/images/icons/copy.svg +4 -0
  131. package/src/images/icons/credit-card.svg +4 -0
  132. package/src/images/icons/crosshairs.svg +7 -0
  133. package/src/images/icons/database.svg +6 -0
  134. package/src/images/icons/desktop.svg +6 -0
  135. package/src/images/icons/discord.svg +3 -0
  136. package/src/images/icons/download.svg +5 -0
  137. package/src/images/icons/dribbble.svg +6 -0
  138. package/src/images/icons/etsy.svg +3 -0
  139. package/src/images/icons/expand.svg +6 -0
  140. package/src/images/icons/eye-slash.svg +5 -0
  141. package/src/images/icons/eye.svg +4 -0
  142. package/src/images/icons/facebook.svg +3 -0
  143. package/src/images/icons/file-edit.svg +4 -0
  144. package/src/images/icons/file-pdf.svg +4 -0
  145. package/src/images/icons/file-text.svg +7 -0
  146. package/src/images/icons/file.svg +3 -0
  147. package/src/images/icons/flickr.svg +4 -0
  148. package/src/images/icons/folder.svg +3 -0
  149. package/src/images/icons/forward.svg +3 -0
  150. package/src/images/icons/foursquare.svg +3 -0
  151. package/src/images/icons/future.svg +6 -0
  152. package/src/images/icons/git-branch.svg +6 -0
  153. package/src/images/icons/git-fork.svg +6 -0
  154. package/src/images/icons/github-alt.svg +3 -0
  155. package/src/images/icons/github.svg +3 -0
  156. package/src/images/icons/gitter.svg +6 -0
  157. package/src/images/icons/google.svg +3 -0
  158. package/src/images/icons/grid.svg +11 -0
  159. package/src/images/icons/happy.svg +6 -0
  160. package/src/images/icons/hashtag.svg +3 -0
  161. package/src/images/icons/heart.svg +3 -0
  162. package/src/images/icons/history.svg +6 -0
  163. package/src/images/icons/home.svg +5 -0
  164. package/src/images/icons/image.svg +6 -0
  165. package/src/images/icons/info.svg +4 -0
  166. package/src/images/icons/instagram.svg +5 -0
  167. package/src/images/icons/italic.svg +3 -0
  168. package/src/images/icons/joomla.svg +6 -0
  169. package/src/images/icons/laptop.svg +4 -0
  170. package/src/images/icons/lifesaver.svg +12 -0
  171. package/src/images/icons/link-external.svg +5 -0
  172. package/src/images/icons/link.svg +5 -0
  173. package/src/images/icons/linkedin.svg +4 -0
  174. package/src/images/icons/list.svg +8 -0
  175. package/src/images/icons/location.svg +4 -0
  176. package/src/images/icons/lock.svg +4 -0
  177. package/src/images/icons/mail.svg +4 -0
  178. package/src/images/icons/mastodon.svg +3 -0
  179. package/src/images/icons/menu.svg +5 -0
  180. package/src/images/icons/microphone.svg +6 -0
  181. package/src/images/icons/microsoft.svg +3 -0
  182. package/src/images/icons/minus-circle.svg +4 -0
  183. package/src/images/icons/minus.svg +3 -0
  184. package/src/images/icons/more-vertical.svg +5 -0
  185. package/src/images/icons/more.svg +5 -0
  186. package/src/images/icons/move.svg +8 -0
  187. package/src/images/icons/nut.svg +4 -0
  188. package/src/images/icons/paint-bucket.svg +6 -0
  189. package/src/images/icons/pencil.svg +4 -0
  190. package/src/images/icons/phone-landscape.svg +4 -0
  191. package/src/images/icons/phone.svg +4 -0
  192. package/src/images/icons/pinterest.svg +3 -0
  193. package/src/images/icons/play-circle.svg +4 -0
  194. package/src/images/icons/play.svg +3 -0
  195. package/src/images/icons/plus-circle.svg +5 -0
  196. package/src/images/icons/plus.svg +4 -0
  197. package/src/images/icons/print.svg +7 -0
  198. package/src/images/icons/pull.svg +5 -0
  199. package/src/images/icons/push.svg +5 -0
  200. package/src/images/icons/question.svg +5 -0
  201. package/src/images/icons/quote-right.svg +4 -0
  202. package/src/images/icons/receiver.svg +3 -0
  203. package/src/images/icons/reddit.svg +6 -0
  204. package/src/images/icons/refresh.svg +4 -0
  205. package/src/images/icons/reply.svg +3 -0
  206. package/src/images/icons/rss.svg +5 -0
  207. package/src/images/icons/search.svg +4 -0
  208. package/src/images/icons/server.svg +15 -0
  209. package/src/images/icons/settings.svg +11 -0
  210. package/src/images/icons/shrink.svg +6 -0
  211. package/src/images/icons/sign-in.svg +5 -0
  212. package/src/images/icons/sign-out.svg +5 -0
  213. package/src/images/icons/signal.svg +3 -0
  214. package/src/images/icons/social.svg +7 -0
  215. package/src/images/icons/sorting.svg +6 -0
  216. package/src/images/icons/soundcloud.svg +6 -0
  217. package/src/images/icons/star.svg +3 -0
  218. package/src/images/icons/strikethrough.svg +4 -0
  219. package/src/images/icons/table.svg +6 -0
  220. package/src/images/icons/tablet-landscape.svg +4 -0
  221. package/src/images/icons/tablet.svg +4 -0
  222. package/src/images/icons/tag.svg +4 -0
  223. package/src/images/icons/telegram.svg +3 -0
  224. package/src/images/icons/threads.svg +3 -0
  225. package/src/images/icons/thumbnails.svg +6 -0
  226. package/src/images/icons/tiktok.svg +3 -0
  227. package/src/images/icons/trash.svg +7 -0
  228. package/src/images/icons/triangle-down.svg +3 -0
  229. package/src/images/icons/triangle-left.svg +3 -0
  230. package/src/images/icons/triangle-right.svg +3 -0
  231. package/src/images/icons/triangle-up.svg +3 -0
  232. package/src/images/icons/tripadvisor.svg +19 -0
  233. package/src/images/icons/tumblr.svg +3 -0
  234. package/src/images/icons/tv.svg +4 -0
  235. package/src/images/icons/twitch.svg +5 -0
  236. package/src/images/icons/twitter.svg +3 -0
  237. package/src/images/icons/uikit.svg +4 -0
  238. package/src/images/icons/unlock.svg +4 -0
  239. package/src/images/icons/upload.svg +5 -0
  240. package/src/images/icons/user.svg +4 -0
  241. package/src/images/icons/users.svg +5 -0
  242. package/src/images/icons/video-camera.svg +3 -0
  243. package/src/images/icons/vimeo.svg +3 -0
  244. package/src/images/icons/warning.svg +5 -0
  245. package/src/images/icons/whatsapp.svg +3 -0
  246. package/src/images/icons/wordpress.svg +3 -0
  247. package/src/images/icons/world.svg +7 -0
  248. package/src/images/icons/x.svg +3 -0
  249. package/src/images/icons/xing.svg +4 -0
  250. package/src/images/icons/yelp.svg +15 -0
  251. package/src/images/icons/yootheme.svg +3 -0
  252. package/src/images/icons/youtube.svg +3 -0
  253. package/src/js/api/app.js +12 -0
  254. package/src/js/api/boot.js +84 -0
  255. package/src/js/api/component.js +84 -0
  256. package/src/js/api/computed.js +80 -0
  257. package/src/js/api/events.js +33 -0
  258. package/src/js/api/global.js +74 -0
  259. package/src/js/api/hooks.js +51 -0
  260. package/src/js/api/index.js +8 -0
  261. package/src/js/api/instance.js +66 -0
  262. package/src/js/api/log.js +10 -0
  263. package/src/js/api/observables.js +132 -0
  264. package/src/js/api/observer.js +64 -0
  265. package/src/js/api/options.js +180 -0
  266. package/src/js/api/props.js +107 -0
  267. package/src/js/api/state.js +65 -0
  268. package/src/js/api/update.js +66 -0
  269. package/src/js/api/watch.js +30 -0
  270. package/src/js/components/countdown.js +113 -0
  271. package/src/js/components/filter.js +211 -0
  272. package/src/js/components/index.js +13 -0
  273. package/src/js/components/internal/lightbox-animations.js +40 -0
  274. package/src/js/components/internal/slider-preload.js +14 -0
  275. package/src/js/components/internal/slider-transitioner.js +186 -0
  276. package/src/js/components/internal/slideshow-animations.js +100 -0
  277. package/src/js/components/lightbox-panel.js +482 -0
  278. package/src/js/components/lightbox.js +136 -0
  279. package/src/js/components/notification.js +134 -0
  280. package/src/js/components/parallax.js +86 -0
  281. package/src/js/components/slider-parallax.js +81 -0
  282. package/src/js/components/slider.js +388 -0
  283. package/src/js/components/slideshow-parallax.js +1 -0
  284. package/src/js/components/slideshow.js +44 -0
  285. package/src/js/components/sortable.js +448 -0
  286. package/src/js/components/tooltip.js +183 -0
  287. package/src/js/components/upload.js +248 -0
  288. package/src/js/core/accordion.js +244 -0
  289. package/src/js/core/alert.js +59 -0
  290. package/src/js/core/cover.js +57 -0
  291. package/src/js/core/drop.js +514 -0
  292. package/src/js/core/dropnav.js +449 -0
  293. package/src/js/core/form-custom.js +74 -0
  294. package/src/js/core/grid.js +210 -0
  295. package/src/js/core/height-match.js +79 -0
  296. package/src/js/core/height-placeholder.js +35 -0
  297. package/src/js/core/height-viewport.js +98 -0
  298. package/src/js/core/icon.js +285 -0
  299. package/src/js/core/img.js +157 -0
  300. package/src/js/core/index.js +49 -0
  301. package/src/js/core/inverse.js +173 -0
  302. package/src/js/core/leader.js +52 -0
  303. package/src/js/core/margin.js +125 -0
  304. package/src/js/core/modal.js +179 -0
  305. package/src/js/core/nav.js +11 -0
  306. package/src/js/core/navbar.js +96 -0
  307. package/src/js/core/offcanvas.js +178 -0
  308. package/src/js/core/overflow-auto.js +50 -0
  309. package/src/js/core/overflow-fade.js +67 -0
  310. package/src/js/core/responsive.js +10 -0
  311. package/src/js/core/scroll.js +71 -0
  312. package/src/js/core/scrollspy-nav.js +112 -0
  313. package/src/js/core/scrollspy.js +141 -0
  314. package/src/js/core/sticky.js +509 -0
  315. package/src/js/core/svg.js +101 -0
  316. package/src/js/core/switcher.js +246 -0
  317. package/src/js/core/tab.js +31 -0
  318. package/src/js/core/toggle.js +225 -0
  319. package/src/js/core/video.js +128 -0
  320. package/src/js/mixin/animate.js +34 -0
  321. package/src/js/mixin/class.js +7 -0
  322. package/src/js/mixin/container.js +17 -0
  323. package/src/js/mixin/event.js +5 -0
  324. package/src/js/mixin/i18n.js +21 -0
  325. package/src/js/mixin/internal/animate-fade.js +141 -0
  326. package/src/js/mixin/internal/animate-slide.js +163 -0
  327. package/src/js/mixin/internal/slideshow-animations.js +28 -0
  328. package/src/js/mixin/internal/slideshow-transitioner.js +73 -0
  329. package/src/js/mixin/media.js +53 -0
  330. package/src/js/mixin/modal.js +313 -0
  331. package/src/js/mixin/parallax.js +408 -0
  332. package/src/js/mixin/position.js +113 -0
  333. package/src/js/mixin/slider-autoplay.js +71 -0
  334. package/src/js/mixin/slider-drag.js +236 -0
  335. package/src/js/mixin/slider-nav.js +248 -0
  336. package/src/js/mixin/slider-parallax.js +147 -0
  337. package/src/js/mixin/slider-reactive.js +19 -0
  338. package/src/js/mixin/slider.js +228 -0
  339. package/src/js/mixin/slideshow.js +46 -0
  340. package/src/js/mixin/svg.js +121 -0
  341. package/src/js/mixin/togglable.js +258 -0
  342. package/src/js/uikit-core.js +11 -0
  343. package/src/js/uikit.js +7 -0
  344. package/src/js/util/animation.js +122 -0
  345. package/src/js/util/attr.js +42 -0
  346. package/src/js/util/await.js +7 -0
  347. package/src/js/util/class.js +53 -0
  348. package/src/js/util/dimensions.js +220 -0
  349. package/src/js/util/dom.js +118 -0
  350. package/src/js/util/env.js +12 -0
  351. package/src/js/util/event.js +142 -0
  352. package/src/js/util/fastdom.js +62 -0
  353. package/src/js/util/filter.js +91 -0
  354. package/src/js/util/index.js +17 -0
  355. package/src/js/util/keys.js +11 -0
  356. package/src/js/util/lang.js +280 -0
  357. package/src/js/util/mouse.js +80 -0
  358. package/src/js/util/observer.js +49 -0
  359. package/src/js/util/player.js +98 -0
  360. package/src/js/util/position.js +235 -0
  361. package/src/js/util/scroll.js +64 -0
  362. package/src/js/util/selector.js +143 -0
  363. package/src/js/util/style.js +96 -0
  364. package/src/js/util/svg.js +10 -0
  365. package/src/js/util/viewport.js +251 -0
  366. package/src/less/components/_import.less +96 -0
  367. package/src/less/components/accordion.less +122 -0
  368. package/src/less/components/alert.less +146 -0
  369. package/src/less/components/align.less +142 -0
  370. package/src/less/components/animation.less +283 -0
  371. package/src/less/components/article.less +110 -0
  372. package/src/less/components/background.less +140 -0
  373. package/src/less/components/badge.less +90 -0
  374. package/src/less/components/base.less +740 -0
  375. package/src/less/components/breadcrumb.less +157 -0
  376. package/src/less/components/button.less +540 -0
  377. package/src/less/components/card.less +441 -0
  378. package/src/less/components/close.less +67 -0
  379. package/src/less/components/column.less +143 -0
  380. package/src/less/components/comment.less +160 -0
  381. package/src/less/components/container.less +185 -0
  382. package/src/less/components/countdown.less +112 -0
  383. package/src/less/components/cover.less +76 -0
  384. package/src/less/components/description-list.less +71 -0
  385. package/src/less/components/divider.less +176 -0
  386. package/src/less/components/dotnav.less +177 -0
  387. package/src/less/components/drop.less +78 -0
  388. package/src/less/components/dropbar.less +131 -0
  389. package/src/less/components/dropdown.less +213 -0
  390. package/src/less/components/dropnav.less +43 -0
  391. package/src/less/components/flex.less +308 -0
  392. package/src/less/components/form-range.less +191 -0
  393. package/src/less/components/form.less +930 -0
  394. package/src/less/components/grid.less +419 -0
  395. package/src/less/components/heading.less +289 -0
  396. package/src/less/components/height.less +57 -0
  397. package/src/less/components/icon.less +313 -0
  398. package/src/less/components/iconnav.less +163 -0
  399. package/src/less/components/inverse.less +64 -0
  400. package/src/less/components/label.less +110 -0
  401. package/src/less/components/leader.less +75 -0
  402. package/src/less/components/lightbox.less +215 -0
  403. package/src/less/components/link.less +167 -0
  404. package/src/less/components/list.less +245 -0
  405. package/src/less/components/margin.less +263 -0
  406. package/src/less/components/marker.less +74 -0
  407. package/src/less/components/mixin.less +20 -0
  408. package/src/less/components/modal.less +366 -0
  409. package/src/less/components/nav.less +755 -0
  410. package/src/less/components/navbar.less +681 -0
  411. package/src/less/components/notification.less +191 -0
  412. package/src/less/components/offcanvas.less +329 -0
  413. package/src/less/components/overlay.less +92 -0
  414. package/src/less/components/padding.less +81 -0
  415. package/src/less/components/pagination.less +159 -0
  416. package/src/less/components/placeholder.less +45 -0
  417. package/src/less/components/position.less +241 -0
  418. package/src/less/components/print.less +61 -0
  419. package/src/less/components/progress.less +83 -0
  420. package/src/less/components/search.less +488 -0
  421. package/src/less/components/section.less +257 -0
  422. package/src/less/components/slidenav.less +137 -0
  423. package/src/less/components/slider.less +123 -0
  424. package/src/less/components/slideshow.less +93 -0
  425. package/src/less/components/sortable.less +90 -0
  426. package/src/less/components/spinner.less +74 -0
  427. package/src/less/components/sticky.less +65 -0
  428. package/src/less/components/subnav.less +317 -0
  429. package/src/less/components/svg.less +36 -0
  430. package/src/less/components/switcher.less +47 -0
  431. package/src/less/components/tab.less +222 -0
  432. package/src/less/components/table.less +352 -0
  433. package/src/less/components/text.less +296 -0
  434. package/src/less/components/thumbnav.less +133 -0
  435. package/src/less/components/tile.less +247 -0
  436. package/src/less/components/tooltip.less +79 -0
  437. package/src/less/components/totop.less +86 -0
  438. package/src/less/components/transition.less +172 -0
  439. package/src/less/components/utility.less +584 -0
  440. package/src/less/components/variables.less +123 -0
  441. package/src/less/components/visibility.less +164 -0
  442. package/src/less/components/width.less +489 -0
  443. package/src/less/theme/_import.less +82 -0
  444. package/src/less/theme/accordion.less +82 -0
  445. package/src/less/theme/alert.less +76 -0
  446. package/src/less/theme/align.less +14 -0
  447. package/src/less/theme/animation.less +14 -0
  448. package/src/less/theme/article.less +60 -0
  449. package/src/less/theme/background.less +14 -0
  450. package/src/less/theme/badge.less +29 -0
  451. package/src/less/theme/base.less +134 -0
  452. package/src/less/theme/breadcrumb.less +45 -0
  453. package/src/less/theme/button.less +212 -0
  454. package/src/less/theme/card.less +236 -0
  455. package/src/less/theme/close.less +32 -0
  456. package/src/less/theme/column.less +14 -0
  457. package/src/less/theme/comment.less +72 -0
  458. package/src/less/theme/container.less +14 -0
  459. package/src/less/theme/countdown.less +53 -0
  460. package/src/less/theme/description-list.less +36 -0
  461. package/src/less/theme/divider.less +49 -0
  462. package/src/less/theme/dotnav.less +57 -0
  463. package/src/less/theme/drop.less +14 -0
  464. package/src/less/theme/dropbar.less +44 -0
  465. package/src/less/theme/dropdown.less +59 -0
  466. package/src/less/theme/form-range.less +57 -0
  467. package/src/less/theme/form.less +154 -0
  468. package/src/less/theme/grid.less +28 -0
  469. package/src/less/theme/heading.less +71 -0
  470. package/src/less/theme/height.less +14 -0
  471. package/src/less/theme/icon.less +67 -0
  472. package/src/less/theme/iconnav.less +44 -0
  473. package/src/less/theme/inverse.less +14 -0
  474. package/src/less/theme/label.less +46 -0
  475. package/src/less/theme/leader.less +26 -0
  476. package/src/less/theme/lightbox.less +32 -0
  477. package/src/less/theme/link.less +55 -0
  478. package/src/less/theme/list.less +50 -0
  479. package/src/less/theme/margin.less +14 -0
  480. package/src/less/theme/marker.less +31 -0
  481. package/src/less/theme/modal.less +102 -0
  482. package/src/less/theme/nav.less +142 -0
  483. package/src/less/theme/navbar.less +179 -0
  484. package/src/less/theme/notification.less +44 -0
  485. package/src/less/theme/offcanvas.less +32 -0
  486. package/src/less/theme/overlay.less +33 -0
  487. package/src/less/theme/padding.less +14 -0
  488. package/src/less/theme/pagination.less +41 -0
  489. package/src/less/theme/placeholder.less +29 -0
  490. package/src/less/theme/position.less +14 -0
  491. package/src/less/theme/progress.less +27 -0
  492. package/src/less/theme/search.less +121 -0
  493. package/src/less/theme/section.less +32 -0
  494. package/src/less/theme/slidenav.less +52 -0
  495. package/src/less/theme/slider.less +14 -0
  496. package/src/less/theme/sortable.less +38 -0
  497. package/src/less/theme/spinner.less +14 -0
  498. package/src/less/theme/sticky.less +14 -0
  499. package/src/less/theme/subnav.less +79 -0
  500. package/src/less/theme/tab.less +138 -0
  501. package/src/less/theme/table.less +86 -0
  502. package/src/less/theme/text.less +61 -0
  503. package/src/less/theme/thumbnav.less +65 -0
  504. package/src/less/theme/tile.less +52 -0
  505. package/src/less/theme/tooltip.less +20 -0
  506. package/src/less/theme/totop.less +32 -0
  507. package/src/less/theme/transition.less +14 -0
  508. package/src/less/theme/utility.less +52 -0
  509. package/src/less/theme/variables.less +36 -0
  510. package/src/less/theme/width.less +14 -0
  511. package/src/less/uikit.less +5 -0
  512. package/src/less/uikit.theme.less +11 -0
  513. package/src/scss/components/_import.scss +96 -0
  514. package/src/scss/components/accordion.scss +100 -0
  515. package/src/scss/components/alert.scss +133 -0
  516. package/src/scss/components/align.scss +141 -0
  517. package/src/scss/components/animation.scss +278 -0
  518. package/src/scss/components/article.scss +93 -0
  519. package/src/scss/components/background.scss +138 -0
  520. package/src/scss/components/badge.scss +71 -0
  521. package/src/scss/components/base.scss +561 -0
  522. package/src/scss/components/breadcrumb.scss +115 -0
  523. package/src/scss/components/button.scss +374 -0
  524. package/src/scss/components/card.scss +379 -0
  525. package/src/scss/components/close.scss +53 -0
  526. package/src/scss/components/column.scss +136 -0
  527. package/src/scss/components/comment.scss +153 -0
  528. package/src/scss/components/container.scss +180 -0
  529. package/src/scss/components/countdown.scss +93 -0
  530. package/src/scss/components/cover.scss +78 -0
  531. package/src/scss/components/description-list.scss +68 -0
  532. package/src/scss/components/divider.scss +137 -0
  533. package/src/scss/components/dotnav.scss +144 -0
  534. package/src/scss/components/drop.scss +75 -0
  535. package/src/scss/components/dropbar.scss +123 -0
  536. package/src/scss/components/dropdown.scss +192 -0
  537. package/src/scss/components/dropnav.scss +44 -0
  538. package/src/scss/components/flex.scss +310 -0
  539. package/src/scss/components/form-range.scss +147 -0
  540. package/src/scss/components/form.scss +771 -0
  541. package/src/scss/components/grid.scss +394 -0
  542. package/src/scss/components/heading.scss +227 -0
  543. package/src/scss/components/height.scss +56 -0
  544. package/src/scss/components/icon.scss +228 -0
  545. package/src/scss/components/iconnav.scss +140 -0
  546. package/src/scss/components/inverse.scss +51 -0
  547. package/src/scss/components/label.scss +90 -0
  548. package/src/scss/components/leader.scss +69 -0
  549. package/src/scss/components/lightbox.scss +205 -0
  550. package/src/scss/components/link.scss +131 -0
  551. package/src/scss/components/list.scss +199 -0
  552. package/src/scss/components/margin.scss +257 -0
  553. package/src/scss/components/marker.scss +56 -0
  554. package/src/scss/components/mixin.scss +34 -0
  555. package/src/scss/components/modal.scss +336 -0
  556. package/src/scss/components/nav.scss +533 -0
  557. package/src/scss/components/navbar.scss +579 -0
  558. package/src/scss/components/notification.scss +178 -0
  559. package/src/scss/components/offcanvas.scss +318 -0
  560. package/src/scss/components/overlay.scss +88 -0
  561. package/src/scss/components/padding.scss +78 -0
  562. package/src/scss/components/pagination.scss +127 -0
  563. package/src/scss/components/placeholder.scss +43 -0
  564. package/src/scss/components/position.scss +240 -0
  565. package/src/scss/components/print.scss +63 -0
  566. package/src/scss/components/progress.scss +81 -0
  567. package/src/scss/components/search.scss +367 -0
  568. package/src/scss/components/section.scss +243 -0
  569. package/src/scss/components/slidenav.scss +112 -0
  570. package/src/scss/components/slider.scss +121 -0
  571. package/src/scss/components/slideshow.scss +95 -0
  572. package/src/scss/components/sortable.scss +89 -0
  573. package/src/scss/components/spinner.scss +73 -0
  574. package/src/scss/components/sticky.scss +64 -0
  575. package/src/scss/components/subnav.scss +222 -0
  576. package/src/scss/components/svg.scss +38 -0
  577. package/src/scss/components/switcher.scss +49 -0
  578. package/src/scss/components/tab.scss +186 -0
  579. package/src/scss/components/table.scss +293 -0
  580. package/src/scss/components/text.scss +256 -0
  581. package/src/scss/components/thumbnav.scss +119 -0
  582. package/src/scss/components/tile.scss +230 -0
  583. package/src/scss/components/tooltip.scss +72 -0
  584. package/src/scss/components/totop.scss +64 -0
  585. package/src/scss/components/transition.scss +169 -0
  586. package/src/scss/components/utility.scss +545 -0
  587. package/src/scss/components/variables.scss +84 -0
  588. package/src/scss/components/visibility.scss +166 -0
  589. package/src/scss/components/width.scss +487 -0
  590. package/src/scss/mixins-theme.scss +2298 -0
  591. package/src/scss/mixins.scss +1896 -0
  592. package/src/scss/uikit-theme.scss +8 -0
  593. package/src/scss/uikit.scss +5 -0
  594. package/src/scss/variables-theme.scss +1325 -0
  595. package/src/scss/variables.scss +1190 -0
  596. package/tests/accordion.html +214 -0
  597. package/tests/alert.html +124 -0
  598. package/tests/align.html +133 -0
  599. package/tests/animation.html +252 -0
  600. package/tests/article.html +167 -0
  601. package/tests/background.html +67 -0
  602. package/tests/badge.html +93 -0
  603. package/tests/base.html +244 -0
  604. package/tests/breadcrumb.html +64 -0
  605. package/tests/button.html +257 -0
  606. package/tests/card.html +630 -0
  607. package/tests/close.html +74 -0
  608. package/tests/column.html +71 -0
  609. package/tests/comment.html +209 -0
  610. package/tests/container.html +266 -0
  611. package/tests/countdown.html +716 -0
  612. package/tests/cover.html +167 -0
  613. package/tests/description-list.html +51 -0
  614. package/tests/divider.html +89 -0
  615. package/tests/dotnav.html +139 -0
  616. package/tests/drop.html +782 -0
  617. package/tests/dropbar.html +551 -0
  618. package/tests/dropdown.html +286 -0
  619. package/tests/dropnav.html +856 -0
  620. package/tests/filter.html +287 -0
  621. package/tests/flex.html +182 -0
  622. package/tests/form.html +675 -0
  623. package/tests/grid-masonry.html +80 -0
  624. package/tests/grid-parallax.html +171 -0
  625. package/tests/grid.html +679 -0
  626. package/tests/heading.html +337 -0
  627. package/tests/height-expand.html +32 -0
  628. package/tests/height-viewport.html +253 -0
  629. package/tests/height.html +160 -0
  630. package/tests/icon.html +907 -0
  631. package/tests/iconnav.html +40 -0
  632. package/tests/image.html +642 -0
  633. package/tests/images/avatar.jpg +0 -0
  634. package/tests/images/dark.jpg +0 -0
  635. package/tests/images/icons.svg +24 -0
  636. package/tests/images/image-type.avif +0 -0
  637. package/tests/images/image-type.jpeg +0 -0
  638. package/tests/images/image-type.webp +0 -0
  639. package/tests/images/light.jpg +0 -0
  640. package/tests/images/photo.jpg +0 -0
  641. package/tests/images/photo2.jpg +0 -0
  642. package/tests/images/photo3.jpg +0 -0
  643. package/tests/images/size-h.jpg +0 -0
  644. package/tests/images/size-v.jpg +0 -0
  645. package/tests/images/size1.jpg +0 -0
  646. package/tests/images/size2.jpg +0 -0
  647. package/tests/images/slider1.jpg +0 -0
  648. package/tests/images/slider2.jpg +0 -0
  649. package/tests/images/slider3.jpg +0 -0
  650. package/tests/images/slider4.jpg +0 -0
  651. package/tests/images/slider5.jpg +0 -0
  652. package/tests/index.html +905 -0
  653. package/tests/js/index.js +171 -0
  654. package/tests/label.html +28 -0
  655. package/tests/leader.html +67 -0
  656. package/tests/lightbox.html +689 -0
  657. package/tests/link.html +121 -0
  658. package/tests/list.html +490 -0
  659. package/tests/margin.html +208 -0
  660. package/tests/marker.html +87 -0
  661. package/tests/modal.html +497 -0
  662. package/tests/nav.html +487 -0
  663. package/tests/navbar.html +2746 -0
  664. package/tests/notification.html +137 -0
  665. package/tests/offcanvas.html +780 -0
  666. package/tests/overlay.html +102 -0
  667. package/tests/padding.html +52 -0
  668. package/tests/pagination.html +140 -0
  669. package/tests/parallax.html +298 -0
  670. package/tests/placeholder.html +33 -0
  671. package/tests/position.html +436 -0
  672. package/tests/progress.html +59 -0
  673. package/tests/scroll.html +118 -0
  674. package/tests/scrollspy.html +593 -0
  675. package/tests/search.html +535 -0
  676. package/tests/section.html +384 -0
  677. package/tests/slidenav.html +333 -0
  678. package/tests/slider.html +661 -0
  679. package/tests/slideshow.html +565 -0
  680. package/tests/sortable.html +300 -0
  681. package/tests/spinner.html +25 -0
  682. package/tests/sticky-navbar.html +1421 -0
  683. package/tests/sticky-parallax.html +279 -0
  684. package/tests/sticky.html +429 -0
  685. package/tests/subnav.html +282 -0
  686. package/tests/svg.html +78 -0
  687. package/tests/switcher.html +394 -0
  688. package/tests/tab.html +266 -0
  689. package/tests/table.html +329 -0
  690. package/tests/text.html +155 -0
  691. package/tests/thumbnav.html +64 -0
  692. package/tests/tile.html +226 -0
  693. package/tests/toggle.html +186 -0
  694. package/tests/tooltip.html +126 -0
  695. package/tests/totop.html +68 -0
  696. package/tests/transition.html +246 -0
  697. package/tests/upload.html +290 -0
  698. package/tests/utility.html +644 -0
  699. package/tests/video.html +206 -0
  700. package/tests/visibility.html +112 -0
  701. package/tests/width.html +130 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,3759 @@
1
+ # Changelog
2
+
3
+ ## 3.24.2 (October 13, 2025)
4
+
5
+ ### Added
6
+
7
+ - Add fit content width to Width component
8
+
9
+ ### Fixed
10
+
11
+ - Fix overwriting default icons
12
+ - Fix scrollbar gutter stays visible in Modal component even though page is not scrollable
13
+ - Fix lazy loading YouTube/Vimeo videos in Video component in Safari
14
+ - Fix scoping css to handle `attr()` with `type()` function
15
+
16
+ ## 3.24.1 (October 6, 2025)
17
+
18
+ ### Fixed
19
+
20
+ - Fix icon overlay inverse selector in Icon component
21
+ - Fix Sass sources
22
+
23
+ ## 3.24.0 (October 2, 2025)
24
+
25
+ ### Added
26
+
27
+ - Add Overflow Fade component
28
+ - Add card overlay style modifier to Card component
29
+ - Add form size modifier for radio and checkbox to Form component
30
+ - Add icon overlay modifier to Icon component
31
+ - Add highest z-index utility class to Position component
32
+ - Add size modifier for top and bottom paddings to Section component
33
+ - Add `restart` option to Video component
34
+ - Add `hover-target` option to Video component
35
+
36
+ ### Changed
37
+
38
+ - Remove font variables in favor of using heading classes in Countdown component
39
+ - Stretch the entire navbar height if an item's height is expanded by its content
40
+ - Scale height of responsive images and videos based on extrinsic aspect ratio and fill content box (Chrome only yet)
41
+ - Videos set to `preload: none` will lazy load by default now
42
+ - Dropnav component will flip vertically, when overflowing its scroll container
43
+
44
+ ### Deprecated
45
+
46
+ - Deprecate `automute` option in Video and Cover component, use `muted` attribute for videos, `mute=1` for YouTube and `muted=1` for Vimeo instead
47
+
48
+ ### Removed
49
+
50
+ - Remove deprecated flag in Less variables
51
+
52
+ ### Fixed
53
+
54
+ - Fix disable color for span elements in Subnav component
55
+ - Fix text underline offset if text is vertical aligned to the middle in Link component
56
+ - Fix border color if visible toggle class is applied in Visibility component
57
+ - Fix text from wrapping onto multiple lines if elements should look like `input` or `select`
58
+
59
+ ## 3.23.13 (September 11, 2025)
60
+
61
+ ### Fixed
62
+
63
+ - Fix setting focus to Modal/Offcanvas Toggle component after close scrolls page
64
+ - Fix Slideshow/Slider components no longer autoplay if hidden
65
+ - Fix Drop component no longer delays showing if previous active Drop component is found
66
+ - Fix Scrollspy Nav component not detecting covering element correctly
67
+
68
+ ## 3.23.12 (August 18, 2025)
69
+
70
+ ### Fixed
71
+
72
+ - Fix Scrollspy Nav ignores links
73
+
74
+ ## 3.23.11 (June 25, 2025)
75
+
76
+ ### Fixed
77
+
78
+ - Fix setting `aria-expanded` on the closest button of the Navbar Toggle Icon
79
+ - Fix SVG component handles base64 encoded data URIs correctly
80
+
81
+ ## 3.23.10 (June 12, 2025)
82
+
83
+ ### Fixed
84
+
85
+ - Fix Toggle component does not toggle if element is a link without `href` attribute
86
+ - Fix closing modal prevents page from being scrollable in Firefox
87
+
88
+ ## 3.23.9 (June 3, 2025)
89
+
90
+ ### Changed
91
+
92
+ - Add missing `aria-hidden` attribute in Icon component
93
+
94
+ ## 3.23.8 (June 2, 2025)
95
+
96
+ ### Changed
97
+
98
+ - Delay showing dropdowns in Dropnav and Navbar components to allow passing with the pointer over the element
99
+
100
+ ### Fixed
101
+
102
+ - Fix setting focus to Modal/Offcanvas Toggle component after close
103
+ - Fix Dropnav component no longer opens its Drop components upon initial hover during page load (in Safari and Firefox)
104
+ - Fix Scrollspy Nav component no longer highlights items whose targets do not exist
105
+
106
+ ## 3.23.7 (May 9, 2025)
107
+
108
+ ### Fixed
109
+
110
+ - Fix Inverse component not being responsive for multiple target elements
111
+ - Fix tabindex not being set for Video component in `autoplay: hover` mode
112
+ - Fix browser lock up because of infinite component update loop
113
+
114
+ ## 3.23.6 (April 10, 2025)
115
+
116
+ ### Fixed
117
+
118
+ - Revert: Fix performance when transitioning element properties in Chrome (causes regression in Safari and Firefox)
119
+
120
+ ## 3.23.5 (April 7, 2025)
121
+
122
+ ### Fixed
123
+
124
+ - Fix regression with transitioning element properties not being applied
125
+
126
+ ## 3.23.4 (March 26, 2025)
127
+
128
+ ### Fixed
129
+
130
+ - Fix performance when transitioning element properties in Chrome
131
+
132
+ ## 3.23.3 (March 17, 2025)
133
+
134
+ ### Fixed
135
+
136
+ - Fix Grid component performance regression
137
+
138
+ ## 3.23.2 (March 4, 2025)
139
+
140
+ ### Fixed
141
+
142
+ - Fix min option in Height Viewport component
143
+
144
+ ## 3.23.1 (February 19, 2025)
145
+
146
+ ### Fixed
147
+
148
+ - Fix Safari 18.3 `:not(:has(...)) invalidation` issue causing hidden class not showing in Visibility component
149
+
150
+ ## 3.23.0 (February 4, 2025)
151
+
152
+ ### Added
153
+
154
+ - Add `property` option to Height Viewport component
155
+
156
+ ### Changed
157
+
158
+ - IMPORTANT: Rename `minHeight` option to `min` in Height Viewport component
159
+
160
+ ### Fixed
161
+
162
+ - Fix Toggle component does not toggle if element is a link without `href` attribute
163
+
164
+ ## 3.22.4 (January 30, 2025)
165
+
166
+ ### Added
167
+
168
+ - Add dropbar margin variable to Dropdown component
169
+
170
+ ### Fixed
171
+
172
+ - Fix pressing arrow down key on nav item in Dropbar component opens Dropdown component
173
+
174
+ ## 3.22.3 (January 24, 2025)
175
+
176
+ ### Fixed
177
+
178
+ - Fix vertical alignment for input of type date, time and datetime-local in Safari
179
+
180
+ ## 3.22.2 (January 16, 2025)
181
+
182
+ ### Fixed
183
+
184
+ - Fix missing list markers in Chrome in List component
185
+
186
+ ## 3.22.1 (January 16, 2025)
187
+
188
+ ### Changed
189
+
190
+ - Apply accordion item hook also to the first item
191
+
192
+ ## 3.22.0 (January 9, 2025)
193
+
194
+ ### Added
195
+
196
+ - Add `slidnav` option to disable slidenav to Lightbox component
197
+ - Add `nav` option to show a vertical thumbnav or dotnav to Lightbox component
198
+ - Add `counter` option to show counter with current item number and total number of items to Lightbox component
199
+ - Add `video-autoplay: inline` option to autoplay video without controls and muted to Lightbox component
200
+ - Add zoom behavior to images and inline videos if they are higher than the viewport to Lightbox component
201
+ - Allow `template` option to reference a `template` element in the DOM for the lightbox layout in Lightbox component
202
+ - Add hidden class to hide empty elements to Visibility component
203
+ - Add inverse style for form rang to Form component
204
+ - Add margin xsmall classes to Margin component
205
+ - Add horizontal margin variable to subnav pill in Subnav component
206
+ - Add text stroke class to Text component
207
+ - Add close-circle and arrow-down-arrow-up icons
208
+ - Add `reload` option to Countdown component
209
+ - Add `offset-end` option to Sticky component
210
+
211
+ ### Changed
212
+
213
+ - IMPORTANT: Remove `@lightbox-toolbar-icon-*` and `@lightbox-button-*`from Lightbox component
214
+ - IMPORTANT: Rename `@lightbox-toolbar-*` to `@lightbox-caption-*` in Lightbox component
215
+ - IMPORTANT: Rename `@lightbox-item-color` to `@lightbox-color` in Lightbox component
216
+ - Set `delay-controls: 0` prevents hiding controls in Lightbox component
217
+ - Update default lightbox template in Lightbox component
218
+ - Change padding calculation of search box and search icon in Search component
219
+ - Change search style medium and large to look the same as default in Search component
220
+
221
+ ### Fixed
222
+
223
+ - Fix spaces in the markup affecting the horizontal divider margin in Breadcrumb component
224
+
225
+ ## 3.21.17 (January 7, 2025)
226
+
227
+ ### Fixed
228
+
229
+ - Fix Navbar component not re-applying transparency after closing Drop component
230
+
231
+ ## 3.21.16 (November 22, 2024)
232
+
233
+ ### Fixed
234
+
235
+ - Fix regression in Scroll component
236
+
237
+ ## 3.21.15 (November 22, 2024)
238
+
239
+ ### Fixed
240
+
241
+ - Fix regression in SVG parsing
242
+
243
+ ## 3.21.14 (November 21, 2024)
244
+
245
+ ### Fixed
246
+
247
+ - Fix child components in Dropdown components toggling transparency in Navbar component
248
+ - Fix Navbar toggles Dropdown component when hovering with mouse on initial page load
249
+ - Fix Scrollspy Nav component checks if targets exists before activating state
250
+ - Fix Slideshow component list does not fill available space in Safari
251
+ - Fix hidden class keep showing elements on hover if a link is clicked in Visibility component
252
+ - Fix showing elements if an element has focus within in Transition component
253
+
254
+ ## 3.21.13 (September 26, 2024)
255
+
256
+ ### Fixed
257
+
258
+ - Fix `scrollIntoView()` for elements with `scroll-behavior: smooth`
259
+ - Fix Offcanvas in reveal mode unwraps itself
260
+
261
+ ## 3.21.12 (September 9, 2024)
262
+
263
+ ### Fixed
264
+
265
+ - Fix Sticky component not using `position: sticky` if parent has `overflow: clip`
266
+ - Fix Sticky component is now inactive if page can't be scrolled
267
+ - Fix using comma separated selectors in filter controls in Filter component
268
+ - Fix Video component does not autopause videos with autoplay set to false
269
+
270
+ ## 3.21.11 (August 22, 2024)
271
+
272
+ ### Fixed
273
+
274
+ - Fix regression in updating computed values (again)
275
+
276
+ ## 3.21.10 (August 22, 2024)
277
+
278
+ ### Fixed
279
+
280
+ - Fix regression in updating computed values
281
+
282
+ ## 3.21.9 (August 1, 2024)
283
+
284
+ ### Fixed
285
+
286
+ - Fix Sticky component calculates wrong top offset, when animation is in progress
287
+ - Fix rounding issue in Slider component in Firefox
288
+ - Fix calling `query()` and `queryAll()` with empty string throws exception
289
+
290
+ ## 3.21.8 (July 25, 2024)
291
+
292
+ ### Fixed
293
+
294
+ - Fix toggled hidden hover class to display elements on hover for touch devices using `tabindex` in Visibility component
295
+ - Fix offsetViewport calculation if window is passed as scrollElement
296
+
297
+ ## 3.21.7 (July 17, 2024)
298
+
299
+ ### Fixed
300
+
301
+ - Fix offsetViewport calculation for browsers in quirks mode
302
+ - Fix selector engine to handle spaces within parentheses correctly
303
+ - Fix BC to component initialization not accepting plain html markup
304
+
305
+ ## 3.21.6 (July 1, 2024)
306
+
307
+ ### Fixed
308
+
309
+ - Fix Sticky component not resizing correctly if parent element has `display: contents`
310
+ - Fix Scrollspy Nav component to ignore anchor elements with `role="button"`
311
+ - Fix Drop component causes scroll position to jump when overflowing its scroll container
312
+
313
+ ## 3.21.5 (June 3, 2024)
314
+
315
+ ### Fixed
316
+
317
+ - Fix auto generating navigation in Slider and Slideshow component
318
+ - Fix Height Viewport component offset top option
319
+ - Fix keyboard navigation within input elements in Dropnav component dropdowns
320
+
321
+ ## 3.21.4 (May 24, 2024)
322
+
323
+ ### Added
324
+
325
+ - Add `target` option to Scrollspy Nav component
326
+
327
+ ### Changed
328
+
329
+ - Scrollspy Nav component defaults to a 10vh active top offset
330
+
331
+ ### Removed
332
+
333
+ - Remove `overflow` option from Scrollspy Nav component
334
+
335
+ ### Fixed
336
+
337
+ - Fix Drop component does not immediately show if current active Drop is delaying
338
+ - Fix Scrollspy Nav falls back to document if target is not found
339
+
340
+ ## 3.21.3 (May 22, 2024)
341
+
342
+ ### Fixed
343
+
344
+ - Fix regression in Slideshow component
345
+
346
+ ## 3.21.2 (May 22, 2024)
347
+
348
+ ### Fixed
349
+
350
+ - Fix Slider component shows wrong slide after resizing
351
+ - Fix regression in Slideshow component not transitioning first slide
352
+
353
+ ## 3.21.1 (May 21, 2024)
354
+
355
+ ### Fixed
356
+
357
+ - Fix regression in observer handling
358
+
359
+ ## 3.21.0 (May 17, 2024)
360
+
361
+ ### Added
362
+
363
+ - Add new search navbar modifier to Search component
364
+
365
+ ### Changed
366
+
367
+ - IMPORTANT: Rename `uk-search-navbar` class to `uk-search-medium`
368
+ - IMPORTANT: Rename `@search-navbar-*` variables to `@search-medium-*`
369
+ - IMPORTANT: Rename `@inverse-search-navbar-*` variables to `@inverse-search-medium-*`
370
+ - Rename old search navbar modifier to search medium in Search component
371
+
372
+ ### Fixed
373
+
374
+ - Fix clickable search icon not being in natural ordering for sequential focus navigation
375
+
376
+ ## 3.20.11 (May 17, 2024)
377
+
378
+ ### Fixed
379
+
380
+ - Fix regression in Sortable component
381
+
382
+ ## 3.20.10 (May 13, 2024)
383
+
384
+ ### Removed
385
+
386
+ - Remove `removeClasses()` util function
387
+
388
+ ### Fixed
389
+
390
+ - Fix slide transition in Slider component in Safari
391
+
392
+ ## 3.20.9 (May 8, 2024)
393
+
394
+ ### Added
395
+
396
+ - Add color mode `--uk-inverse` property in all components
397
+
398
+ ### Fixed
399
+
400
+ - Fix race condition in Slider/Slideshow component
401
+ - Fix prompts with double quotes in Modal component
402
+ - Fix infinite loop in Slider component
403
+
404
+ ## 3.20.8 (April 26, 2024)
405
+
406
+ ### Fixed
407
+
408
+ - Fix check for `Elemenent.prototype.checkVisibility` function
409
+ - Fix filter animations in Safari
410
+
411
+ ## 3.20.7 (April 24, 2024)
412
+
413
+ ### Fixed
414
+
415
+ - fix: revert adding esm build for now (breaks resolving logic)
416
+
417
+ ## 3.20.6 (April 24, 2024)
418
+
419
+ ### Fixed
420
+
421
+ - Fix missing esm dist files in package
422
+
423
+ ## 3.20.5 (April 24, 2024)
424
+
425
+ ### Fixed
426
+
427
+ - Fix missing esm export for icons
428
+
429
+ ## 3.20.4 (April 24, 2024)
430
+
431
+ ### Fixed
432
+
433
+ - Fix missing esm export
434
+
435
+ ## 3.20.3 (April 24, 2024)
436
+
437
+ ### Fixed
438
+
439
+ - Fix regression in none browser environment
440
+
441
+ ## 3.20.2 (April 24, 2024)
442
+
443
+ ### Changed
444
+
445
+ - Make gutter overridable through grid classes in Iconnav and Thumbnav components
446
+
447
+ ### Fixed
448
+
449
+ - Fix Switcher component may show multiple items if toggled while previous animation in progress
450
+ - Fix regression in selector engine
451
+
452
+ ## 3.20.1 (April 23, 2024)
453
+
454
+ ### Fixed
455
+
456
+ - Fix regression in Inverse component
457
+
458
+ ## 3.20.0 (April 23, 2024)
459
+
460
+ ### Changed
461
+
462
+ - Improve query selector performance 🏎
463
+ - Queue updates on microtask instead of animation frame to ensure more immediate updates
464
+
465
+ ### Removed
466
+
467
+ - Remove deprecated `closest()` and `within()` functions
468
+
469
+ ### Fixed
470
+
471
+ - Fix lazy loading on target in Toggle component
472
+
473
+ ## 3.19.4 (April 9, 2024)
474
+
475
+ ### Added
476
+
477
+ - Add `hover` mode to `autoplay` option in Video component
478
+
479
+ ## 3.19.2 (March 12, 2024)
480
+
481
+ ### Added
482
+
483
+ - Add center vertical and horizontal classes to Position component
484
+
485
+ ### Fixed
486
+
487
+ - Fix `scrollIntoView()` when target is covered by another element
488
+
489
+ ## 3.19.1 (March 1, 2024)
490
+
491
+ ### Added
492
+
493
+ - Add Bluesky icon
494
+
495
+ ### Fixed
496
+
497
+ - Fix Video component handles fullscreen mode correctly
498
+
499
+ ## 3.19.0 (February 29, 2024)
500
+
501
+ ### Added
502
+
503
+ - Add breakpoint classes for flex direction, dimension and alignment
504
+ - Add `active` option to Slider component
505
+
506
+ ### Changed
507
+
508
+ - Remove obsolete fix for rounding issues in Width component in IE11/Edge
509
+
510
+ ### Fixed
511
+
512
+ - Fix width expand classes mixed with other width classes of higher breakpoints in Width component
513
+ - Fix combination of width auto and expand breakpoint classes
514
+ - Fix logo inverse selector to work with different types of images
515
+ - Fix Tooltips not showing in iOS
516
+ - Fix parallax scrolling for Slideshow/Slider component with finite mode
517
+ - Fix Slider component disables infinite scrolling prematurely
518
+ - Fix Sass sources by renaming spin() (LESS) to adjust-hue() (Sass)
519
+ - Fix Height Match component recalculates its heights, when a font has loaded
520
+
521
+ ## 3.18.3 (February 13, 2024)
522
+
523
+ ### Fixed
524
+
525
+ - Fix dropbar offset in Navbar component
526
+ - Fix autoplay option in Lightbox component
527
+ - Fix height in Height Placeholder component
528
+ - Fix Height Match component to use viewport dimensions as base again
529
+
530
+ ## 3.18.2 (February 9, 2024)
531
+
532
+ ### Fixed
533
+
534
+ - Fix wrong dropbar offset in Navbar component
535
+ - Fix conflict if multiple Dropnav components share the same container
536
+
537
+ ## 3.18.1 (February 7, 2024)
538
+
539
+ ### Changed
540
+
541
+ - Close modal if contained video leaves fullscreen mode
542
+
543
+ ### Fixed
544
+
545
+ - Fix Video component does not pause video if it enters fullscreen mode
546
+ - Fix page scrolls while sorting in Sortable component
547
+ - Fix horizontally overflowing elements are not scrollable in Modal component
548
+ - Fix Height Match component applied to SVG elements
549
+
550
+ ### Removed
551
+
552
+ - Remove Pagekit CMS icon
553
+
554
+ ## 3.18.0 (January 30, 2024)
555
+
556
+ ### Added
557
+
558
+ - Add parallax options to Slider and Slideshow components
559
+ - Add Inverse component to color content with no background depending on intersecting elements beneath
560
+ - Add color mode for default and muted style modifiers in Section, Tile, Card and Overlay components
561
+ - Add Height Placeholder component
562
+ - Add size modifier to Nav component
563
+ - Add link external and arrow up right icons
564
+ - Add X, Mastodon, Telegram, Threads, Signal and YOOtheme icons
565
+
566
+ ### Changed
567
+
568
+ - Replace `none` with `dark` as default for navbar, dropdown and dropbar color modes
569
+ - Twitter icon will show X icon
570
+ - Responsive component uses `aspect-ratio` if available
571
+
572
+ ### Fixed
573
+
574
+ - Fix icons task on Windows
575
+ - Fix Height Match component uses offsetHeight as base
576
+
577
+ ## 3.17.11 (November 21, 2023)
578
+
579
+ ### Fixed
580
+
581
+ - Fix Tooltip component not hiding when used with delay
582
+
583
+ ## 3.17.10 (November 17, 2023)
584
+
585
+ ### Fixed
586
+
587
+ - Fix Tooltip component initialized programmatically
588
+ - Fix Tooltip component not hiding on blur
589
+
590
+ ## 3.17.9 (November 16, 2023)
591
+
592
+ ### Changed
593
+
594
+ - Improve Tooltip performance
595
+
596
+ ### Deprecated
597
+
598
+ - Deprecate `closest()` and `within()` functions
599
+
600
+ ### Fixed
601
+
602
+ - Fix `scrollIntoView()` function scrolls to wrong position
603
+ - Fix Drop and Modal based components remain open when anchor click targets element within
604
+
605
+ ## 3.17.8 (November 2, 2023)
606
+
607
+ ### Fixed
608
+
609
+ - Fix build
610
+
611
+ ## 3.17.7 (November 2, 2023)
612
+
613
+ ### Added
614
+
615
+ - Add `uk-transition-disable` utility class to Transition component
616
+
617
+ ### Fixed
618
+
619
+ - Fix disabling transition during Sticky component size recalculation
620
+
621
+ ## 3.17.6 (October 25, 2023)
622
+
623
+ ### Fixed
624
+
625
+ - Fix regression in Video component causing videos to autoplay with `autoplay` set to `false`
626
+
627
+ ## 3.17.5 (October 24, 2023)
628
+
629
+ ### Deprecated
630
+
631
+ - Deprecate `isInView()` and `intersectRect()` functions
632
+ - Deprecate `target-offset` option in Sticky component
633
+
634
+ ### Changed
635
+
636
+ - Video component uses IntersectionObserver only
637
+
638
+ ### Fixed
639
+
640
+ - Fix Scroll component not detecting covering element correctly
641
+
642
+ ## 3.17.4 (October 18, 2023)
643
+
644
+ ### Fixed
645
+
646
+ - Fix filter animation fade
647
+
648
+ ## 3.17.3 (October 17, 2023)
649
+
650
+ ### Fixed
651
+
652
+ - Fix Grid component applies `uk-grid-stack` class wrongly
653
+
654
+ ## 3.17.2 (October 16, 2023)
655
+
656
+ ### Fixed
657
+
658
+ - Fix `scrollIntoView()` function uses offset left to detect elements that would cover target
659
+ - Fix Height Match component recalculates its heights, when a font has loaded
660
+
661
+ ## 3.17.1 (October 5, 2023)
662
+
663
+ ### Fixed
664
+
665
+ - Fix icon alignment in Pagination component
666
+ - Fix Sticky component overflow scrolling position on resize
667
+ - Fix Cover component no longer uses inline style
668
+
669
+ ## 3.17.0 (September 28, 2023)
670
+
671
+ ### Added
672
+
673
+ - Add modes `pack` (default) and `next` to Grid component's `masonry` option
674
+ - Add `parallax-start`, `parallax-end`, `parallax-justify` option to Grid component
675
+ - Add `close-on-scroll` option to Drop and Dropdown component
676
+ - Add transparent Navbar gets its color modifier from underlying section
677
+ - Add support for `<td>` and `<tr>` elements to `fragment()` function
678
+ - Add 3XL size modifier to Heading component
679
+ - Add support for a CSS Selector in `offsetTop` option in Height Viewport component
680
+
681
+ ### Change
682
+
683
+ - Scroll component scrolls beneath elements covering its target
684
+ - The `closest()` function no longer accepts an array of elements
685
+ - Reset fieldset min-width
686
+
687
+ ## 3.16.27 (September 28, 2023)
688
+
689
+ ### Fixed
690
+
691
+ - Fix Height Viewport component not observing viewport changes with `expand: true`
692
+ - Fix passing a `vh` unit to option `scale` relates to element's height in Parallax component
693
+
694
+ ## 3.16.26 (August 28, 2023)
695
+
696
+ ### Fixed
697
+
698
+ - Fix minified build to use template-strings too
699
+
700
+ ## 3.16.25 (August 28, 2023)
701
+
702
+ ### Added
703
+
704
+ - Add `-source` argument to `prefix` command
705
+
706
+ ### Fixed
707
+
708
+ - Fix Toggle in hover mode does not trigger when scrolling in Firefox
709
+ - Fix Parallax component stop parsing
710
+
711
+ ## 3.16.24 (August 1, 2023)
712
+
713
+ ### Fixed
714
+
715
+ - Fix delayed show in Drop component shows drop, although toggle is no longer hovered
716
+ - Fix regression in Slider component
717
+ - Fix disconnecting Sticky component
718
+
719
+ ## 3.16.23 (July 26, 2023)
720
+
721
+ ### Fixed
722
+
723
+ - Fix potential rounding issues in `offset()` function, when used as setter
724
+ - Fix to ensure Slider items have `max-width: 100%`
725
+ - Fix Dropdowns in Dropnav and Navbar components are initialized too late causing CLS
726
+
727
+ ## 3.16.22 (June 22, 2023)
728
+
729
+ ### Fixed
730
+
731
+ - Fix existing notification container has to be visible before appending notification
732
+
733
+ ## 3.16.21 (June 13, 2023)
734
+
735
+ ### Fixed
736
+
737
+ - Fix release changelog
738
+
739
+ ## 3.16.20 (June 13, 2023)
740
+
741
+ ### Fixed
742
+
743
+ - Fix Toggle component with `cls` option in hover mode
744
+ - Fix `aria-roledescription` attribute in Slider nav component
745
+
746
+ ## 3.16.19 (May 24, 2023)
747
+
748
+ ### Fixed
749
+
750
+ - Fix Parallax component responsiveness on resize of scroll container
751
+
752
+ ## 3.16.18 (May 22, 2023)
753
+
754
+ ### Changed
755
+
756
+ - Modal prompt dialog selects text in input
757
+ - Sticky component sets position context with `!important` modifier
758
+
759
+ ### Fixed
760
+
761
+ - Fix keyboard navigation in Navbar component
762
+
763
+ ## 3.16.17 (May 9, 2023)
764
+
765
+ ### Added
766
+
767
+ - Add i18n labels for Search Icons
768
+
769
+ ### Fixed
770
+
771
+ - Fix Toggle component uses anchor element's hash as target fallback
772
+
773
+ ## 3.16.16 (May 8, 2023)
774
+
775
+ ### Removed
776
+
777
+ - Remove `Deferred` util class
778
+
779
+ ### Fixed
780
+
781
+ - Fix auto pausing videos in Video component
782
+ - Fix Tooltips are not removed from Dom if showing is prevented
783
+ - Fix Switcher component not initializing properly
784
+ - Fix Tooltip generates duplicate id
785
+ - Fix calculating sets in Slider component with `center` option enabled
786
+ - Fix JavaScript error in Parallax component
787
+
788
+ ## 3.16.15 (April 14, 2023)
789
+
790
+ ### Fixed
791
+
792
+ - Fix Drop component height if `inset: true` and `stretch: true`
793
+ - Fix Drop component `maxWidth` property with fractional viewport view
794
+ - Fix Sticky component listens for resize of itself as long as no transition is in Progress
795
+
796
+ ## 3.16.14 (April 6, 2023)
797
+
798
+ ### Changed
799
+
800
+ - Make Navbar/Dropnav items tabbable again
801
+
802
+ ### Fixed
803
+
804
+ - Fix using `rgb` and `rgba` values in color stops in Parallax component
805
+ - Fix setting `will-change` css property in Parallax component for camelCased props
806
+ - Fix Slider removes `tabindex` from focusable elements in slides
807
+ - Fix class `uk-svg` gets added to `<svg>` element only in Svg component
808
+
809
+ ## 3.16.13 (March 28, 2023)
810
+
811
+ ### Fixed
812
+
813
+ - Fix Sass sources
814
+ - Fix Scrollspy Nav component updates state once shown
815
+
816
+ ## 3.16.12 (March 27, 2023)
817
+
818
+ ### Fixed
819
+
820
+ - Fix push history state in Scroll component if href differs from current url only
821
+
822
+ ## 3.16.11 (March 24, 2023)
823
+
824
+ ### Changed
825
+
826
+ - Remove roles `menubar` and `menuitem` from Navbar component
827
+ - Add `watch` to component options API
828
+
829
+ ## 3.16.10 (March 20, 2023)
830
+
831
+ ### Fixed
832
+
833
+ - Fix including UIkit scripts at the end of `body` element
834
+
835
+ ## 3.16.9 (March 18, 2023)
836
+
837
+ ### Fixed
838
+
839
+ - Fix reactivity in Toggle component
840
+ - Fix regression in Scrollspy component
841
+
842
+ ## 3.16.8 (March 17, 2023)
843
+
844
+ ### Fixed
845
+
846
+ - Fix focus style for dropdowns when used with Inverse component
847
+ - Fix regression in Lightbox component
848
+
849
+ ## 3.16.7 (March 16, 2023)
850
+
851
+ ### Added
852
+
853
+ - Add hidden visually class for assistive technologies to Visibility component
854
+ - Make toggle classes to display elements on hover or focus accessible to screen readers in Visibility component
855
+
856
+ ### Changed
857
+
858
+ - Change boot behavior: if script is loaded synchronous, UIkit boots as soon as body element is available
859
+
860
+ ### Fixed
861
+
862
+ - Fix component distributions
863
+ - Fix Slider/Slideshow component autoplay in Firefox
864
+ - Fix using input of type range in Modal component on touch devices
865
+ - Fix accessibility in Slideshow/Slider and Nav component
866
+ - Fix prevent initial transition in Sticky component
867
+ - Fix keyboard navigation in Navbar component
868
+ - Fix importing UIkit in Next.js
869
+
870
+ ## 3.16.6 (March 10, 2023)
871
+
872
+ ### Fixed
873
+
874
+ - Fix Sass sources
875
+ - Fix `createComponent` call without `element` parameter
876
+
877
+ ## 3.16.5 (March 10, 2023)
878
+
879
+ ### Fixed
880
+
881
+ - Fix functional component initialization
882
+ - Fix `pause-on-hover` option in Slider/Slideshow component
883
+
884
+ ## 3.16.4 (March 8, 2023)
885
+
886
+ ### Added
887
+
888
+ - Add `observe` to component options API
889
+
890
+ ### Fixed
891
+
892
+ - Fix default i18n option for Modal dialogs
893
+ - Fix Slideshow initially shows last slide first
894
+ - Fix Height Match component does not change height while updating
895
+ - Fix Slider reactivity when a slide is hidden/shown
896
+ - Fix Scroll component correctly changes history state
897
+
898
+ ## 3.16.3 (February 27, 2023)
899
+
900
+ ### Fixed
901
+
902
+ - Fix object type coercion
903
+
904
+ ## 3.16.2 (February 27, 2023)
905
+
906
+ ### Fixed
907
+
908
+ - Fix event delegation did not delete `current` property causing parent event handler to trigger
909
+ - Fix focusable elements within none visible slides are no longer focusable in Slider component
910
+ - Fix opened Drop component prevents smooth scrolling of document on iOS
911
+
912
+ ## 3.16.1 (February 23, 2023)
913
+
914
+ ### Fixed
915
+
916
+ - Fix missing dropnav.scss file from dist
917
+
918
+ ## 3.16.0 (February 23, 2023)
919
+
920
+ ### Added
921
+
922
+ - Add WAI-ARIA roles, states and properties to interactive JavaScript components
923
+ - Add WAI-ARIA keyboard interaction pattern to interactive JavaScript components
924
+ - Add language internationalization (i18n) for interactive JavaScript components
925
+ - Add `i18n` option to corresponding JavaScript components
926
+ - Add Dropnav component
927
+ - Add parent icon to Drop component
928
+ - Add support for YouTube Shorts URLs in Lightbox component
929
+ - Add Android, Android Robot, Apple and Microsoft icons
930
+ - Add `uikit:init` event triggered on document before components initialize
931
+ - Add `countdownstart`, `countdownstop` and `countdownend` events to Countdown component
932
+
933
+ ### Changed
934
+
935
+ - IMPORTANT: Remove `.uk-dropdown-close` from Dropdown component. Use `uk-drop-close` instead
936
+ - IMPORTANT: Remove `.uk-dropdown-grid` from Dropdown component. Use `uk-drop-grid` instead
937
+ - IMPORTANT: Remove `.uk-navbar-dropdown-close` from Navbar component. Use `uk-drop-close` instead
938
+ - IMPORTANT: Remove `.uk-navbar-dropdown-grid` from Navbar component. Use `uk-drop-grid` instead
939
+ - IMPORTANT: Remove error message options in Upload component, use `i18n` option
940
+ - IMPORTANT: Rename `labels` default property and option on `UIkit.modal` to `i18n`
941
+ - Move functional CSS from Dropdown, Dropbar and Navbar component to Drop component
942
+
943
+ ### Removed
944
+
945
+ - Remove `ajax()` util function, use native `fetch` instead
946
+ - Remove `getImage()` util function
947
+
948
+ ## 3.15.25 (February 23, 2023)
949
+
950
+ ### Fixed
951
+
952
+ - Fix Dropbar partially closing before opening when switching between Navbar items
953
+ - Fix Parallax component updating too late during slide animation in Filter component
954
+
955
+ ## 3.15.24 (February 9, 2023)
956
+
957
+ ### Fixed
958
+
959
+ - Fix Tooltip component appends to `container` option, prevents margins in scroll container
960
+ - Fix regression in `scrollParents` function
961
+
962
+ ## 3.15.23 (February 1, 2023)
963
+
964
+ ### Fixed
965
+
966
+ - Fix prevent background scrolling in Safari
967
+
968
+ ## 3.15.22 (January 19, 2023)
969
+
970
+ ### Added
971
+
972
+ - Add Eye and Eye Slash icons
973
+
974
+ ### Changed
975
+
976
+ - Update Lifesaver, Paint Bucket and Video Camera icons to fit outline style
977
+
978
+ ### Fixed
979
+
980
+ - Fix Scroll component scrolls to elements by name
981
+ - Fix Tooltip appends itself to the closest scroll container if within element referenced by `container` option
982
+
983
+ ## 3.15.21 (January 12, 2023)
984
+
985
+ ### Added
986
+
987
+ - Add larger gap on larger viewports to Navbar component in UIkit theme
988
+ - Add gradient for text background to Text component in UIkit theme
989
+ - Add gradient for thumbnav item to Thumbnav component in UIkit theme
990
+
991
+ ## 3.15.20 (January 5, 2023)
992
+
993
+ ### Changed
994
+
995
+ - Improve close icon not overlaying content in Modal component in UIkit theme
996
+
997
+ ### Fixed
998
+
999
+ - Fix nav in Dropdown component not overriding properties of Nav component
1000
+ - Fix disable native position sticky in Sticky component if parents `overflow` is not set to visible
1001
+ - Fix Drop positioning
1002
+
1003
+ ## 3.15.19 (December 20, 2022)
1004
+
1005
+ ### Changed
1006
+
1007
+ - `removeAttr` no longer accepts a space separated list of attribute names
1008
+
1009
+ ### Fixed
1010
+
1011
+ - Fix stacking context if using `position: sticky` in Sticky component
1012
+ - Fix height calculation for `box-sizing: border-box` on Accordion content
1013
+ - Fix error in console if image can't be loaded in Svg component with `stroke-animation: true`
1014
+ - Fix `scrollIntoView()` no longer considers elements with `position: clip` as scrollable parents
1015
+ - Fix Slider shows not centered initially with `center: true`
1016
+
1017
+ ## 3.15.18 (December 13, 2022)
1018
+
1019
+ ### Fixed
1020
+
1021
+ - Fix positioning of Tooltip and Drop components if target is inline element
1022
+ - Fix Sticky component resizing on `clsBelow` class causes stutter
1023
+ - Fix Sticky component correctly resets on becoming inactive
1024
+ - Fix detection of finite mode in Slider component with `center` option enabled
1025
+
1026
+ ## 3.15.17 (December 6, 2022)
1027
+
1028
+ ### Fixed
1029
+
1030
+ - Fix detecting unit in Parallax component stops
1031
+
1032
+ ## 3.15.16 (December 5, 2022)
1033
+
1034
+ ### Changed
1035
+
1036
+ - Add `will-change` css property to Parallax elements
1037
+
1038
+ ### Fixed
1039
+
1040
+ - Fix for elements with `position: sticky` to keep their position when Offcanvas is opened
1041
+ - Fix regression in clicking hash links in Modal component that match `sel-close` option
1042
+ - Fix jump after animation if Accordion content has `padding-bottom`
1043
+ - Fix Sticky listens for resize of itself while not positioned `fixed`
1044
+ - Fix Sticky positioning on mobile devices
1045
+
1046
+ ## 3.15.15 (December 1, 2022)
1047
+
1048
+ ### Changed
1049
+
1050
+ - Remove `offsetTop` and `offsetLeft` options from Image and Scrollspy component. Use `margin` instead.
1051
+ - Sticky component uses native `position: sticky` if possible
1052
+
1053
+ ### Fixed
1054
+
1055
+ - Fix Scroll and Scrollspy Nav components handle same site links only
1056
+ - Fix Drop positioning within not scrollable viewport
1057
+ - Fix overscroll behavior in Dropbar
1058
+ - Fix conversion of viewport height units with `toPx()` on mobile devices
1059
+
1060
+ ## 3.15.14 (November 21, 2022)
1061
+
1062
+ ### Fixed
1063
+
1064
+ - Fix error thrown when keyboard navigating Navbar component
1065
+
1066
+ ## 3.15.13 (November 17, 2022)
1067
+
1068
+ ### Fixed
1069
+
1070
+ - Fix Sticky component does not reset width on resize
1071
+
1072
+ ## 3.15.12 (November 4, 2022)
1073
+
1074
+ ### Added
1075
+
1076
+ - Add `uikit:init` event triggered on document before components initialize
1077
+
1078
+ ### Fixed
1079
+
1080
+ - Fix placeholder has no width if Sticky element's width depends on its content
1081
+ - Fix Slider/Slideshow Parallax respect `media` option
1082
+ - Fix Video component with `autoplay: true` no longer resumes autoplay on scroll after being paused
1083
+ - Fix width/height passed through `attrs` to video item in Lightbox component
1084
+ - Fix regression in Sortable component (elements are hidden after sorting)
1085
+
1086
+ ## 3.15.11 (October 25, 2022)
1087
+
1088
+ ### Added
1089
+
1090
+ - Add Crosshairs icon
1091
+
1092
+ ### Removed
1093
+
1094
+ - Remove `focusable` option from Icon and SVG component
1095
+
1096
+ ### Fixed
1097
+
1098
+ - Fix content not focusable with keyboard in Scrollspy component
1099
+ - Fix removing Lightbox causes JavaScript error
1100
+ - Fix cases where Switcher component wouldn't correctly initialize in Chrome
1101
+ - Fix Drop component positioning if target and element are not within same scroll parent
1102
+
1103
+ ## 3.15.10 (September 21, 2022)
1104
+
1105
+ ### Fixed
1106
+
1107
+ - Fix regression in Filter component animation
1108
+ - Fix case where UIkit breaks if a form with an input named `attributes` exits
1109
+
1110
+ ## 3.15.9 (September 19, 2022)
1111
+
1112
+ ### Fixed
1113
+
1114
+ - Fix WAI-ARIA rules for Tooltip component
1115
+ - Fix slide animation in Sortable component
1116
+ - Fix input fields reverting to previous value while sorting in Sortable component
1117
+
1118
+ ## 3.15.8 (September 14, 2022)
1119
+
1120
+ ### Fixed
1121
+
1122
+ - Fix column break within the list item in List component
1123
+ - Fix Toggle component when using mouse and keyboard simultaneously
1124
+ - Fix register passive event handler in Slider component
1125
+
1126
+ ## 3.15.7 (September 13, 2022)
1127
+
1128
+ ### Changed
1129
+
1130
+ - Improve Accordion component keeps toggle in view when toggling
1131
+
1132
+ ### Fixed
1133
+
1134
+ - Fix Slider drag stops on scroll now
1135
+
1136
+ ## 3.15.6 (August 31, 2022)
1137
+
1138
+ ### Changed
1139
+
1140
+ - Modal closes on click on hash links
1141
+
1142
+ ### Fixed
1143
+
1144
+ - Fix check for selectable Text in Slider drag
1145
+ - Fix reactivity in Switcher component
1146
+
1147
+ ## 3.15.5 (August 24, 2022)
1148
+
1149
+ ### Fixed
1150
+
1151
+ - Fix accordion items wrap themselves during transition
1152
+ - Fix regression in Video component (no autoplay if within a Scrollspy)
1153
+
1154
+ ## 3.15.4 (August 23, 2022)
1155
+
1156
+ ### Fixed
1157
+
1158
+ - Fix detecting unit in Parallax component stops
1159
+ - Fix regression in transition animations in Drop component
1160
+ - Fix regression in Filter component
1161
+
1162
+ ## 3.15.3 (August 12, 2022)
1163
+
1164
+ ### Changed
1165
+
1166
+ - Remove divider from nav header for divider modifier in Nav component
1167
+
1168
+ ### Fixed
1169
+
1170
+ - Fix Slideshow no longer completely resets upon adding slides
1171
+
1172
+ ## 3.15.2 (August 8, 2022)
1173
+
1174
+ ### Added
1175
+
1176
+ - Add `boundary-x` and `boundary-y` options to Drop component
1177
+
1178
+ ### Fixed
1179
+
1180
+ - Remove click event listener in Scroll component correctly
1181
+
1182
+ ## 3.15.1 (July 15, 2022)
1183
+
1184
+ ### Changed
1185
+
1186
+ - Video component will set `allow="autoplay"` on iframe elements
1187
+ - Allow additional props to be set on Navbar component to initialize its Drops with
1188
+
1189
+ ### Fixed
1190
+
1191
+ - Fix Navbar component resize does not trigger reposition of dropbar
1192
+ - Fix register scroll listener as passive
1193
+
1194
+ ## 3.15.0 (July 11, 2022)
1195
+
1196
+ ### Added
1197
+
1198
+ - Add Dropbar component
1199
+ - Add `target`, `target-x`, `target-y` and `inset` options to Drop component
1200
+ - Add `stretch` and `bg-scroll` options to Drop component
1201
+ - Add `shift` option to Drop component
1202
+ - Add `slide` and `reveal` animations to Drop component
1203
+ - Add `animate-out` option to Drop component
1204
+ - Add open and close animation to toggle icon in Navbar component
1205
+ - Add dropdown large modifier to Dropdown and Navbar component
1206
+ - Add gap variables to navbar items in Navbar component
1207
+ - Add color mode variables for dropdowns in Dropdown and Navbar component
1208
+ - Add navbar parent icon to Navbar component
1209
+ - Add secondary style modifier to Nav component
1210
+ - Add font size variables to nav and sublist in Nav component
1211
+ - Add padding variables for small breakpoint to Modal component
1212
+ - Add zero z-index utility class to Position component
1213
+ - Add support for `picture` element to logo in Utility component
1214
+ - Add box sizing classes to Utility component
1215
+ - Support scroll parent as viewport in Height Viewport component
1216
+ - Add ARIA `role="alert"` to Notification component
1217
+
1218
+ ### Changed
1219
+
1220
+ - IMPORTANT: Remove `.uk-nav-parent-icon` from Nav component. Use `uk-nav-parent-icon` attribute on items instead
1221
+ - IMPORTANT: Remove `*-justify` in `pos` option from Drop and Dropdown components. Use new `stretch` option instead
1222
+ - IMPORTANT: Remove `boundary-align` option from Drop and Dropdown components. Use new `target` option instead
1223
+ - IMPORTANT: Change `flip` option values in Drop and Dropdown components. Use new `shift` option too
1224
+ - IMPORTANT: Remove `display` option in Drop and Dropdown components. Use new `auto-update` option instead.
1225
+ - IMPORTANT: Rename `@offcanvas-bar-width-m` to `@offcanvas-bar-width-s`
1226
+ - IMPORTANT: Rename `@offcanvas-bar-padding-vertical-m` to `@offcanvas-bar-padding-vertical-s`
1227
+ - IMPORTANT: Rename `@offcanvas-bar-padding-horizontal-m` to `@offcanvas-bar-padding-horizontal-s`
1228
+ - IMPORTANT: Rename `@nav-primary-item-font-size` to `@nav-primary-font-size`
1229
+ - IMPORTANT: Rename `@nav-primary-item-line-height` to `@nav-primary-line-height`
1230
+ - IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-top` to `@navbar-dropdown-dropbar-padding-top`
1231
+ - IMPORTANT: Rename `@navbar-dropdown-dropbar-margin-bottom` to `@navbar-dropdown-dropbar-padding-bottom`
1232
+ - IMPORTANT: Remove style from `.uk-navbar-dropbar`. Now uses `uk-dropbar`
1233
+
1234
+ ### Removed
1235
+
1236
+ - Remove `getCssVar()` utility function
1237
+
1238
+ ### Fixed
1239
+
1240
+ - Fix body is no longer scrollable in Modal component with overlay
1241
+ - Fix `offsetPosition()` adds `border-top` of offsetParents
1242
+ - Fix dragging in Slider component on iOS
1243
+ - Fix Drop component no longer flips, if it does not fit into scroll area
1244
+ - Fix Drop component alignment within Dropbar
1245
+ - Fix ensure write updates aren't called if component is already disconnected
1246
+ - Fix Offcanvas component no longer overflows document if isn't wide enough
1247
+ - Remove margin from the last-child within dropdowns in Dropdown and Navbar components
1248
+
1249
+ ## 3.14.3 (May 27, 2022)
1250
+
1251
+ ### Fixed
1252
+
1253
+ - Fix compatibility with iOS < 14
1254
+ - Fix regression in Parallax component
1255
+
1256
+ ## 3.14.2 (May 27, 2022)
1257
+
1258
+ ### Fixed
1259
+
1260
+ - Fix logo image not working with text align in Utility component
1261
+ - Fix Scroll component on iOS 12
1262
+ - Fix offset calculation in Drop component
1263
+ - Fix `-justify` positioning in Drop component
1264
+ - Fix Dropbar handles resizing Drop components
1265
+ - Fix Toggle component in `mode:media` default prevents click event
1266
+ - Fix Toggle component not default preventing touch click on anchor with closed target
1267
+ - Fix Parallax component background image positioning
1268
+ - Make content clickable for sticky cover and reveal effects
1269
+ - Revert: Height Viewport component sets `uk-height-viewport` class to reduce initial layout shifts
1270
+
1271
+ ## 3.14.1 (May 3, 2022)
1272
+
1273
+ ### Added
1274
+
1275
+ - Add `box-shadow` to `toggleHeight()` hide properties
1276
+ - Add adaptive velocity to Alert and Accordion components
1277
+
1278
+ ### Changed
1279
+
1280
+ - Set `transition` option to `ease` by default in Togglable mixin
1281
+
1282
+ ### Fixed
1283
+
1284
+ - Fix toggling accordion item while transition is in progress
1285
+ - Fix Drop positioning with `boundaryAlign: true`
1286
+ - Fix Scrollspy component not triggering in some cases
1287
+ - Fix Slider component showing wrong initial index
1288
+
1289
+ ## 3.14.0 (April 27, 2022)
1290
+
1291
+ ### Added
1292
+
1293
+ - Add position shifting to Drop and Dropdown components
1294
+ - Add axis flipping if overflowing on both sides to Drop and Dropdown components
1295
+ - Add `max-width` to prevent overflowing the viewport to Drop and Dropdown components
1296
+ - Add `display` option to Drop and Dropdown components
1297
+ - Add support for negative `start` value in Sticky component
1298
+ - Add `overflow-flip` option to Sticky component
1299
+ - Add navbar justify to Navbar component
1300
+ - Add subtitle classes to Nav, Dropdown and Navbar components
1301
+ - Add support for `vw`,`vh`,`%` and `px` units to scale property in Parallax component
1302
+ - Add resize horizontal class to Utility component
1303
+
1304
+ ### Changed
1305
+
1306
+ - Rename `top` and `bottom` options to `start` and `end` in Sticky component
1307
+ - Allow text to wrap into the next line for navs in Dropdown component
1308
+
1309
+ ### Removed
1310
+
1311
+ - Remove `position: auto` option in Sticky component, use `overflow-flip` option instead
1312
+ - Remove `overflow-x: hidden` on html element, while horizontal animation is active
1313
+
1314
+ ### Fixed
1315
+
1316
+ - Fix dropbar dropdown alignment if boundary-align is true
1317
+ - Fix viewport helper functions take border into account
1318
+ - Fix Sticky component responsiveness on window resize
1319
+ - Fix Cover component correctly applies ratio if only one of width/height is provided
1320
+ - Fix responsiveness in Grid, Margin and Height Match component
1321
+
1322
+ ## 3.13.10 (April 20, 2022)
1323
+
1324
+ ### Fixed
1325
+
1326
+ - Revert: Fix reposition Drop on scroll
1327
+ - Fix Toggle component does not `defaultPrevent()` click on anchor with touch gesture
1328
+ - Fix Sticky component uses wrong offsetParent while it's positioned fixed
1329
+
1330
+ ## 3.13.9 (April 20, 2022)
1331
+
1332
+ ### Fixed
1333
+
1334
+ - Fix release
1335
+
1336
+ ## 3.13.8 (April 20, 2022)
1337
+
1338
+ ### Changed
1339
+
1340
+ - Scrollspy component uses IntersectionObserver instead of scroll/resize events
1341
+
1342
+ ### Fixed
1343
+
1344
+ - Fix Drop/Dropdowns component does not close on clicked `.uk-(drop|dropdown)-close` selector
1345
+ - Fix Accordion initially not closed
1346
+ - Fix Height Match component not matching correctly
1347
+ - Fix Margin component does not correctly listen for resize
1348
+ - Fix regression in Sticky component affecting height of placeholder
1349
+ - Fix Toggle not toggling after re-entering button with mouse before drop has closed itself
1350
+ - Fix reposition Drop on scroll
1351
+
1352
+ ## 3.13.7 (April 1, 2022)
1353
+
1354
+ ### Fixed
1355
+
1356
+ - Fix regression in Drop component not updating its width if alignment is set to `justify`
1357
+ - Fix regression in Height Match component not updating its height when resized
1358
+
1359
+ ## 3.13.6 (April 1, 2022)
1360
+
1361
+ ### Removed
1362
+
1363
+ - Image component no longer sets a `background-size` for elements with `background-size` set to `auto`
1364
+
1365
+ ### Fixed
1366
+
1367
+ - Fix Position component
1368
+ - Fix regression in Upload component with `multiple` option disabled
1369
+ - Fix regression in Height Viewport component with `expand` option enabled
1370
+ - Fix regression in Slider/Slideshow Parallax
1371
+
1372
+ ## 3.13.5 (March 28, 2022)
1373
+
1374
+ ### Fixed
1375
+
1376
+ - Fix regression in Drop component's `offset` option
1377
+ - Fix initial values for `@navbar-dropdown-margin` and `@navbar-dropdown-dropbar-margin-top`
1378
+
1379
+ ## 3.13.4 (March 25, 2022)
1380
+
1381
+ ### Fixed
1382
+
1383
+ - Fix Tooltip margin
1384
+
1385
+ ## 3.13.3 (March 25, 2022)
1386
+
1387
+ ### Fixed
1388
+
1389
+ - Fix importing UIkit in Next.js
1390
+
1391
+ ## 3.13.2 (March 25, 2022)
1392
+
1393
+ ### Changed
1394
+
1395
+ - Use custom property for direction offset in components based on Position mixin
1396
+ - Add max-width to drops in Drop, Dropdown and Navbar components
1397
+
1398
+ ### Removed
1399
+
1400
+ - Remove dropbar push mode from Navbar component
1401
+
1402
+ ### Fixed
1403
+
1404
+ - Fix dropbar dropdown alignment
1405
+ - Fix dropbar dropdown top margin flickering
1406
+ - Fix Switcher component with disabled toggles
1407
+ - Fix responsiveness in Responsive component
1408
+ - Fix video autoplay
1409
+ - Fix importing UIkit in Next.js
1410
+
1411
+ ## 3.13.1 (March 18, 2022)
1412
+
1413
+ ### Fixed
1414
+
1415
+ - Fix Switcher component with disabled toggles
1416
+ - Fix regression in Cover component
1417
+
1418
+ ## 3.13.0 (March 18, 2022)
1419
+
1420
+ ### Added
1421
+
1422
+ - Add support for `<img>` element to icon image class in Icon component
1423
+
1424
+ ### Changed
1425
+
1426
+ - Improve performance for large sites
1427
+ - Custom components have to listen for `resize` and `scroll` updates manually
1428
+
1429
+ ### Removed
1430
+
1431
+ - Remove Edge Legacy (EdgeHTML) support
1432
+ - Remove Safari fallback for `focus-visible`
1433
+ - Remove deprecated Gif component
1434
+ - Remove option `width-element` in Sticky component
1435
+
1436
+ ### Fixed
1437
+
1438
+ - Fix list bullet regression in List component
1439
+ - Fix regression in Modal component with `uk-modal-dialog` class
1440
+ - Fix Sticky component notices change in its offset parent's position
1441
+ - Fix Scrollspy component does not apply animation classes on hide
1442
+
1443
+ ## 3.12.2 (March 14, 2022)
1444
+
1445
+ ### Fixed
1446
+
1447
+ - Fix regression in Slider/Slideshow touch gestures
1448
+
1449
+ ## 3.12.1 (March 14, 2022)
1450
+
1451
+ ### Fixed
1452
+
1453
+ - Fix List component used with flex utility classes
1454
+
1455
+ ## 3.12.0 (March 14, 2022)
1456
+
1457
+ ### Added
1458
+
1459
+ - Add support for `<picture>` element to Image component
1460
+ - Add `sources` option to emulate `<picture>` element for background images to Image component
1461
+ - Add `loading` option to avoid lazy loading background images in first visible viewport to Image component
1462
+ - Add support for `loading="lazy"` attribute to SVG component
1463
+ - Add `position` option with `top`, `bottom` and `auto` values to Sticky component
1464
+ - Add support for basic math operands in `offset` option of Sticky component
1465
+ - Add animation stop positions to Parallax component
1466
+ - Add object fit and position classes to Utility component
1467
+ - Add height viewport classes to Height component
1468
+
1469
+ ### Changed
1470
+
1471
+ - Image elements need `width` and `height` attributes to prevent layout shifts
1472
+ - Image component no longer relies on session storage to check for cached images to immediately show an image
1473
+ - Slider and Switcher remove native `loading="lazy"` attribute from adjacent slides
1474
+ - Accordion, Drop, Switcher and Toggle remove native `loading="lazy"` attribute from their children when entering the viewport
1475
+ - Improve sticky behavior if sticky content is larger than the viewport
1476
+ - Sticky component's `bottom` option checks for bottom padding if sticky element is within referenced element
1477
+ - Height Viewport component sets `uk-height-viewport` class to reduce initial layout shifts
1478
+
1479
+ ### Deprecated
1480
+
1481
+ - Deprecate `uk-img` for `<img>` element: Use native `loading="lazy"` attribute instead
1482
+
1483
+ ### Removed
1484
+
1485
+ - Remove IE11 support
1486
+ - Remove `data-width` and `data-height` for `<img>` element from Image component. Use native attributes instead.
1487
+
1488
+ ### Fixed
1489
+
1490
+ - Fix infinite sliding in Slider component with equally sized slides
1491
+ - Fix Slider component sets calculation
1492
+ - Fix dropdowns not closing in Navbar component when hovering dropbar and navigation with keyboard
1493
+ - Fix dropdown no longer closes if pointer is still moving towards it
1494
+ - Fix `fadein` not transformed correctly to `fade-in` in scss build
1495
+ - Fix Sticky component setting wrong margin for placeholder
1496
+ - Fix Sticky placeholder sets height with fraction
1497
+ - Fix Sticky component does not animate in if scroll position equals top offset
1498
+ - Fix Sticky component prevents transition on `selTarget` if forced to hide for recalculation
1499
+ - Fix Parallax component initial jump in background image
1500
+
1501
+ ## 3.11.1 (February 7, 2022)
1502
+
1503
+ ### Fixed
1504
+
1505
+ - Fix scoping css to exclude `:root` selector
1506
+ - Fix `toPx()` correctly uses offsetHeight/Width
1507
+
1508
+ ## 3.11.0 (February 7, 2022)
1509
+
1510
+ ### Added
1511
+
1512
+ - Add `start` and `end` options to Parallax component
1513
+ - Add negative z-index utility class to Position component
1514
+ - Add Sticky Parallax test
1515
+
1516
+ ### Deprecated
1517
+
1518
+ - Deprecate `viewport` option in Parallax component: Use `end` option instead
1519
+
1520
+ ### Fixed
1521
+
1522
+ - Use same position context when uk-sticky sticks or not
1523
+ - Fix interdependent computed properties being evaluated too often
1524
+ - Fix `getIndex()` returns `-1` instead of `NaN` if called with empty elements parameter
1525
+ - Fix Scrollspy component no longer sets class `false`
1526
+ - Fix Parallax component no longer rounds values to two digits after comma
1527
+ - Fix Parallax component running backwards with 'viewport' option set to a value < 1
1528
+ - Fix Parallax component easing option for values < -1 || > 1
1529
+
1530
+ ## 3.10.1 (January 19, 2022)
1531
+
1532
+ ### Fixed
1533
+
1534
+ - Fix vertical divider width in Divider component
1535
+ - Fix usage of `data-` prefix for Cover and Responsive component
1536
+ - Fix pointer events for iframes in Cover component
1537
+ - Fix Slideshow component no longer throws if items list does not exist
1538
+ - Fix space key no longer triggers Toggle on `<input>` element
1539
+
1540
+ ## 3.10.0 (January 12, 2022)
1541
+
1542
+ ### Added
1543
+
1544
+ - Add intrinsic widths to Width component
1545
+ - Add 'aria-haspopup' attribute to Drop component's toggle
1546
+ - Add padding variable to search icon in Search component
1547
+ - Add position bottom variable to box-shadow bottom in Utility component
1548
+
1549
+ ### Changed
1550
+
1551
+ - Disable Sticky component if it's element is higher than viewport
1552
+
1553
+ ### Fixed
1554
+
1555
+ - Fix initial iframe width for `uk-responsive` which caused an expanded viewport on iOS devices
1556
+ - Fix link toggle style if not hovered
1557
+ - Fix compiling Slideshow css in rtl mode
1558
+ - Fix Sortable component no longer scrolls `overflow: hidden` containers
1559
+ - Fix 'yarn watch' not watching changes in less files
1560
+ - Fix `domPath()` for elements within forms that include inputs with name 'id'
1561
+
1562
+ ## 3.9.4 (November 25, 2021)
1563
+
1564
+ ### Fixed
1565
+
1566
+ - Fix Sticky position when bottom option is used
1567
+
1568
+ ## 3.9.3 (November 18, 2021)
1569
+
1570
+ ### Fixed
1571
+
1572
+ - Fix logo image alignment if logo line-height is larger than the image
1573
+
1574
+ ## 3.9.2 (November 11, 2021)
1575
+
1576
+ ### Fixed
1577
+
1578
+ - Fix build scripts for Windows users
1579
+ - Fix css in Leader component
1580
+ - Fix division deprecation warnings in Sass source
1581
+
1582
+ ## 3.9.1 (November 10, 2021)
1583
+
1584
+ ### Changed
1585
+
1586
+ - Update Less mixin calls to use parentheses
1587
+
1588
+ ## 3.9.0 (November 10, 2021)
1589
+
1590
+ ### Changed
1591
+
1592
+ - Upgrade Less to version 4
1593
+
1594
+ ## 3.8.1 (November 5, 2021)
1595
+
1596
+ ### Added
1597
+
1598
+ - Add Less variables for outline style
1599
+
1600
+ ### Changed
1601
+
1602
+ - Make padding large a little bigger on small devices
1603
+ - Change logo color to 'emphasis'
1604
+
1605
+ ### Fixed
1606
+
1607
+ - Fix scrollIntoView function with offset argument provided
1608
+
1609
+ ## 3.8.0 (October 28, 2021)
1610
+
1611
+ ### Changed
1612
+
1613
+ - Refactor focus styles to use `focus-visible` in all components
1614
+ - Use custom properties in Position component
1615
+ - Make transition classes work with position or cover classes on the same element
1616
+ - Refactor animation component
1617
+
1618
+ ### Changed
1619
+
1620
+ - Improve sticky performance when bottom option is used
1621
+
1622
+ ### Fixed
1623
+
1624
+ - Revert setting focus to modal/offcanvas toggle after close
1625
+
1626
+ ## 3.7.6 (October 8, 2021)
1627
+
1628
+ ### Fixed
1629
+
1630
+ - Fix Drop closing if clicked within through touch event
1631
+ - Fix Slider not animating slides if slide wider than slide container
1632
+
1633
+ ## 3.7.5 (October 5, 2021)
1634
+
1635
+ ### Change
1636
+
1637
+ - Improve Cover component performance if applied to none video
1638
+
1639
+ ### Fixed
1640
+
1641
+ - Fix toggle behavior in Toggle component
1642
+ - Fix Toggle component no longer sets tabindex in media mode
1643
+
1644
+ ## 3.7.4 (September 23, 2021)
1645
+
1646
+ ### Added
1647
+
1648
+ - Add itemNav option to Switcher component
1649
+
1650
+ ### Changed
1651
+
1652
+ - Focus modal/offcanvas upon opening
1653
+
1654
+ ### Fixed
1655
+
1656
+ - Fix regression in Toggle component
1657
+ - Fix keyboard navigation in Navbar component
1658
+ - Fix navbar toggle style and navbar item inverse style if dropdown is open
1659
+
1660
+ ## 3.7.3 (September 9, 2021)
1661
+
1662
+ ### Added
1663
+
1664
+ - Add tile hover hooks
1665
+
1666
+ ### Fixed
1667
+
1668
+ - Fix toggle behavior in Toggle component
1669
+ - Fix navbar item style if dropdown is open and container option is used
1670
+
1671
+ ## 3.7.2 (August 6, 2021)
1672
+
1673
+ ### Fixed
1674
+
1675
+ - Fix text alignment if tabs are left or right aligned in Tab component
1676
+
1677
+ ## 3.7.1 (July 15, 2021)
1678
+
1679
+ ### Fixed
1680
+
1681
+ - Fix animation classes only partially being removed in Scrollspy component
1682
+ - Fix scrollIntoView did not return Promise if element is hidden
1683
+
1684
+ ## 3.7.0 (June 29, 2021)
1685
+
1686
+ ### Added
1687
+
1688
+ - Add text decoration modifier to Text component
1689
+ - Add width variable to range thumb in to Form Range component
1690
+ - Add Bag icon
1691
+
1692
+ ### Changed
1693
+
1694
+ - Change default search width and horizontal padding in Search component
1695
+ - Change badge width and font size in Badge component
1696
+ - Change button link color and text decoration in Button component
1697
+ - Change card badge height in Card component
1698
+ - Remove margin from the navbar item last-child in Navbar component
1699
+ - Add white space gap for navbar item in Navbar component
1700
+ - Allow text after icon in Iconnav component
1701
+
1702
+ ### Removed
1703
+
1704
+ - Remove badge hover color variable in Badge component
1705
+
1706
+ ### Fixed
1707
+
1708
+ - Fix input type list showing picker indicator in Chrome
1709
+ - Fix focus background in Form and Search component
1710
+ - Fix form size modifier for textarea in Form component
1711
+ - Fix icon alignment in Nav, Subnav and Tab components
1712
+ - Fix default dropdown selector in Navbar component
1713
+ - Fix show behavior in Drop component for multiple toggles
1714
+ - Fix ScrollspyNav component triggering 'active' event on every scroll
1715
+ - Fix prevent updates on disconnected components
1716
+
1717
+ ## 3.6.22 (May 18, 2021)
1718
+
1719
+ ### Added
1720
+
1721
+ - Add animation set to `false` in Filter component
1722
+
1723
+ ### Changed
1724
+
1725
+ - Animation classes toggled by Scrollspy component are removed after animation finishes
1726
+
1727
+ ### Fixed
1728
+
1729
+ - Fix box-shadow bottom being clipped in Safari if container is animated
1730
+
1731
+ ## 3.6.21 (May 4, 2021)
1732
+
1733
+ ### Added
1734
+
1735
+ - Add divider modifier to Nav component
1736
+
1737
+ ### Fixed
1738
+
1739
+ - Fix passing an array of classes to class utility functions
1740
+ - Fix boundary option in Drop component
1741
+
1742
+ ## 3.6.20 (April 22, 2021)
1743
+
1744
+ ### Changed
1745
+
1746
+ - Toggle component in hover mode toggles on focus and blur
1747
+
1748
+ ### Fixed
1749
+
1750
+ - Fix inverse colors for link toggle in Base component
1751
+
1752
+ ## 3.6.19 (April 7, 2021)
1753
+
1754
+ ### Changed
1755
+
1756
+ - Update card badge style
1757
+
1758
+ ### Fixed
1759
+
1760
+ - Fix animation set to `false` in Sortable component
1761
+ - Fix Tooltip on elements with class `uk-active` applied
1762
+ - Fix Slider parallax states
1763
+
1764
+ ## 3.6.18 (March 12, 2021)
1765
+
1766
+ ### Added
1767
+
1768
+ - Add Discord, Twitch and TikTok icons
1769
+
1770
+ ### Removed
1771
+
1772
+ - Remove Google Plus icon
1773
+
1774
+ ### Fixed
1775
+
1776
+ - Fix filter initial state
1777
+
1778
+ ## 3.6.17 (February 25, 2021)
1779
+
1780
+ ### Added
1781
+
1782
+ - Add background-size modifier for width and height to Background component
1783
+
1784
+ ### Fixed
1785
+
1786
+ - Fix dragging time control starts dragging slide in Safari
1787
+
1788
+ ## 3.6.16 (February 5, 2021)
1789
+
1790
+ ### Changed
1791
+
1792
+ - Make multiple select resizable
1793
+
1794
+ ### Fixed
1795
+
1796
+ - Fix dragging slide correctly prevents click event
1797
+
1798
+ ## 3.6.15 (January 29, 2021)
1799
+
1800
+ ### Added
1801
+
1802
+ - beforeSend in 'ajax' function may return Promise
1803
+ - Add 'container' option to Notification component
1804
+
1805
+ ### Fixed
1806
+
1807
+ - Fix showing/hiding Modal/Offcanvas programmatically
1808
+
1809
+ ## 3.6.14 (January 26, 2021)
1810
+
1811
+ ### Fixed
1812
+
1813
+ - Fix 'scrolledOver' function uses closest scrollable parent
1814
+ - Fix Lightbox closes on drag if slide background is dragged
1815
+ - Fix Drop component applies stack class wrongly
1816
+
1817
+ ## 3.6.13 (January 20, 2021)
1818
+
1819
+ ### Fixed
1820
+
1821
+ - Fix slidenav icons
1822
+
1823
+ ## 3.6.12 (January 20, 2021)
1824
+
1825
+ ### Fixed
1826
+
1827
+ - Fix IE11 compatibility
1828
+ - Fix changing ratio does not correctly apply width and height in SVG component
1829
+ - Fix issues from hiding an already hidden Modal
1830
+
1831
+ ## 3.6.11 (January 14, 2021)
1832
+
1833
+ ### Fixed
1834
+
1835
+ - Fix regression in SVG component
1836
+
1837
+ ## 3.6.10 (January 11, 2021)
1838
+
1839
+ ### Changed
1840
+
1841
+ - Refactor Sortable behavior
1842
+
1843
+ ### Fixed
1844
+
1845
+ - Fix regression in sticky component
1846
+ - Fix calculating max scroll height
1847
+ - Fix regression with calling watchers
1848
+
1849
+ ## 3.6.9 (January 7, 2021)
1850
+
1851
+ ### Fixed
1852
+
1853
+ - Fix component update handling
1854
+ - Fix Tooltip position
1855
+ - Fix Tooltip component applied to `<button>` element in iOS
1856
+ - Fix regression in Switcher component
1857
+
1858
+ ## 3.6.8 (January 5, 2021)
1859
+
1860
+ ### Fixed
1861
+
1862
+ - Fix regression in class util
1863
+
1864
+ ## 3.6.7 (January 4, 2021)
1865
+
1866
+ ### Fixed
1867
+
1868
+ - Fix regression in class util
1869
+
1870
+ ## 3.6.6 (January 4, 2021)
1871
+
1872
+ ### Added
1873
+
1874
+ - Add filter animation delayed-fade
1875
+
1876
+ ### Changed
1877
+
1878
+ - Filter animation fade does not stagger
1879
+
1880
+ ### Fixed
1881
+
1882
+ - Fix filter animations
1883
+ - Fix slider drag behavior on iOS
1884
+ - Fix Scroll component now supports hash starting with any character
1885
+
1886
+ ## 3.6.5 (December 21, 2020)
1887
+
1888
+ ### Fixed
1889
+
1890
+ - Fix missing imports
1891
+
1892
+ ## 3.6.4 (December 21, 2020)
1893
+
1894
+ ### Changed
1895
+
1896
+ - Improve context selectors to use a dom path selector
1897
+
1898
+ ### Fixed
1899
+
1900
+ - Fix IE11 compatibility
1901
+ - Fix Accordion component toggles
1902
+ - Fix regression in Toggle component
1903
+
1904
+ ## 3.6.3 (December 18, 2020)
1905
+
1906
+ ### Fixed
1907
+
1908
+ - Fix filter tests
1909
+
1910
+ ## 3.6.2 (December 18, 2020)
1911
+
1912
+ ### Changed
1913
+
1914
+ - IMPORTANT: Change options `animationMode` to `animation` and `animation` to `duration`
1915
+ - IMPORTANT: Rename `shift` animation to `slide`
1916
+
1917
+ ## 3.6.1 (December 17, 2020)
1918
+
1919
+ ### Fixed
1920
+
1921
+ - Fix regression in Toggle component
1922
+
1923
+ ## 3.6.0 (December 17, 2020)
1924
+
1925
+ ### Added
1926
+
1927
+ - Add fade animation to Filter component
1928
+ - Add 'priority' param to 'css' function
1929
+
1930
+ ### Fixed
1931
+
1932
+ - Fix 'aria-expanded' value on toggles
1933
+ - Fix responsiveness in Switcher component
1934
+
1935
+ ## 3.5.17 (December 16, 2020)
1936
+
1937
+ ### Added
1938
+
1939
+ - Offcanvas component hides if invisible
1940
+
1941
+ ### Changed
1942
+
1943
+ - Image component will load images eagerly in IE11
1944
+ - Improved Tooltip accessibility
1945
+ - Set 'aria-expanded' on toggles
1946
+
1947
+ ### Fixed
1948
+
1949
+ - Fix regression in Slider component
1950
+ - Fix do not set 'aria-hidden' if element has already been removed from the accessibility tree
1951
+ - Fix Switcher component does not ignore disabled toggles
1952
+ - Fix Toggle component in queued mode
1953
+
1954
+ ## 3.5.16 (December 11, 2020)
1955
+
1956
+ ### Fixed
1957
+
1958
+ - Fix Sortable lets sort items between lists if no 'group' is set
1959
+ - Fix 'scrollParents' checks for `position: fixed`
1960
+
1961
+ ## 3.5.15 (December 10, 2020)
1962
+
1963
+ ### Fixed
1964
+
1965
+ - Fix regression in Scrollspy Nav
1966
+
1967
+ ## 3.5.14 (December 9, 2020)
1968
+
1969
+ ### Fixed
1970
+
1971
+ - Fix Scrollspy Nav using wrong viewport as reference
1972
+ - Fix Slider component skipping animation if slide item wider than its list
1973
+
1974
+ ## 3.5.13 (December 8, 2020)
1975
+
1976
+ ### Changed
1977
+
1978
+ - Sorting starts after traversing half the item's height/width in Sortable component
1979
+
1980
+ ## 3.5.12 (December 7, 2020)
1981
+
1982
+ ### Fixed
1983
+
1984
+ - Fix 'isInView' function
1985
+
1986
+ ## 3.5.11 (December 7, 2020)
1987
+
1988
+ ### Fixed
1989
+
1990
+ - Fix 'positionAt' function did not flip within its targets scroll container
1991
+ - Fix drag gets 'overflow: hidden' in Sortable component
1992
+
1993
+ ## 3.5.10 (November 27, 2020)
1994
+
1995
+ ### Added
1996
+
1997
+ - Add container offset to prevent box-shadow clipping to Slider component
1998
+
1999
+ ### Changed
2000
+
2001
+ - Add '50vw' default horizontal root margin to Image component
2002
+
2003
+ ### Fixed
2004
+
2005
+ - Remove space between inline block elements in Breadcrumb component
2006
+
2007
+ ## 3.5.9 (October 20, 2020)
2008
+
2009
+ ### Changed
2010
+
2011
+ - Improve breadcrumbs wrapping into the next line
2012
+ - Sortable drag is no longer clamped to viewport
2013
+
2014
+ ### Fixed
2015
+
2016
+ - Prevent content overflow in Breadcrumb component
2017
+ - Fix prefix script
2018
+ - Fix 'scrollIntoView' does not align to top
2019
+
2020
+ ## 3.5.8 (September 25, 2020)
2021
+
2022
+ ### Added
2023
+
2024
+ - Add lightbox button active hook
2025
+
2026
+ ### Changed
2027
+
2028
+ - IMPORTANT: Set `@pagination-margin-horizontal` to `0` and use new `@pagination-item-padding-vertical` and `@pagination-item-padding-horizontal`
2029
+
2030
+ ### Fixed
2031
+
2032
+ - Fix lightbox button focus state
2033
+ - Fix Slider component transition bug in iOS 14.0
2034
+
2035
+ ## 3.5.7 (August 27, 2020)
2036
+
2037
+ ### Fixed
2038
+
2039
+ - Fix Switcher component no longer toggles an already active item
2040
+ - Fix 'positionAt' function not detecting flip state correctly
2041
+ - Fix 'z-index' for stacked Modals
2042
+
2043
+ ## 3.5.6 (August 13, 2020)
2044
+
2045
+ ### Changed
2046
+
2047
+ - Sticky component uses 'window.Date' instead of 'window.performance'
2048
+ - Sticky component with sticky-on-up no longer hides when Dropdown shows
2049
+
2050
+ ### Fixed
2051
+
2052
+ - Fix slidenav color in Lightbox component
2053
+ - Fix inverse colors for link toggle in Link component
2054
+ - Sticky component remains inactive if hidden
2055
+ - Revert dropbar mode `push` is only applied if Navbar is positioned static
2056
+ - Fix animations not resolving if user canceled
2057
+
2058
+ ## 3.5.5 (July 14, 2020)
2059
+
2060
+ ### Added
2061
+
2062
+ - Add list marker utility support for WebKit
2063
+ - Add `uk-text-default` to Text component
2064
+ - Add multiple targets to Filter component
2065
+
2066
+ ### Fixed
2067
+
2068
+ - Updates no longer throw error after too many recursions, but delay into next frame
2069
+ - Fix empty slider throws exception
2070
+ - Fix pointer events ignored on SVGs in Sortable component
2071
+ - Fix Grid component divider rendering
2072
+ - Fix `<select>` closes Drop component in hover mode in Firefox
2073
+
2074
+ ## 3.5.4 (June 12, 2020)
2075
+
2076
+ ### Added
2077
+
2078
+ - Image component triggers 'error' event on failing to load image
2079
+
2080
+ ### Fixed
2081
+
2082
+ - Fix prop observer for dataSrc option in Image component
2083
+ - Fix ajax function supports responseType 'json' in IE11
2084
+ - Fix Accordion component with `multiple: true` and `collapsible: false`
2085
+
2086
+ ## 3.5.3 (May 29, 2020)
2087
+
2088
+ ### Fixed
2089
+
2090
+ - Fix regression in Grid component with parallax option
2091
+
2092
+ ## 3.5.2 (May 29, 2020)
2093
+
2094
+ ### Fixed
2095
+
2096
+ - Fix uglifyjs removes self-assignments
2097
+
2098
+ ## 3.5.1 (May 29, 2020)
2099
+
2100
+ ### Fixed
2101
+
2102
+ - Fix regression in Animation API
2103
+ - Fix regression Drop component
2104
+ - Fix regression in Sass source
2105
+
2106
+ ## 3.5.0 (May 28, 2020)
2107
+
2108
+ ### Added
2109
+
2110
+ - Add type, color and size modifiers to List component
2111
+
2112
+ ### Changed
2113
+
2114
+ - IMPORTANT: Rename Less variable parts `xxlarge` to `2xlarge`
2115
+ - Replace clearfix by creating a block formatting context with display flow-root
2116
+
2117
+ ### Deprecated
2118
+
2119
+ - Width XXLarge: Use `uk-width-2xlarge` instead of `uk-width-xxlarge`
2120
+
2121
+ ### Fixed
2122
+
2123
+ - Fix positioning issue with Drop components in Firefox
2124
+ - Fix Dropbar causing endless loop in Firefox
2125
+
2126
+ ## 3.4.6 (May 11, 2020)
2127
+
2128
+ ### Fixed
2129
+
2130
+ - Fix regression in Switcher component
2131
+
2132
+ ## 3.4.5 (May 11, 2020)
2133
+
2134
+ ### Added
2135
+
2136
+ - Add inBrowser check to enable server-side rendering
2137
+
2138
+ ### Fixed
2139
+
2140
+ - Fix Switcher responsiveness
2141
+ - Fix `isInView()` no longer returns true for adjacent rectangles
2142
+ - Fix compatibility with browsers that support `Object.prototype.watch()`
2143
+
2144
+ ## 3.4.4 (May 7, 2020)
2145
+
2146
+ ### Fixed
2147
+
2148
+ - Fix Scrollspy component stuck in wrong state
2149
+ - Fix regression in Grid component with masonry
2150
+
2151
+ ## 3.4.3 (May 5, 2020)
2152
+
2153
+ ### Changed
2154
+
2155
+ - Improve attribute state observer performance
2156
+
2157
+ ### Fixed
2158
+
2159
+ - Fix Search Icon with large modifier
2160
+ - Fix Grid divider in RTL mode
2161
+ - Fix Slider component responsiveness
2162
+
2163
+ ## 3.4.2 (April 20, 2020)
2164
+
2165
+ ### Added
2166
+
2167
+ - Hide Drop components on `Esc` keypress
2168
+
2169
+ ### Fixed
2170
+
2171
+ - Fix `quote-right` icon empty in RTL mode
2172
+ - Revert: Fix Sticky component correctly updates on `update`
2173
+
2174
+ ## 3.4.1 (April 16, 2020)
2175
+
2176
+ ### Fixed
2177
+
2178
+ - Fix `bottom` if offset is `0` in Sticky component
2179
+ - Fix dropbar mode `push` is only applied if Navbar is positioned static
2180
+ - Fix Sticky component correctly updates on `update`
2181
+ - Fix Sticky component handles `vh` values for `top`and `bottom` options
2182
+ - Fix Sticky component sets its width with fraction
2183
+ - Fix Sticky component with `show-on-up` and `bottom` option updates correctly
2184
+ - Fix Tooltip component no longer disappears on SVG shape elements
2185
+ - Fix regression with Modal/Offcanvas component not opening in IE11
2186
+
2187
+ ## 3.4.0 (April 9, 2020)
2188
+
2189
+ ### Added
2190
+
2191
+ - Add `attrs` option to Lightbox items
2192
+ - Add additional url parameters to YouTube/Vimeo embed URLs in Lightbox component
2193
+
2194
+ ### Changed
2195
+
2196
+ - Change default dimensions to 1920x1080 for YouTube in Lightbox component
2197
+
2198
+ ### Fixed
2199
+
2200
+ - Fix subnav not wrapping into the next line correctly when using `uk-margin` attribute
2201
+ - Fix selected `uk-text-background` text being visible in Firefox
2202
+ - Fix Scrollspy Nav component activating previous item in Firefox
2203
+ - Fix toggling Offcanvas component
2204
+ - Fix Sortable component unable to sort table rows
2205
+ - Fix autoplay for YouTube and Vimeo videos in Lightbox component
2206
+ - Fix dragging slides in Lightbox component in Chrome mobile
2207
+
2208
+ ## 3.3.7 (March 19, 2020)
2209
+
2210
+ ### Fixed
2211
+
2212
+ - Fix Height Match component not matching empty elements
2213
+ - Fix Scrollspy Nav component activating wrong elements
2214
+ - Fix Modal/Drop close on bgClick behaviour
2215
+ - Fix `z-index` on Modal stacked dialogs
2216
+
2217
+ ## 3.3.6 (March 12, 2020)
2218
+
2219
+ ### Added
2220
+
2221
+ - Add `offset` option to Accordion component
2222
+
2223
+ ### Changed
2224
+
2225
+ - Remove `duration` option from Scroll component
2226
+
2227
+ ### Fixed
2228
+
2229
+ - Fix regression in Accordion component
2230
+
2231
+ ## 3.3.5 (March 12, 2020)
2232
+
2233
+ ### Fixed
2234
+
2235
+ - Fix regression in Sortable component
2236
+
2237
+ ## 3.3.4 (March 12, 2020)
2238
+
2239
+ ### Changed
2240
+
2241
+ - `getEventPos` returns client coordinates only
2242
+
2243
+ ### Fixed
2244
+
2245
+ - Fix Drop component does not close on pointerleave in Firefox
2246
+ - Fix Switcher component sets active state on ignored item
2247
+ - Fix Accordion component triggers events on elements only
2248
+ - Fix Accordion component no longer wraps its content without transition
2249
+ - Fix missing `$emit` function
2250
+ - Fix Sortable component performance
2251
+ - Fix prevent showing/hiding of Tooltip component
2252
+
2253
+ ## 3.3.3 (February 25, 2020)
2254
+
2255
+ ### Changed
2256
+
2257
+ - Improve Tooltip component performance
2258
+ - Notifications remove their container if it's empty
2259
+ - The promise object returned by Modal Dialogs holds a reference to the Modal component itself.
2260
+
2261
+ ### Fixed
2262
+
2263
+ - Fix style for breadcrumbs without last active item
2264
+ - Fix infinite loop in Slider component
2265
+ - Fix IE11 compatibility
2266
+ - Fix Spinner component in RTL mode
2267
+ - Fix animating `stroke` in Parallax component when element is hidden
2268
+
2269
+ ## 3.3.2 (February 17, 2020)
2270
+
2271
+ ### Fixed
2272
+
2273
+ - Fix accessing computed properties after component has been disconnected
2274
+ - Fix Modal dialogs not being removed from DOM after close
2275
+ - Fix Lightbox opening only once
2276
+ - Fix updates having wrong type
2277
+
2278
+ ## 3.3.1 (February 4, 2020)
2279
+
2280
+ ### Changed
2281
+
2282
+ - Improve update performance
2283
+
2284
+ ### Fixed
2285
+
2286
+ - Fix countdown separator line-height
2287
+ - Fix Cover component covers positioned parent element
2288
+
2289
+ ## 3.3.0 (January 23, 2020)
2290
+
2291
+ ### Added
2292
+
2293
+ - Add container xlarge modifier
2294
+
2295
+ ### Changed
2296
+
2297
+ - IMPORTANT: Change `uk-container-large` width. Use `uk-container-xlarge`
2298
+
2299
+ ### Fixed
2300
+
2301
+ - Fix `position` takes offsetParent's border width into account
2302
+
2303
+ ## 3.2.7 (January 13, 2020)
2304
+
2305
+ ### Fixed
2306
+
2307
+ - Fix Drop component has wrong state after disconnect
2308
+ - Fix `repeat` option in Scrollspy component in Firefox
2309
+
2310
+ ## 3.2.6 (December 17, 2019)
2311
+
2312
+ ### Fixed
2313
+
2314
+ - Fix regression with custom icons build task
2315
+
2316
+ ## 3.2.5 (December 17, 2019)
2317
+
2318
+ ### Added
2319
+
2320
+ - Prevent content overflow if `max-width: 100%` is used inside Position component
2321
+ - Add `parent` util function
2322
+ - Add `children` util function
2323
+ - Add `isElement` util function
2324
+
2325
+ ### Fixed
2326
+
2327
+ - Accordion component triggers scroll on page load
2328
+ - Fix regression in Scroll component in Edge and IE
2329
+
2330
+ ## 3.2.4 (December 3, 2019)
2331
+
2332
+ ### Added
2333
+
2334
+ - Parallax, Scroll, Scrollspy Nav components work inside scrollable container
2335
+ - Expose `scrollIntoView` utility function
2336
+
2337
+ ### Fixed
2338
+
2339
+ - Fix scrolling containers while dragging in Sortable component
2340
+ - Fix show/hide behaviour in Drop component
2341
+ - Fix Accordion component will scroll title into view if needed
2342
+ - Fix component initialization without element
2343
+
2344
+ ## 3.2.3 (November 6, 2019)
2345
+
2346
+ ### Fixed
2347
+
2348
+ - Fix initializing components with jQuery elements
2349
+
2350
+ ## 3.2.2 (October 23, 2019)
2351
+
2352
+ ### Added
2353
+
2354
+ - Prevent endless update loops
2355
+
2356
+ ### Changed
2357
+
2358
+ - Improve event.preventDefault behaviour in Toggle component
2359
+ - Improve initial boot
2360
+
2361
+ ### Fixed
2362
+
2363
+ - Fix event delegation with `self` filter
2364
+
2365
+ ## 3.2.1 (October 1, 2019)
2366
+
2367
+ ### Added
2368
+
2369
+ - Add support for `input type="submit"` to Button component
2370
+ - Add `selSlides` option to Slider/Slideshow component
2371
+
2372
+ ### Fixed
2373
+
2374
+ - Fix Slider throws error if initialized with no slides
2375
+ - Fix Slider/Slideshow crash in IE
2376
+ - Fix Slider/Slideshow drag no longer starts on input elements
2377
+ - Fix Slider/Slideshow Parallax shows wrong initial state
2378
+ - Fix `isPlainObject` to work across iframes
2379
+ - Fix Scrollspy causes endless update loop
2380
+
2381
+ ## 3.2.0 (September 5, 2019)
2382
+
2383
+ ### Added
2384
+
2385
+ - Add column and row gutter to Grid component
2386
+
2387
+ ### Removed
2388
+
2389
+ - Remove `@text-bold-font-weight` variable
2390
+
2391
+ ### Fixed
2392
+
2393
+ - Fix countdown line-height on small devices
2394
+
2395
+ ## 3.1.9 (September 2, 2019)
2396
+
2397
+ ### Added
2398
+
2399
+ - Add `last` utility function
2400
+
2401
+ ### Fixed
2402
+
2403
+ - Fix Slideshow invisible after switching tabs in Switcher
2404
+ - Fix lazy loading images in Image component in UC Browser
2405
+ - Fix opening Offcanvas/Modal through buttons
2406
+
2407
+ ## 3.1.8 (August 29, 2019)
2408
+
2409
+ ### Added
2410
+
2411
+ - Add font weight and style modifier
2412
+ - Add `self` option to `on` function
2413
+
2414
+ ### Changed
2415
+
2416
+ - Improve `padding-bottom` calculation for Grid with `parallax: true`
2417
+ - Make `selMinHeight` in the Flex Bug mixin a prop
2418
+
2419
+ ### Fixed
2420
+
2421
+ - Fix Modal close on bgClick behaviour
2422
+ - Fix spreading event args on delegated event listeners
2423
+ - Fix clicking an empty link within itself no longer closes the Drop
2424
+ - Fix IE11 compatibility
2425
+ - Fix empty tooltips will no longer show
2426
+
2427
+ ## 3.1.7 (July 31, 2019)
2428
+
2429
+ ### Changed
2430
+
2431
+ - By default, the Offcanvas `container` option is `false` now
2432
+ - The `focusable` attribute on SVG/Icon component makes SVG focusable in IE
2433
+
2434
+ ### Fixed
2435
+
2436
+ - Fix Slideshow/Slider triggering show events to often initially
2437
+ - Fix swipe gestures in Switcher component (Android)
2438
+ - Ensure at most one Height Viewport component set to `expand` is active
2439
+ - Height Viewport component no longer calculates its height if invisible
2440
+ - Fix using Sortable in scrolling container
2441
+ - Fix lazy loading images if parent element is fully clipped
2442
+ - Fix clicking Slideshow with `draggable: false` no longer pauses autoplay
2443
+ - Fix toggling modal while transition is in progress
2444
+ - Fix Height Viewport component growing indefinitely if positioned above document
2445
+ - Fix Height Viewport component uses height with fractions
2446
+ - Fix Margin component for rows 1 pixel in height
2447
+
2448
+ ## 3.1.6 (June 19, 2019)
2449
+
2450
+ ### Added
2451
+
2452
+ - Add style for input with datalist
2453
+
2454
+ ### Fixed
2455
+
2456
+ - Fix image shrinking in centered and absolutely positioned navbars
2457
+ - Fix Custom Form not resetting on form `reset` event
2458
+ - Fix leader inverse hook
2459
+ - Fix divider vertical inverse hook
2460
+
2461
+ ## 3.1.5 (May 17, 2019)
2462
+
2463
+ ### Added
2464
+
2465
+ - Add link toggle to Link component
2466
+ - Add breakpoint classes for margin auto and remove
2467
+ - Add Etsy icon
2468
+
2469
+ ### Fixed
2470
+
2471
+ - Fix Dropbar closing unexpectedly
2472
+ - Fix Sortable `click` event prevention in Firefox
2473
+ - Fix JS error in Offcanvas component on touch devices
2474
+ - Icon components no longer have a primary option
2475
+ - Icon/Svg components no longer reset initially
2476
+
2477
+ ## 3.1.4 (April 24, 2019)
2478
+
2479
+ ### Fixed
2480
+
2481
+ - Fix selector engine
2482
+ - Fix CSS selector in Lightbox component
2483
+ - Fix Drop not closing when Toggle component is clicked
2484
+
2485
+ ## 3.1.3 (April 23, 2019)
2486
+
2487
+ ### Fixed
2488
+
2489
+ - Fix Scrollspy Nav component
2490
+ - Fix closing Lightbox causes text selection in Firefox
2491
+
2492
+ ## 3.1.2 (April 18, 2019)
2493
+
2494
+ ### Changed
2495
+
2496
+ - IMPORTANT: Change `@deprecated` variable to `false`
2497
+
2498
+ ### Fixed
2499
+
2500
+ - Fix filter controls active state in Filter component
2501
+
2502
+ ## 3.1.1 (April 18, 2019)
2503
+
2504
+ ### Fixed
2505
+
2506
+ - Fix Sass distribution
2507
+ - Fix Lightbox opens with wrong index
2508
+
2509
+ ## 3.1.0 (April 17, 2019)
2510
+
2511
+ ### Added
2512
+
2513
+ - Add deprecated flag to Less variables
2514
+ - Add size modifiers to Heading component
2515
+ - Add SVG stroke animation to Animation component
2516
+ - Add option to animate SVG strokes to SVG component
2517
+ - Add option to animate SVG strokes to Parallax component
2518
+ - Add support for more units to Parallax component
2519
+ - Add lazy loading support if Image component is used with SVG component
2520
+ - Add text secondary to Text component
2521
+ - Add `dataSrc` as primary option to Image component
2522
+ - Add `webp` as image type to Lightbox Panel component
2523
+
2524
+ ### Changed
2525
+
2526
+ - Refactor divider, bullet and line modifiers in Heading component
2527
+ - Improve dimension handling in SVG component
2528
+ - Improve performance of Image, Leader and Toggle component
2529
+ - Autoplay is halted while Slideshow/Slider are active
2530
+ - Lightbox filters duplicate items by `source`
2531
+ - Rename `getPos` to `getEventPos`
2532
+ - Move code with side effects to `core.js`
2533
+
2534
+ ### Deprecated
2535
+
2536
+ - Primary Heading: Use `uk-heading-medium` instead of `uk-heading-primary`
2537
+ - Hero Heading: Use `uk-heading-xlarge` instead of `uk-heading-hero`
2538
+
2539
+ ### Removed
2540
+
2541
+ - `cls` option no longer accepts a list of classNames in Scrollspy component
2542
+
2543
+ ### Fixed
2544
+
2545
+ - Fix rendering issue for scale in Transition component
2546
+ - Fix Filter component's initial active state
2547
+ - Fix translating `x` and `y` properties simultaneously in Parallax component
2548
+ - Fix drag closes Lightbox
2549
+ - Fix Tooltip component (touch device)
2550
+ - Fix `hover` mode for Toggle component (touch device)
2551
+ - Fix Slideshow not setting `min-height` if ratio is set to `false`
2552
+ - Default prevent `click` event in Slider/Slideshow component after drag
2553
+ - Fix images being selected while dragging in Slider/Slideshow component
2554
+
2555
+ ## 3.0.3 (January 29, 2019)
2556
+
2557
+ ### Added
2558
+
2559
+ - Computeds can be watched now
2560
+ - Parallax supports `<SVG>` and its child elements now
2561
+
2562
+ ### Changed
2563
+
2564
+ - Image Component uses IntersectionObserver now
2565
+
2566
+ ### Removed
2567
+
2568
+ - Remove `isReady` function
2569
+ - Form Custom component no longer sets `uk-hover` and `uk-focus` classes
2570
+
2571
+ ### Fixed
2572
+
2573
+ - Fix touch event detection
2574
+ - Fix background images are shown too large on retina displays in Image component
2575
+ - Fix correctly calculate offsetLeft in Image component
2576
+ - Fix autofocus elements not blurring within Toggable on hide
2577
+
2578
+ ## 3.0.2 (January 15, 2019)
2579
+
2580
+ ### Fixed
2581
+
2582
+ - Fix offcanvas overlay transition
2583
+ - Fix active state in Switcher component
2584
+ - Fix background images on displays with higher devicePixelRatio in Image component
2585
+
2586
+ ## 3.0.1 (January 14, 2019)
2587
+
2588
+ ### Fixed
2589
+
2590
+ - Fix Sass distribution
2591
+
2592
+ ## 3.0.0 (January 14, 2019)
2593
+
2594
+ ### Added
2595
+
2596
+ - Add active states for sub nav items in Nav, Navbar and Dropdown component
2597
+ - Add emoji default fonts to the system font stack
2598
+
2599
+ ### Changed
2600
+
2601
+ - Improve offcanvas reveal and push animations
2602
+ - Improve animation, transition and visibility toggles for touch devices
2603
+ - Improve update performance
2604
+ - `css` function: Setting a CSS property to `NaN` no longer removes the property
2605
+ - Slide/Slideshow navs and Drops no longer blur after hiding
2606
+ - Changed the default `toggle` option for Switcher component to `> * > :first-child`
2607
+ - SVG component no longer moves `id` from element to svg
2608
+
2609
+ ### Removed
2610
+
2611
+ - Remove `uk-hover` class
2612
+ - Remove artificial `click` event on mobile devices
2613
+
2614
+ ### Fixed
2615
+
2616
+ - Fix visible toggle and its child elements not being focusable through keyboard navigation
2617
+ - Fix Image component correctly escapes urls on background images
2618
+
2619
+ ## 3.0.0 rc 26 (January 3, 2019)
2620
+
2621
+ ### Added
2622
+
2623
+ - Add expand classes to Container component
2624
+
2625
+ ### Changed
2626
+
2627
+ - @notification-message-margin-bottom to top in Notification component
2628
+ - Improve swipe gesture detection
2629
+ - `isInView` checks relative to viewport only
2630
+
2631
+ ### Fixed
2632
+
2633
+ - Fix `flex bug` mixin (IE11)
2634
+ - Fix properly resolving css custom properties in scss
2635
+ - Fix order of variable assignments in scss
2636
+ - Fix background images are shown too large on retina displays in Image component
2637
+ - Fix lazy loading images in Image component in Safari
2638
+ - Limit positioned element to container width and margin in Position component
2639
+
2640
+ ## 3.0.0 rc 25 (November 30, 2018)
2641
+
2642
+ ### Fixed
2643
+
2644
+ - Fix `hasClass` in IE11 again
2645
+ - Fix workaround to mitigate the duplicating icons issue
2646
+
2647
+ ## 3.0.0 rc 24 (November 23, 2018)
2648
+
2649
+ ### Changed
2650
+
2651
+ - Drop positioning uses window as secondary boundary
2652
+
2653
+ ### Fixed
2654
+
2655
+ - Fix modal not opening on first click in Angular apps
2656
+ - Fix filter controls active state in Filter component
2657
+ - Fix Masonry Grid in RTL mode
2658
+ - Make sure autoplay does not resume after user interaction in slider-autoplay mixin
2659
+ - Fix `hasClass` in IE11
2660
+
2661
+ ## 3.0.0 rc 23 (November 16, 2018)
2662
+
2663
+ ### Changed
2664
+
2665
+ - Destroy Lightbox Panel upon closing
2666
+
2667
+ ### Fixed
2668
+
2669
+ - Fix sticky not recalculating after update
2670
+ - Fix clicking on items not triggering `click` event in Sortable component
2671
+ - Fix Offcanvas changing viewport upon opening
2672
+
2673
+ ## 3.0.0 rc 22 (November 9, 2018)
2674
+
2675
+ ### Fixed
2676
+
2677
+ - Fix regressions in Modal component
2678
+
2679
+ ## 3.0.0 rc 21 (November 7, 2018)
2680
+
2681
+ ### Added
2682
+
2683
+ - Add threshold before Sticky with `Show On Up` changes state
2684
+ - Add `draggable` option to Slider and Slideshow component
2685
+
2686
+ ### Fixed
2687
+
2688
+ - Fix toggling Offcanvas component while transition in progress
2689
+ - Fix Offcanvas height on mobile devices
2690
+
2691
+ ## 3.0.0 rc 20 (October 24, 2018)
2692
+
2693
+ ### Added
2694
+
2695
+ - Add print, reddit, microphone, file-text, file-pdf, chevron-double left and right icons
2696
+ - Add text emphasis to Text component
2697
+ - Add `src` as primary option to SVG component
2698
+
2699
+ ### Changed
2700
+
2701
+ - Offcanvas no longer requires a wrapping content div
2702
+ - Change video-camera icon style to outline
2703
+
2704
+ ### Fixed
2705
+
2706
+ - Fix sorting in Sortable component on touch devices with page scrolled down
2707
+ - Fix height of Masonry Grid
2708
+ - Fix Sticky hiding with Offcanvas in overlay mode
2709
+ - Fix Parallax in combination with Offcanvas in overlay mode
2710
+
2711
+ ## 3.0.0 rc 19 (October 11, 2018)
2712
+
2713
+ ### Fixed
2714
+
2715
+ - Fix regression in Icon component
2716
+
2717
+ ## 3.0.0 rc 18 (October 11, 2018)
2718
+
2719
+ ### Added
2720
+
2721
+ - Add divider vertical modifier to Divider component
2722
+
2723
+ ### Fixed
2724
+
2725
+ - Fix preserve color not working if class is set on `<svg>` element in Icon component
2726
+ - Fix inverse hover color for accordion title
2727
+ - Fix close color being overwritten from toolbar in Lightbox component
2728
+ - Fix Modal not hiding upon being destroyed
2729
+ - Fix using node as offset in position mixin
2730
+ - Fix using Height Match component on elements with different offsetParents
2731
+ - Fix rounding error in Height Match component
2732
+ - Fix `scope` command for already scoped css, comments are removed from generated css files
2733
+ - Fix Sticky placeholder height on resize
2734
+ - Fix starting/stopping of autoplay in Lightbox
2735
+ - Fix initially wrong position of background image in Parallax component
2736
+ - Fix calling `isActive` on `undefined` in Navbar component
2737
+
2738
+ ## 3.0.0 rc 17 (September 27, 2018)
2739
+
2740
+ ### Added
2741
+
2742
+ - Dom functions support selectors
2743
+
2744
+ ### Changed
2745
+
2746
+ - Viewport Height component no longer sets a `height` except for IE
2747
+ - Viewport Height component no longer forces `box-sizing: border-box`
2748
+ - Improve Tooltip performance
2749
+ - Improve Parallax performance
2750
+ - Improve Sticky performance
2751
+
2752
+ ### Removed
2753
+
2754
+ - Remove `::-moz-selection` which is not needed anymore
2755
+ - Remove component `init` hook
2756
+ - Remove component `ready` hook
2757
+
2758
+ ### Fixed
2759
+
2760
+ - Fix `UIkit.mixin()`
2761
+ - Fix issue with list bullet in combination with multi-column layouts
2762
+ - Allow for special characters in URI hash in Scroll Component
2763
+ - Height Match also sets a `height` in IE
2764
+ - Slideshow sets `min-height` instead of `height`
2765
+
2766
+ ## 3.0.0 rc 16 (September 12, 2018)
2767
+
2768
+ ### Fixed
2769
+
2770
+ - Fix regression in Overflow Auto component
2771
+
2772
+ ## 3.0.0 rc 15 (September 11, 2018)
2773
+
2774
+ ### Changed
2775
+
2776
+ - Rename `selModal` to `selContainer` and `selPanel` to `selContent` in Overflow Auto component
2777
+
2778
+ ### Fixed
2779
+
2780
+ - Fix `isInView` function for elements with zero width and height
2781
+
2782
+ ## 3.0.0 rc 14 (September 4, 2018)
2783
+
2784
+ ### Fixed
2785
+
2786
+ - Fix regression in `removeClasses` function
2787
+
2788
+ ## 3.0.0 rc 13 (September 4, 2018)
2789
+
2790
+ ### Added
2791
+
2792
+ - Add border pill to Utility component
2793
+
2794
+ ### Changed
2795
+
2796
+ - Use `min-height` instead of `height` for navbar nav items
2797
+
2798
+ ### Removed
2799
+
2800
+ - Remove `filterAttr` function
2801
+
2802
+ ### Fixed
2803
+
2804
+ - Fix SVGs not preserving their aspect ratio in IE11
2805
+ - Fix lazy loading images in Edge
2806
+
2807
+ ## 3.0.0 rc 12 (August 27, 2018)
2808
+
2809
+ ### Added
2810
+
2811
+ - Add responsiveness to SVGs in Base component
2812
+ - Make remaining components reactive
2813
+ - Boolean attributes coerce to `true` if the prop is defined as Boolean
2814
+
2815
+ ### Changed
2816
+
2817
+ - Allow icons to shrink in Iconnav
2818
+ - Add more margin between accordion title and icon
2819
+ - `UIkit.mixin` can now be used to extend existing components
2820
+
2821
+ ### Removed
2822
+
2823
+ - Remove fix for uppercase SVGs attributes in Edge on Windows 10 older than build 16251
2824
+
2825
+ ### Fixed
2826
+
2827
+ - Fix form placeholder color in Edge
2828
+ - Fix accordion icon position if title is wrapping into the next line
2829
+ - Fix Slider incorrectly showing navigation
2830
+ - Fix element queuing in Scrollspy component
2831
+ - Fix parallax translating to subpixels
2832
+ - Fix issue with scrolling on mobile devices in Sortable component
2833
+
2834
+ ## 3.0.0 rc 11 (August 8, 2018)
2835
+
2836
+ ### Changed
2837
+
2838
+ - Pass error object to callback function instead of message only in Upload component
2839
+
2840
+ ### Removed
2841
+
2842
+ - Remove deprecated prevention of the 300ms delay for touch devices
2843
+
2844
+ ### Fixed
2845
+
2846
+ - Fix bug in `pointInRect` function
2847
+
2848
+ ## 3.0.0 rc 10 (July 25, 2018)
2849
+
2850
+ ### Added
2851
+
2852
+ - Add container xsmall modifier
2853
+
2854
+ ### Changed
2855
+
2856
+ - Improve Height Viewport component performance
2857
+
2858
+ ### Fixed
2859
+
2860
+ - Fix performance regression in Grid component
2861
+ - Fix Height Viewport jumping in size on mobile devices if BottomOffset was set
2862
+ - Fix offsetParent detection
2863
+
2864
+ ## 3.0.0 rc 9 (July 13, 2018)
2865
+
2866
+ ### Changed
2867
+
2868
+ - Allow thumbnav items to shrink if `flex-wrap: nowrap` is set
2869
+
2870
+ ### Fixed
2871
+
2872
+ - Fix Filter component height during transition
2873
+ - Fix Filter/Sortable component in IE11
2874
+ - Fix Overflow Auto component triggering `resize` event indefinitely
2875
+ - Fix Slider/Slideshow capture slide during transition in Safari 11
2876
+ - Fix Slider/Slideshow drag behavior in iOS 11.3+ (https://bugs.webkit.org/show_bug.cgi?id=184250)
2877
+ - Fix `toEventTargets` in IE11
2878
+
2879
+ ## 3.0.0 rc 8 (July 5, 2018)
2880
+
2881
+ ### Fixed
2882
+
2883
+ - Fix regression in dev dependencies
2884
+
2885
+ ## 3.0.0 rc 7 (July 5, 2018)
2886
+
2887
+ ### Added
2888
+
2889
+ - Allow `data-` prefixed attributes as component options
2890
+
2891
+ ### Changed
2892
+
2893
+ - Improve Image component performance
2894
+ - Improve Cover component performance
2895
+ - Improve resize reactivity on Image/Video load
2896
+
2897
+ ### Fixed
2898
+
2899
+ - Fix Dropbar in Navbar in IE11
2900
+ - Fix single components did not get exported from their modules
2901
+ - Fix Lightbox reactivity
2902
+
2903
+ ## 3.0.0 rc 6 (June 15, 2018)
2904
+
2905
+ ### Added
2906
+
2907
+ - Add development builds to npm registry (`npm i uikit@dev` / `yarn add uikit@dev`)
2908
+
2909
+ ### Fixed
2910
+
2911
+ - Fix single components to auto-install only when UIkit is attached to window object
2912
+ - Fix component naming (camelCase) in single component auto-install wrapper
2913
+ - Fix active row style for striped table
2914
+ - Fix height of Masonry Grid
2915
+ - Fix attribute change listener
2916
+ - Cover component updates on image load
2917
+ - Fix Lightbox options handling
2918
+
2919
+ ## 3.0.0 rc 5 (June 4, 2018)
2920
+
2921
+ ### Fixed
2922
+
2923
+ - Fix missing standalone component installment
2924
+ - Fix passing Lightbox options to Lightbox Panel
2925
+ - Fix not appearing fixed background images for Chrome 67
2926
+ - Fix having a Slider within a Slideshow element
2927
+ - Fix filter animation in Edge
2928
+ - Fix accessing sessionStorage if that's prevented
2929
+ - Fix lazy loading images if no width and height are provided
2930
+
2931
+ ## 3.0.0 rc 4 (May 30, 2018)
2932
+
2933
+ ### Changed
2934
+
2935
+ - Delay loading images by one frame in Image Component
2936
+
2937
+ ### Fixed
2938
+
2939
+ - Fix clipping of dropdowns in Dropbar
2940
+
2941
+ ## 3.0.0 rc 3 (May 28, 2018)
2942
+
2943
+ ### Changed
2944
+
2945
+ - Improve Lightbox type detection
2946
+ - UIkit.icon.add supports resetting component icons now
2947
+
2948
+ ### Fixed
2949
+
2950
+ - Fix lazy loading of images with same source
2951
+ - Fix lazy loading of background images on elements with no height and width attributes
2952
+ - Fix late component registration
2953
+ - Fix resizing behavior of Sticky component
2954
+ - Fix media mode in Toggle default preventing click events on touch devices
2955
+
2956
+ ## 3.0.0 rc 2 (May 16, 2018)
2957
+
2958
+ ### Fixed
2959
+
2960
+ - Fix regression in Scrollspy in IE11
2961
+ - Fix Sass distribution
2962
+ - Fix large close icon
2963
+
2964
+ ## 3.0.0 rc 1 (May 15, 2018)
2965
+
2966
+ ### Added
2967
+
2968
+ - Add Image component to lazy load images
2969
+ - Add Filter component to filter and sort any kind of layout
2970
+ - Add `masonry` option to Grid component
2971
+ - Add inverse style for form icon
2972
+ - Add smaller font-sizes on mobile for h1, h2, primary and hero heading and article title
2973
+
2974
+ ### Changed
2975
+
2976
+ - Break long words into the next line for comment body
2977
+ - Move grid `parallax` option to Grid component and remove Grid Parallax component
2978
+ - Move Height, Leader, SVG and Video from Utility component into their own components
2979
+ - Allow left and right icons at the same time in form and search component
2980
+ - Rename `target` to `target-offset` in Sticky component
2981
+ - Remove hyphenating for text break
2982
+
2983
+ ### Fixed
2984
+
2985
+ - Fix option color in select dropdowns for Inverse component
2986
+ - Fix dropcap font size in Edge
2987
+ - Fix dropcap line height in Firefox
2988
+ - Fix Scrollspy being stuck in endless update loop
2989
+ - Fix Slideshow combined with Height Viewport component
2990
+ - Fix Height Match component's `row` matching
2991
+ - Fix height calculation in Height Match component
2992
+ - Fix regression with Video component not autoplay/pause
2993
+
2994
+ ## 3.0.0 beta 42 (April 5, 2018)
2995
+
2996
+ ### Fixed
2997
+
2998
+ - Fix regression in Offcanvas
2999
+
3000
+ ## 3.0.0 beta 41 (April 4, 2018)
3001
+
3002
+ ### Added
3003
+
3004
+ - Add table large modifier
3005
+ - Add `Autoplay` as primary option for Video component
3006
+ - Add core and component dist files to NPM package
3007
+
3008
+ ### Changed
3009
+
3010
+ - Make `uk-form-icon` padding work with size modifier
3011
+ - Make heading line position top a variable
3012
+ - Allow dropdowns in Iconnav component
3013
+ - Allow any property in `svg-fill` mixin
3014
+ - Move progress normalization to progress component
3015
+ - Video component sets `preload="false"` if `autoplay` is set to `inview`
3016
+ - Global `update` method now updates element itself as well as its parents and children
3017
+
3018
+ ### Removed
3019
+
3020
+ - Remove the instance method `$update`
3021
+
3022
+ ### Fixed
3023
+
3024
+ - Fix browser compatibility in Navbar component
3025
+ - Fix preventClick function on touch devices
3026
+ - Fix LightboxPanel props
3027
+ - Fix Player ids in Vimeo videos
3028
+ - Dropbar opens on bottom positioned drops only
3029
+ - Fix setting height of drag in Sortable component
3030
+ - `isInView` checks for element visibility now
3031
+ - Fix check for backgroundSize: cover resetting backgroundSize in Parallax
3032
+ - Fix "Uncaught (in promise) DOMException" in Player
3033
+ - Fix Slideshow `fade` effect
3034
+ - Fix `type` option in Upload component
3035
+ - Fix misplaced Drop on fast toggling
3036
+ - Fix Modal close on bgClick behaviour
3037
+ - Fix Sets calculation in Slider on iOS
3038
+
3039
+ ## 3.0.0 beta 40 (February 8, 2018)
3040
+
3041
+ ### Changed
3042
+
3043
+ - Improve Form Custom reactivity
3044
+ - Improve Scrollspy component reactivity
3045
+
3046
+ ### Fixed
3047
+
3048
+ - Fix using Scrollspy component with default values
3049
+ - Fix Scrollspy if UIkit is loaded async
3050
+ - Fix YouTube short urls in Lightbox component
3051
+ - Fix empty select in Form Custom component
3052
+ - Fix Slider reactivity
3053
+
3054
+ ## 3.0.0 beta 39 (January 31, 2018)
3055
+
3056
+ ### Added
3057
+
3058
+ - Add link heading to Link component
3059
+ - Add Slider Parallax component
3060
+ - Add support for privacy enhanced mode in YouTube urls
3061
+
3062
+ ### Changed
3063
+
3064
+ - _Active_ classes are applied to all fully visible slides in Slider component
3065
+ - Allow all Lightbox Panel options to be set through Lightbox component
3066
+
3067
+ ### Fixed
3068
+
3069
+ - Fix Slider Nav initially has no state
3070
+ - Fix Esc closing on Confirm and Prompt dialogs
3071
+ - Fix using Grids in Slider component in Safari
3072
+ - Fix edge scrolling in Sortable component in IE11
3073
+ - Fix touch scrolling in Slideshow/Slider in Edge
3074
+ - Fix tap event on touch devices
3075
+ - Fix initial Drop positioning
3076
+
3077
+ ## 3.0.0 beta 38 (January 18, 2018)
3078
+
3079
+ ### Added
3080
+
3081
+ - Add support to center elements outside a container to Position component
3082
+
3083
+ ### Changed
3084
+
3085
+ - Add `uk-slider-container` class to clip the Slider component
3086
+ - Remove auto-clipping from Slider items. Use `uk-cover-container` instead
3087
+
3088
+ ### Fixed
3089
+
3090
+ - Fix Tooltip in Accordion loosing title
3091
+ - Fix Inverse mode (Light and Dark) in tests
3092
+ - Fix component getter
3093
+
3094
+ ## 3.0.0 beta 37 (January 16, 2018)
3095
+
3096
+ ### Added
3097
+
3098
+ - Add `beforeConnect` and `beforeDisconnect` component hooks
3099
+
3100
+ ### Fixed
3101
+
3102
+ - Fix origin modifier for programmatically triggered animations
3103
+ - Dialogs correctly cleanup after closing
3104
+ - Fix missing container option on Tooltip component
3105
+ - Fix positioning of Dropdowns in Dropbar
3106
+ - Fix browser freezing on Slider resize
3107
+ - Fix Custom Form initial value
3108
+ - Fix Tooltip removing title attribute
3109
+
3110
+ ## 3.0.0 beta 36 (January 11, 2018)
3111
+
3112
+ ### Added
3113
+
3114
+ - Add Slider component
3115
+ - Add RTL support to Slideshow component
3116
+ - Add reactive navigation to Slideshow component
3117
+ - Hide slideshow navigation if slideshow contains single slide only
3118
+ - Add support to play/pause Video component as it enters/leaves the viewport
3119
+ - Add file size restriction `maxSize` to Upload component
3120
+ - Add option to pass `data-alt=""` to images in Lightbox component
3121
+ - Component DOM attributes like `uk-grid` are being observed for changes
3122
+ - Improve `UIkit.container` setter (allows for assigning selector strings)
3123
+ - Make some util methods more error resilient
3124
+ - Add config options to build scripts, type `./build/build.js -h` for options
3125
+ - Add UIkit version banner to generated CSS files
3126
+ - Add option to skip minification during Less compiling (`./build/less.js -d`)
3127
+ - Add parametrization for prefix and scope scripts. Use `scope/prefix -h` (e.g. `npm run prefix -- -h`) to list the available options.
3128
+
3129
+ ### Changed
3130
+
3131
+ - IMPORTANT: Use `<a>` element instead of headings for the accordion title
3132
+ - Calling a component constructor with data on an already initialized component will reset the component
3133
+ - Dropbar no longer repositions Dropdowns in DOM upon opening
3134
+
3135
+ ### Deprecated
3136
+
3137
+ - Deprecate `uk-gif`
3138
+
3139
+ ### Removed
3140
+
3141
+ - Remove support for IE 10
3142
+ - Remove support for iOS < 9.1
3143
+ - Remove most -webkit and -moz vendor prefixes
3144
+ - Remove named component Constructors
3145
+
3146
+ ### Fixed
3147
+
3148
+ - Make Accordion component accessible through keyboard
3149
+ - Make `uk-visible-toggle` accessible through keyboard
3150
+ - Make `uk-transition-toggle` accessible through keyboard
3151
+ - Fix scrolling with scrollbar on Modal closes Modal
3152
+ - Fix `container` options
3153
+ - Fix initializing Icon components programmatically
3154
+ - Fix accordion initial active option
3155
+ - Fix webpack builds (npm run test)
3156
+ - 'uk-scrollspy-class' attr may now be `data-` prefixed too
3157
+ - Fix dialogs not being removed from DOM after closing
3158
+
3159
+ ## 3.0.0 beta 35 (November 13, 2017)
3160
+
3161
+ ### Added
3162
+
3163
+ - Parallax supports RGB and RGBA now
3164
+
3165
+ ### Fixed
3166
+
3167
+ - Fix Modal toggling if Tab components media setting is active
3168
+ - Fix Tab component regression
3169
+ - Fix context selectors that are applied to elements with ids containing special characters
3170
+ - Fix reactivity in Leader component
3171
+ - Fix events triggered by Accordion component
3172
+ - Fix text wrapping for Firefox in Position component
3173
+ - Fix Scrollspy triggering before other components have been applied at least once
3174
+ - Fix Accordion title click behavior
3175
+ - Fix Sortable on iOS
3176
+ - Fix Sticky Navbar (IE11)
3177
+
3178
+ ## 3.0.0 beta 34 (November 7, 2017)
3179
+
3180
+ ### Fixed
3181
+
3182
+ - Fix "Illegal invocation" error in Slideshow component
3183
+ - Fix Offcanvas animations
3184
+ - Fix Tab component if no lists are connected
3185
+
3186
+ ## 3.0.0 beta 33 (November 3, 2017)
3187
+
3188
+ ### Added
3189
+
3190
+ - Add Thumbnav component
3191
+ - Add large margin modifier to Position component
3192
+
3193
+ ### Changed
3194
+
3195
+ - IMPORTANT: Remove `@slidenav-padding`. Use new `@slidenav-padding-vertical` and `@slidenav-padding-horizontal`
3196
+ - IMPORTANT: Sortable component now triggers `moved`, `added` and `removed` events instead of `change`
3197
+ - Update Dotnav and Slidenav style
3198
+ - Lightbox navigation no longer stacks on keyboard input
3199
+ - Allow text selection within the Slideshow component
3200
+ - Prevent vertical scrolling while swiping the Slideshow
3201
+ - Remove tap highlighting when swiping the Slideshow in iOS
3202
+
3203
+ ### Fixed
3204
+
3205
+ - Prevent Modal from toggling if event was defaultPrevented
3206
+ - Fix using Scrollspy Nav within Sticky component
3207
+ - Hide Slidenav in Lightbox if single item only
3208
+ - Fix Parallax background image positioning
3209
+ - Fix setting headers in AJAX request
3210
+ - Fix dotnav box-sizing
3211
+ - Fix Slideshow animations
3212
+ - Fix Sortable component sorting animation when sorting between lists
3213
+ - Fix event registration if `el` option is array
3214
+ - Slideshow navigation items may now be `data-` prefixed too
3215
+
3216
+ ## 3.0.0 beta 32 (October 27, 2017)
3217
+
3218
+ ### Added
3219
+
3220
+ - Add `min-height` option to Height Viewport component
3221
+
3222
+ ### Changed
3223
+
3224
+ - Improve accelerated slide animations in Slideshow component
3225
+ - Improve slide dragging behaviour in Slideshow component
3226
+
3227
+ ### Fixed
3228
+
3229
+ - Fix slide animations stacking when tab is not focused in Slideshow component
3230
+ - Fix overlay not showing in Offcanvas component
3231
+ - Fix Slideshow Parallax in Slideshow component for IE11
3232
+ - Fix default border-radius for `<button>` element in Chrome 62.
3233
+
3234
+ ## 3.0.0 beta 31 (October 20, 2017)
3235
+
3236
+ ### Added
3237
+
3238
+ - Add Slideshow component
3239
+ - Add style support for radio and checkbox in Firefox
3240
+ - Add `autoplay` setting to Lightbox
3241
+ - Add `poster` setting to Lightbox items
3242
+
3243
+ ### Changed
3244
+
3245
+ - IMPORTANT: Remove jQuery dependency
3246
+ - Remove `uk-section-media` from Section component
3247
+ - Change `uk-tab-left` text alignment to left
3248
+ - Update Overview in tests
3249
+ - Rename `isWithin` to `within`
3250
+ - Allow fullscreen mode for YouTube and Vimeo videos in Lightbox
3251
+ - Video component now stops playing the video regardless of the `autoplay` setting
3252
+
3253
+ ### Fixed
3254
+
3255
+ - Fix responsive images in modal for IE11
3256
+ - Fix close button outside causing a scrollbar on small devices
3257
+ - Fix inverse style for `uk-hr`
3258
+ - Fix video size of Vimeo videos in Lightbox component
3259
+ - Fix closing stacked modals
3260
+
3261
+ ## 3.0.0 beta 30 (August 18, 2017)
3262
+
3263
+ ### Fixed
3264
+
3265
+ - Fix regression for IE11
3266
+
3267
+ ## 3.0.0 beta 29 (August 18, 2017)
3268
+
3269
+ ### Changed
3270
+
3271
+ - Media options now support any valid media query syntax
3272
+
3273
+ ### Fixed
3274
+
3275
+ - Fix whitespace trimming in dist
3276
+ - Fix active drop in `click` mode close on `hover` in Navbar component
3277
+ - Fix `selTarget` option in Sticky component
3278
+ - Fix icons not displaying if connected/disconnected in rapid succession
3279
+ - Ensure Navbar component does not initialize Drop components if Dropdown is already present
3280
+ - Fix scrollbar jumping in Switcher
3281
+ - Fix usage of Scroll component in Drop, Dropdown, Navbar and Offcanvas in `overlay` mode
3282
+ - Fix cursor set to pointer for icons
3283
+ - Fix Scrollspy Nav not working correctly when zoomed in
3284
+ - Fix animations for Firefox
3285
+ - Fix icons not displaying if lazy loaded
3286
+
3287
+ ## 3.0.0 beta 28 (August 01, 2017)
3288
+
3289
+ ### Added
3290
+
3291
+ - Add Sticky Navbar test
3292
+ - Add inverse style for button link
3293
+
3294
+ ### Changed
3295
+
3296
+ - IMPORTANT: Rename `closeAlert` method to `close` in Alert component
3297
+ - IMPORTANT: Rename `close` param to `selClose` in Alert component
3298
+ - IMPORTANT: Rename `scrollToElement` method to `scrollTo` in Scroll component
3299
+ - Add box-shadow to dropbar slide
3300
+
3301
+ ### Fixed
3302
+
3303
+ - Fix icon color for Edge
3304
+ - Add workaround to mitigate the duplicating icons issue
3305
+ - Fix issue with multilevel dropdown
3306
+ - Fix compatibility issue with Prototype and MooTools
3307
+ - Fix Sticky Navbar behaviour
3308
+ - Fix Parallax for IE11
3309
+ - Fix swiping in Lightbox
3310
+ - Fix alert close animation
3311
+
3312
+ ## 3.0.0 beta 27 (July 20, 2017)
3313
+
3314
+ ### Fixed
3315
+
3316
+ - Remove stacking context for `uk-inline`
3317
+ - Prevent scrolling in Lightbox with one slide only
3318
+
3319
+ ## 3.0.0 beta 26 (July 20, 2017)
3320
+
3321
+ ### Added
3322
+
3323
+ - Add Lightbox component
3324
+ - Add Video component
3325
+
3326
+ ### Changed
3327
+
3328
+ - IMPORTANT: Remove caption from Modal component. Use Lightbox component instead
3329
+ - IMPORTANT: Remove lightbox modifier from Modal component. Use Lightbox component instead
3330
+ - IMPORTANT: Remove center option from Modal component. Use `uk-margin-auto-vertical` modifier
3331
+ - IMPORTANT: Renamed `@modal-dialog-margin-vertical` to `@modal-padding-vertical-s`
3332
+ - IMPORTANT: Renamed `@modal-dialog-margin-vertical-xs` to `@modal-padding-vertical`
3333
+ - Refactored Modal component
3334
+ - `offsetTop` in Height Viewport component only applies if its element's top position is smaller than half the viewport
3335
+ - Larger width for form width x-small
3336
+
3337
+ ### Fixed
3338
+
3339
+ - Offcanvas will keep scroll position if anchor link was clicked
3340
+ - Fix margin modifier in Position component for IE11
3341
+ - Fix divider-small text alignment for `<hr>` element Edge and IE
3342
+ - Fix setting the ratio of Spinner component
3343
+ - Fix event handling in Sortable component
3344
+ - Fix grid calculation (Firefox)
3345
+ - Fix dropdown margins in the dropbar
3346
+ - Fix opening Modals from Offcanvas
3347
+
3348
+ ## 3.0.0 beta 25 (June 9, 2017)
3349
+
3350
+ ### Added
3351
+
3352
+ - Add size modifier to Tile component
3353
+ - Add link text to Link component
3354
+ - Add 500px icon
3355
+
3356
+ ### Changed
3357
+
3358
+ - Larger horizontal padding for form input, select and textarea
3359
+ - Improve Parallax Background Position behaviour
3360
+
3361
+ ### Removed
3362
+
3363
+ - Remove padding xlarge from Padding component
3364
+
3365
+ ### Fixed
3366
+
3367
+ - Fix touch event handling
3368
+ - Fix cursor height for active forms in Safari
3369
+ - Fix Grid and Margin component for cells with no height
3370
+ - Fix Parallax if element is translated vertical
3371
+ - Fix Grid divider in RTL mode
3372
+
3373
+ ## 3.0.0 beta 24 (May 22, 2017)
3374
+
3375
+ ### Changed
3376
+
3377
+ - Make Icon component work with `<button>` element
3378
+
3379
+ ### Fixed
3380
+
3381
+ - Fix margin bottom behaviour in Grid Parallax
3382
+ - Fix error thrown by Notification component
3383
+ - Fix `expand` mode in Height Viewport component
3384
+ - Fix background position behaviour in Parallax component
3385
+ - Fix removal of classes after sorting in Sortable component
3386
+
3387
+ ## 3.0.0 beta 23 (May 18, 2017)
3388
+
3389
+ ### Added
3390
+
3391
+ - Add Parallax component
3392
+ - Add Grid Parallax component
3393
+ - Add Form Range component
3394
+ - Add Marker component
3395
+ - Add hidden classes for touch devices to Visibility component
3396
+ - Add padding xlarge to Padding component
3397
+ - Add transform center to Utility component
3398
+ - Add `clsBelow` option for Sticky component (uk-sticky-below)
3399
+
3400
+ ### Changed
3401
+
3402
+ - IMPORTANT: Move Less/Sass imports into one file. Use `components/_import.less`
3403
+ - IMPORTANT: Renamed `transition` option to `easing` in Scroll component
3404
+ - Improve flip behaviour in Drop component
3405
+ - Improve `class` handling
3406
+
3407
+ ### Fixed
3408
+
3409
+ - Fix support for more than two digits in Countdown component
3410
+ - Fix typo in Togglable mixin name
3411
+ - Fix form select image for RTL
3412
+ - Fix Scrollspy `cls` option
3413
+ - Fix HeightMatch not working on initial page load
3414
+ - Fix touch events
3415
+ - Fix click event firing twice (iOS <= 9.2)
3416
+ - Fix missing table hook
3417
+ - Prevent initial page jump (Safari)
3418
+ - Fix document height calculation (IE 10)
3419
+ - Fix Tooltip recreates on hovering the already focused input
3420
+
3421
+ ## 3.0.0 beta 22 (April 24, 2017)
3422
+
3423
+ ### Added
3424
+
3425
+ - Add Countdown component
3426
+ - Add divider, justify and responsive modifier to Table component
3427
+ - Add inverse support for Table component
3428
+ - Add box-shadow bottom to Utility component
3429
+
3430
+ ### Changed
3431
+
3432
+ - IMPORTANT: Remove style from default Table component. Use `uk-table-divider` modifier
3433
+ - Move border style to table row instead of table cell
3434
+ - Remove margin from the last-child in Table component cell
3435
+
3436
+ ### Fixed
3437
+
3438
+ - Fix swiping in Switcher
3439
+ - Fix scrolling in Scrollspy Nav (Firefox)
3440
+ - Fix Navbar Dropbar
3441
+ - Fix Tooltip with different animations
3442
+ - Fix Sass showing error when using different color mode in certain components
3443
+
3444
+ ## 3.0.0 beta 21 (April 11, 2017)
3445
+
3446
+ ### Added
3447
+
3448
+ - Add Gitter icon
3449
+ - Attribute observer listens for changes to `component` attribute too
3450
+
3451
+ ### Fixed
3452
+
3453
+ - Fix Instagram, Tumblr and Vimeo icons
3454
+ - Fix unexpected closing of Modal Dialog
3455
+ - Fix `click` default behaviour prevention in Toggle
3456
+ - Fix memory leak in Icons
3457
+
3458
+ ## 3.0.0 beta 20 (April 5, 2017)
3459
+
3460
+ ### Added
3461
+
3462
+ - Add breakpoint classes for flex alignment
3463
+
3464
+ ### Fixed
3465
+
3466
+ - Fix Drop positioning
3467
+ - Fix imports in Modal
3468
+ - Fix `click` default behaviour prevention in Toggle
3469
+ - Fix queued Toggle
3470
+ - Fix closing Offcanvas with swipe gesture (Android)
3471
+ - Fix Toggle icons preventing Drops from opening
3472
+ - Fix loading UIkit deferred
3473
+
3474
+ ## 3.0.0 beta 19 (March 31, 2017)
3475
+
3476
+ ### Added
3477
+
3478
+ - Add Sass support
3479
+ - Add Leader to Utility component
3480
+ - Add Offcanvas close button
3481
+ - Add margin auto vertical classes
3482
+ - Add padding left/right remove classes
3483
+ - Add Tripadvisor and Yelp icons
3484
+ - Add computed properties
3485
+
3486
+ ### Changed
3487
+
3488
+ - IMPORTANT: Offcanvas requires wrapping page in extra div
3489
+ - Refactored Offcanvas component
3490
+ - Update Instagram, Tumblr and Vimeo icons
3491
+ - Component Constructor initializes multiple components at once
3492
+
3493
+ ### Fixed
3494
+
3495
+ - Fix Offcanvas scrolling on touch devices
3496
+ - Fix Scrollspy in view check
3497
+ - Fix text wrapping for Firefox in Position component
3498
+ - Fix closing Accordion without animation
3499
+
3500
+ ## 3.0.0 beta 18 (March 10, 2017)
3501
+
3502
+ ### Fixed
3503
+
3504
+ - Fix regression with positioning
3505
+
3506
+ ## 3.0.0 beta 17 (March 10, 2017)
3507
+
3508
+ ### Added
3509
+
3510
+ - Add Tile component
3511
+ - Add grid item match modifier to Grid component
3512
+ - Tooltip is now attribute reactive
3513
+
3514
+ ### Changed
3515
+
3516
+ - Rename `uk-background` to `uk-background-default`
3517
+ - Drop, Dropdown, Toggle component's mode is a comma separated list now (to support hover only mode)
3518
+
3519
+ ### Fixed
3520
+
3521
+ - Fix deferred UIKit loading
3522
+ - Fix Dropdowns not closing immediately upon hovering other navbar item in Navbar component
3523
+ - Fix navbar groups center left/right (IE11)
3524
+ - Fix "sticky on up" behaviour in Sticky component
3525
+ - Fix Offcanvas closing without animation
3526
+ - Fix links in Notification message clickable
3527
+ - Fix overriding default icons
3528
+ - Fix Scrollspy nav when scrolling beyond last item
3529
+
3530
+ ## 3.0.0 beta 16 (March 01, 2017)
3531
+
3532
+ ### Fixed
3533
+
3534
+ - Fix Notification component
3535
+
3536
+ ## 3.0.0 beta 15 (March 01, 2017)
3537
+
3538
+ ### Fixed
3539
+
3540
+ - Fix dist
3541
+
3542
+ ## 3.0.0 beta 14 (March 01, 2017)
3543
+
3544
+ ### Changed
3545
+
3546
+ - Rename `.rtl` dist files to `-rtl`
3547
+ - Include none minified JS files in dist
3548
+
3549
+ ### Fixed
3550
+
3551
+ - Fix UMD/AMD dist
3552
+
3553
+ ## 3.0.0 beta 13 (March 01, 2017)
3554
+
3555
+ ### Added
3556
+
3557
+ - Add Receiver icon
3558
+ - Add Hero heading modifier
3559
+ - Add text background
3560
+ - Add ID for AMD bundles
3561
+
3562
+ ### Changed
3563
+
3564
+ - Move Icons into JavaScript
3565
+ - Component Constructor initializes and returns single component only
3566
+ - Rename function `show` to `toggle` in Accordion component
3567
+ - Switcher no longer "swipes" with mouse
3568
+ - Sticky component applies active class after scrolling below top
3569
+
3570
+ ### Removed
3571
+
3572
+ - Remove text primary hook
3573
+
3574
+ ### Fixed
3575
+
3576
+ - Fix npm not watching Less files
3577
+ - Modal no longer closes immediately when toggled from custom `click` handler
3578
+ - Fix Accordion component
3579
+ - Fix container for Tooltip component
3580
+ - Fix Dropdowns closing in Navbar component
3581
+ - Fix Drops closing on click on hash links
3582
+ - Fix Tab component not initializing
3583
+ - Fix icon duplication
3584
+
3585
+ ## 3.0.0 beta 12 (February 17, 2017)
3586
+
3587
+ ### Added
3588
+
3589
+ - Add nested Drops
3590
+ - Add text primary hook
3591
+
3592
+ ### Changed
3593
+
3594
+ - Make Accordion selectors more specific
3595
+ - Optimized margin modifier in Position component
3596
+ - Drop component no longer forces `click` on touch devices
3597
+
3598
+ ### Removed
3599
+
3600
+ - Remove obsolete webkitFontSmoothing workaround
3601
+
3602
+ ### Fixed
3603
+
3604
+ - Fix text wrapping in Position component
3605
+ - Fix icons in Safari's private browsing mode
3606
+ - Fix right click triggers click event
3607
+ - Fix empty targets in HeightMatch component
3608
+ - Fix Tooltip component on touch devices
3609
+
3610
+ ## 3.0.0 beta 11 (February 13, 2017)
3611
+
3612
+ ### Fixed
3613
+
3614
+ - Fix icons not showing
3615
+
3616
+ ## 3.0.0 beta 10 (February 13, 2017)
3617
+
3618
+ ### Added
3619
+
3620
+ - Height Viewport component supports selector for Offset Bottom option
3621
+ - Allow to preserve all color with one class when using `uk-svg`
3622
+ - Add RTL support (RTL first)
3623
+
3624
+ ### Changed
3625
+
3626
+ - Percentage value for Offset Bottom in Height Viewport component is calculated against the whole viewport
3627
+
3628
+ ### Fixed
3629
+
3630
+ - Fix Notification component initialization
3631
+ - Fix beta 8 regression with missing class in Navbar component
3632
+ - Fix context selectors
3633
+ - Sticky components sets inactive class initially
3634
+ - Fix path to icons.svg in /custom folder
3635
+ - Fix wrapping grid columns (IE + Edge)
3636
+
3637
+ ## 3.0.0 beta 9 (February 3, 2017)
3638
+
3639
+ ### Fixed
3640
+
3641
+ - Fix prefixed JavaScript not working
3642
+ - Fix beta 8 regression with Scrollspy targets
3643
+ - Fix width-expand not wrapping into next row in rare cases (Safari)
3644
+
3645
+ ## 3.0.0 beta 8 (February 2, 2017)
3646
+
3647
+ ### Added
3648
+
3649
+ - Apply class `uk-svg` to SVG component
3650
+
3651
+ ### Changed
3652
+
3653
+ - Update event registration
3654
+ - Use native Promises instead of jQuery Deferred
3655
+
3656
+ ### Fixed
3657
+
3658
+ - Fix Cover component if the container has padding
3659
+ - Fix Scrollspy component targeting wrong elements
3660
+ - Switcher supports `data-` prefixed items now
3661
+ - Fix beta 7 regression (IE <= 11)
3662
+
3663
+ ## 3.0.0 beta 7 (February 1, 2017)
3664
+
3665
+ ### Added
3666
+
3667
+ - Add sub groups center left/right to Navbar component
3668
+ - Add box-shadow-hover to Utility component
3669
+ - Height Viewport component supports pixel / percentage values for Offset Bottom option
3670
+
3671
+ ### Changed
3672
+
3673
+ - Less no longer uses component attribute selectors
3674
+ - Accordion close and open icons using variables
3675
+
3676
+ ### Removed
3677
+
3678
+ - Remove `uk-cover` CSS only solution
3679
+
3680
+ ### Fixed
3681
+
3682
+ - Fix icon `play-circle`
3683
+ - Fix Spinner when `stroke-width` cannot be read
3684
+ - Fix memory leak in SVG component
3685
+ - Prevent transition-toggle from setting a transition
3686
+ - Fix width-expand not wrapping into next row in rare cases
3687
+ - Allow a fixed width on nested grids with grid-match
3688
+ - Fix Height Viewport offset calculation
3689
+ - Fix Sticky (Chrome > 55)
3690
+
3691
+ ## 3.0.0 beta 6 (January 24, 2017)
3692
+
3693
+ ### Added
3694
+
3695
+ - Togglable triggers `shown`/`hidden` events, when animations complete
3696
+
3697
+ ### Fixed
3698
+
3699
+ - Fix component initialization
3700
+ - Fix Card component extending inverse
3701
+ - Fix background-fixed (Firefox + IE)
3702
+
3703
+ ## 3.0.0 beta 5 (January 18, 2017)
3704
+
3705
+ ### Changed
3706
+
3707
+ - UIkit observes `<body>` element too now
3708
+ - Performance improvements
3709
+
3710
+ ### Fixed
3711
+
3712
+ - Fix regression with initialization (IE + Edge)
3713
+ - Fix beta 2 regression for SVG’s (Safari)
3714
+ - Fix Sticky width after resize
3715
+ - Fix page width on resizing Offcanvas
3716
+ - Fix props initialization for `data-uk-` components
3717
+ - Fix sortable children loosing event bindings after sort
3718
+
3719
+ ## 3.0.0 beta 4 (January 18, 2017)
3720
+
3721
+ ### Fixed
3722
+
3723
+ - Fix Scrollspy Nav within Sticky (Safari)
3724
+ - Fix beta 3 regression for Accordion
3725
+ - Fix lazy initialized components
3726
+
3727
+ ## 3.0.0 beta 3 (January 17, 2017)
3728
+
3729
+ ### Added
3730
+
3731
+ - Add support for `data-uk-` prefixed component attributes
3732
+ - Add support for Primary Arguments in components
3733
+ - Add support for Functional Components
3734
+ - Components reinitialize on added/removed children
3735
+
3736
+ ### Fixed
3737
+
3738
+ - Fix sortable behaviour
3739
+ - Fix link muted and link reset
3740
+
3741
+ ## 3.0.0 beta 2 (January 11, 2017)
3742
+
3743
+ ### Added
3744
+
3745
+ - Enable deferred loading of UIkit
3746
+
3747
+ ### Changed
3748
+
3749
+ - Improve relative path to icons.svg
3750
+
3751
+ ### Fixed
3752
+
3753
+ - Fix Icon component on `<canvas>` elements (Safari)
3754
+
3755
+ ## 3.0.0 beta 1 (January 09, 2017)
3756
+
3757
+ ### Added
3758
+
3759
+ - Initial release