uikit 3.13.11-dev.d3de726ee → 3.14.1-dev.49070546c

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 (61) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/dist/css/uikit-core-rtl.css +4 -1
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +4 -1
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +4 -1
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +4 -1
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +19 -5
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +19 -5
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +5 -3
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +5 -3
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +1 -1
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +5 -3
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +1 -1
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +20 -6
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +122 -61
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +126 -63
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/core/accordion.js +21 -5
  44. package/src/js/core/cover.js +27 -14
  45. package/src/js/core/drop.js +22 -2
  46. package/src/js/core/height-match.js +1 -1
  47. package/src/js/core/margin.js +9 -2
  48. package/src/js/mixin/parallax.js +4 -3
  49. package/src/js/mixin/position.js +1 -1
  50. package/src/js/mixin/togglable.js +16 -2
  51. package/src/js/util/lang.js +34 -38
  52. package/src/js/util/position.js +6 -3
  53. package/src/less/components/nav.less +1 -0
  54. package/src/less/components/utility.less +1 -0
  55. package/src/scss/components/nav.scss +1 -0
  56. package/src/scss/components/utility.scss +1 -0
  57. package/tests/alert.html +1 -1
  58. package/tests/drop.html +154 -80
  59. package/tests/navbar.html +1 -1
  60. package/tests/parallax.html +1 -1
  61. package/tests/sticky-parallax.html +8 -8
package/CHANGELOG.md CHANGED
@@ -2,16 +2,34 @@
2
2
 
3
3
  ## WIP
4
4
 
5
+ ## Added
6
+
7
+ - Add `box-shadow` to `toggleHeight()` hide properties
8
+ - Add adaptive velocity to Alert and Accordion components
9
+
10
+ ## Changed
11
+
12
+ - Set `transition` option to `ease` by default in Togglable mixin
13
+
14
+ ## Fixed
15
+
16
+ - Fix toggling accordion item while transition is in progress
17
+ - Fix Drop positioning with `boundaryAlign: true`
18
+
19
+ ## 3.14.0 (April 27, 2022)
20
+
5
21
  ### Added
6
22
 
7
23
  - Add position shifting to Drop and Dropdown components
8
24
  - Add axis flipping if overflowing on both sides to Drop and Dropdown components
9
25
  - Add `max-width` to prevent overflowing the viewport to Drop and Dropdown components
26
+ - Add `display` option to Drop and Dropdown components
10
27
  - Add support for negative `start` value in Sticky component
11
28
  - Add `overflow-flip` option to Sticky component
12
29
  - Add navbar justify to Navbar component
13
30
  - Add subtitle classes to Nav, Dropdown and Navbar components
14
31
  - Add support for `vw`,`vh`,`%` and `px` units to scale property in Parallax component
32
+ - Add resize horizontal class to Utility component
15
33
 
16
34
  ### Changed
17
35
 
@@ -28,6 +46,8 @@
28
46
  - Fix dropbar dropdown alignment if boundary-align is true
29
47
  - Fix viewport helper functions take border into account
30
48
  - Fix Sticky component responsiveness on window resize
49
+ - Fix Cover component correctly applies ratio if only one of width/height is provided
50
+ - Fix responsiveness in Grid, Margin and Height Match component
31
51
 
32
52
  ## 3.13.10 (April 20, 2022)
33
53
 
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.13.11-dev.d3de726ee | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.14.1-dev.49070546c | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -7411,6 +7411,9 @@ iframe[data-uk-cover] {
7411
7411
  .uk-resize {
7412
7412
  resize: both;
7413
7413
  }
7414
+ .uk-resize-horizontal {
7415
+ resize: horizontal;
7416
+ }
7414
7417
  .uk-resize-vertical {
7415
7418
  resize: vertical;
7416
7419
  }