uikit 3.13.8-dev.f030a8b39 → 3.13.9

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 (75) hide show
  1. package/CHANGELOG.md +13 -6
  2. package/dist/css/uikit-core-rtl.css +5 -34
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +5 -34
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +3 -34
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +3 -34
  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 +5 -2
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +5 -2
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +1 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +1 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +1 -1
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +1 -1
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +1 -1
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +29 -59
  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 +219 -205
  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 +227 -243
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/api/hooks.js +1 -1
  44. package/src/js/components/lightbox-panel.js +4 -1
  45. package/src/js/components/tooltip.js +3 -38
  46. package/src/js/core/accordion.js +1 -1
  47. package/src/js/core/drop.js +12 -9
  48. package/src/js/core/height-match.js +8 -17
  49. package/src/js/core/margin.js +1 -1
  50. package/src/js/core/navbar.js +1 -3
  51. package/src/js/core/scrollspy.js +45 -26
  52. package/src/js/core/sticky.js +2 -2
  53. package/src/js/core/toggle.js +1 -1
  54. package/src/js/mixin/position.js +24 -22
  55. package/src/js/util/position.js +129 -128
  56. package/src/less/components/dropdown.less +1 -11
  57. package/src/less/components/nav.less +0 -22
  58. package/src/less/components/navbar.less +2 -22
  59. package/src/less/theme/dropdown.less +0 -2
  60. package/src/less/theme/nav.less +0 -4
  61. package/src/less/theme/navbar.less +0 -2
  62. package/src/scss/components/dropdown.scss +1 -11
  63. package/src/scss/components/nav.scss +0 -22
  64. package/src/scss/components/navbar.scss +2 -22
  65. package/src/scss/mixins-theme.scss +0 -4
  66. package/src/scss/mixins.scss +0 -4
  67. package/src/scss/theme/dropdown.scss +0 -2
  68. package/src/scss/theme/nav.scss +0 -4
  69. package/src/scss/theme/navbar.scss +0 -2
  70. package/src/scss/variables-theme.scss +1 -5
  71. package/src/scss/variables.scss +1 -5
  72. package/tests/dropdown.html +2 -16
  73. package/tests/nav.html +0 -27
  74. package/tests/navbar.html +4 -18
  75. package/tests/position.html +39 -38
package/CHANGELOG.md CHANGED
@@ -1,20 +1,26 @@
1
1
  # Changelog
2
2
 
3
- ## WIP
3
+ ## 3.13.9 (April 20, 2022)
4
4
 
5
- ### Added
5
+ ### Fixed
6
6
 
7
- - Add subtitle classes to Nav, Dropdown and Navbar component
8
- - Drop/Dropdowns try to shift to stay within viewport
7
+ - Fix release
8
+
9
+ ## 3.13.8 (April 20, 2022)
9
10
 
10
11
  ### Changed
11
12
 
12
- - Allow text to wrap into the next line for navs in Dropdown component
13
+ - Scrollspy component uses IntersectionObserver instead of scroll/resize events
13
14
 
14
15
  ### Fixed
15
16
 
16
17
  - Fix Drop/Dropdowns component does not close on clicked `.uk-(drop|dropdown)-close` selector
17
- - Fix dropbar dropdown alignment if boundary-align is true
18
+ - Fix Accordion initially not closed
19
+ - Fix Height Match component not matching correctly
20
+ - Fix Margin component does not correctly listen for resize
21
+ - Fix regression in Sticky component affecting height of placeholder
22
+ - Fix Toggle not toggling after re-entering button with mouse before drop has closed itself
23
+ - Fix reposition Drop on scroll
18
24
 
19
25
  ## 3.13.7 (April 1, 2022)
20
26
 
@@ -29,6 +35,7 @@
29
35
 
30
36
  - Image component no longer sets a `background-size` for elements with `background-size` set to `auto`
31
37
 
38
+
32
39
  ### Fixed
33
40
 
34
41
  - Fix Position component
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.13.8-dev.f030a8b39 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.13.9 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3274,6 +3274,9 @@ select.uk-form-width-xsmall {
3274
3274
  /* Nav
3275
3275
  * Adopts `uk-nav`
3276
3276
  ========================================================================== */
3277
+ .uk-dropdown-nav {
3278
+ white-space: nowrap;
3279
+ }
3277
3280
  /*
3278
3281
  * Items
3279
3282
  */
@@ -3285,12 +3288,6 @@ select.uk-form-width-xsmall {
3285
3288
  .uk-dropdown-nav > li.uk-active > a {
3286
3289
  color: #666;
3287
3290
  }
3288
- /*
3289
- * Subtitle
3290
- */
3291
- .uk-dropdown-nav .uk-nav-subtitle {
3292
- font-size: 0.875rem;
3293
- }
3294
3291
  /*
3295
3292
  * Header
3296
3293
  */
@@ -4648,12 +4645,6 @@ ul.uk-nav-sub {
4648
4645
  .uk-nav-default > li.uk-active > a {
4649
4646
  color: #333;
4650
4647
  }
4651
- /*
4652
- * Subtitle
4653
- */
4654
- .uk-nav-default .uk-nav-subtitle {
4655
- font-size: 0.875rem;
4656
- }
4657
4648
  /*
4658
4649
  * Header
4659
4650
  */
@@ -4696,12 +4687,6 @@ ul.uk-nav-sub {
4696
4687
  .uk-nav-primary > li.uk-active > a {
4697
4688
  color: #333;
4698
4689
  }
4699
- /*
4700
- * Subtitle
4701
- */
4702
- .uk-nav-primary .uk-nav-subtitle {
4703
- font-size: 1.25rem;
4704
- }
4705
4690
  /*
4706
4691
  * Header
4707
4692
  */
@@ -5002,21 +4987,13 @@ ul.uk-nav-sub {
5002
4987
  * 1. Set position
5003
4988
  * 2. Bottom padding for dropbar
5004
4989
  * 3. Horizontal padding
5005
- * 4. Reset padding if aligned to boundary
5006
4990
  */
5007
4991
  .uk-navbar-dropdown-dropbar {
5008
4992
  /* 1 */
5009
4993
  --uk-position-offset: 0px;
5010
4994
  /* 2 */
5011
4995
  margin-bottom: 0px;
5012
- /* 3 */
5013
- padding-right: 15px;
5014
- padding-left: 15px;
5015
- }
5016
- /* 4 */
5017
- .uk-navbar-dropdown-dropbar.uk-navbar-dropdown-boundary {
5018
- padding-right: 0;
5019
- padding-left: 0;
4996
+ padding: 15px;
5020
4997
  }
5021
4998
  /* Dropdown Nav
5022
4999
  * Adopts `uk-nav`
@@ -5035,12 +5012,6 @@ ul.uk-nav-sub {
5035
5012
  .uk-navbar-dropdown-nav > li.uk-active > a {
5036
5013
  color: #333;
5037
5014
  }
5038
- /*
5039
- * Subtitle
5040
- */
5041
- .uk-navbar-dropdown-nav .uk-nav-subtitle {
5042
- font-size: 0.875rem;
5043
- }
5044
5015
  /*
5045
5016
  * Header
5046
5017
  */