uikit 3.15.12-dev.f3ed37053 → 3.15.13-dev.2d86ae8cf

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 (50) hide show
  1. package/CHANGELOG.md +15 -7
  2. package/CONTRIBUTING.md +1 -1
  3. package/composer.json +1 -1
  4. package/dist/css/uikit-core-rtl.css +1 -1
  5. package/dist/css/uikit-core-rtl.min.css +1 -1
  6. package/dist/css/uikit-core.css +1 -1
  7. package/dist/css/uikit-core.min.css +1 -1
  8. package/dist/css/uikit-rtl.css +1 -1
  9. package/dist/css/uikit-rtl.min.css +1 -1
  10. package/dist/css/uikit.css +1 -1
  11. package/dist/css/uikit.min.css +1 -1
  12. package/dist/js/components/countdown.js +1 -1
  13. package/dist/js/components/countdown.min.js +1 -1
  14. package/dist/js/components/filter.js +2 -5
  15. package/dist/js/components/filter.min.js +1 -1
  16. package/dist/js/components/lightbox-panel.js +7 -4
  17. package/dist/js/components/lightbox-panel.min.js +1 -1
  18. package/dist/js/components/lightbox.js +7 -4
  19. package/dist/js/components/lightbox.min.js +1 -1
  20. package/dist/js/components/notification.js +1 -1
  21. package/dist/js/components/notification.min.js +1 -1
  22. package/dist/js/components/parallax.js +1 -1
  23. package/dist/js/components/parallax.min.js +1 -1
  24. package/dist/js/components/slider-parallax.js +1 -1
  25. package/dist/js/components/slider-parallax.min.js +1 -1
  26. package/dist/js/components/slider.js +1 -1
  27. package/dist/js/components/slider.min.js +1 -1
  28. package/dist/js/components/slideshow-parallax.js +1 -1
  29. package/dist/js/components/slideshow-parallax.min.js +1 -1
  30. package/dist/js/components/slideshow.js +1 -1
  31. package/dist/js/components/slideshow.min.js +1 -1
  32. package/dist/js/components/sortable.js +2 -5
  33. package/dist/js/components/sortable.min.js +1 -1
  34. package/dist/js/components/tooltip.js +1 -1
  35. package/dist/js/components/tooltip.min.js +1 -1
  36. package/dist/js/components/upload.js +1 -1
  37. package/dist/js/components/upload.min.js +1 -1
  38. package/dist/js/uikit-core.js +15 -15
  39. package/dist/js/uikit-core.min.js +1 -1
  40. package/dist/js/uikit-icons.js +1 -1
  41. package/dist/js/uikit-icons.min.js +1 -1
  42. package/dist/js/uikit.js +22 -22
  43. package/dist/js/uikit.min.js +1 -1
  44. package/package.json +1 -1
  45. package/src/js/components/lightbox-panel.js +5 -2
  46. package/src/js/core/margin.js +2 -0
  47. package/src/js/core/sticky.js +2 -3
  48. package/src/js/mixin/internal/animate-slide.js +1 -4
  49. package/src/js/util/filter.js +0 -1
  50. package/tests/svg.html +2 -2
package/CHANGELOG.md CHANGED
@@ -2,15 +2,23 @@
2
2
 
3
3
  ## WIP
4
4
 
5
+ ### Fixed
6
+
7
+ - Fix Sticky component does not reset width on resize
8
+
9
+ ## 3.15.12 (November 4, 2022)
10
+
5
11
  ### Added
6
12
 
7
13
  - Add `uikit:init` event triggered on document before components initialize
8
14
 
9
15
  ### Fixed
10
16
 
11
- - Fix placeholder has no width if Sticky element's width dependes on its content
17
+ - Fix placeholder has no width if Sticky element's width depends on its content
12
18
  - Fix Slider/Slideshow Parallax respect `media` option
13
19
  - Fix Video component with `autoplay: true` no longer resumes autoplay on scroll after being paused
20
+ - Fix width/height passed through `attrs` to video item in Lightbox component
21
+ - Fix regression in Sortable component (elements are hidden after sorting)
14
22
 
15
23
  ## 3.15.11 (October 25, 2022)
16
24
 
@@ -56,7 +64,7 @@
56
64
 
57
65
  ### Changed
58
66
 
59
- - Improve Accordion component keeps toggle in view when toggling
67
+ - Improve Accordion component keeps toggle in view when toggling
60
68
 
61
69
  ### Fixed
62
70
 
@@ -97,7 +105,7 @@
97
105
 
98
106
  ### Fixed
99
107
 
100
- - Fix Slideshow no longer completely resets upon adding slides
108
+ - Fix Slideshow no longer completely resets upon adding slides
101
109
 
102
110
  ## 3.15.2 (August 8, 2022)
103
111
 
@@ -107,7 +115,7 @@
107
115
 
108
116
  ### Fixed
109
117
 
110
- - Remove click event listener in Scroll component correctly
118
+ - Remove click event listener in Scroll component correctly
111
119
 
112
120
  ## 3.15.1 (July 15, 2022)
113
121
 
@@ -126,8 +134,8 @@
126
134
  ### Added
127
135
 
128
136
  - Add Dropbar component
129
- - Add `target`, `target-x`, `target-y` and `inset` options to Drop component
130
- - Add `stretch` and `bg-scroll` options to Drop component
137
+ - Add `target`, `target-x`, `target-y` and `inset` options to Drop component
138
+ - Add `stretch` and `bg-scroll` options to Drop component
131
139
  - Add `shift` option to Drop component
132
140
  - Add `slide` and `reveal` animations to Drop component
133
141
  - Add `animate-out` option to Drop component
@@ -204,7 +212,7 @@
204
212
 
205
213
  - Add `box-shadow` to `toggleHeight()` hide properties
206
214
  - Add adaptive velocity to Alert and Accordion components
207
-
215
+
208
216
  ### Changed
209
217
 
210
218
  - Set `transition` option to `ease` by default in Togglable mixin
package/CONTRIBUTING.md CHANGED
@@ -66,7 +66,7 @@ help. Thanks for taking the time to contribute.
66
66
  otherwise you risk spending a lot of time working on something that the
67
67
  project's developers might not want to merge into the project.
68
68
 
69
- UIkit follows the [GitFlow branching model](http://nvie.com/posts/a-successful-git-branching-model). The ```master``` branch always reflects a production-ready state while the latest development is taking place in the ```develop``` branch.
69
+ UIkit follows the [GitFlow branching model](http://nvie.com/posts/a-successful-git-branching-model). The ```main``` branch always reflects a production-ready state while the latest development is taking place in the ```develop``` branch.
70
70
 
71
71
  Each time you want to work on a fix or a new feature, create a new branch based on the ```develop``` branch: ```git checkout -b BRANCH_NAME develop```. Only pull requests to the ```develop``` branch will be merged.
72
72
 
package/composer.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "license": "MIT",
12
12
  "extra": {
13
13
  "branch-alias": {
14
- "dev-master": "3.0.x-dev"
14
+ "dev-main": "3.0.x-dev"
15
15
  }
16
16
  }
17
17
  }
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.15.12-dev.f3ed37053 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.15.13-dev.2d86ae8cf | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */