uikit 3.24.3-dev.63b12446 → 3.25.0

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 (49) hide show
  1. package/CHANGELOG.md +2 -1
  2. package/build/release.js +2 -2
  3. package/dist/css/uikit-core-rtl.css +1 -1
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +1 -1
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +1 -1
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +1 -1
  10. package/dist/css/uikit.min.css +1 -1
  11. package/dist/js/components/countdown.js +1 -1
  12. package/dist/js/components/countdown.min.js +1 -1
  13. package/dist/js/components/filter.js +1 -1
  14. package/dist/js/components/filter.min.js +1 -1
  15. package/dist/js/components/lightbox-panel.js +1 -1
  16. package/dist/js/components/lightbox-panel.min.js +1 -1
  17. package/dist/js/components/lightbox.js +1 -1
  18. package/dist/js/components/lightbox.min.js +1 -1
  19. package/dist/js/components/notification.js +1 -1
  20. package/dist/js/components/notification.min.js +1 -1
  21. package/dist/js/components/parallax.js +1 -1
  22. package/dist/js/components/parallax.min.js +1 -1
  23. package/dist/js/components/slider-parallax.js +1 -1
  24. package/dist/js/components/slider-parallax.min.js +1 -1
  25. package/dist/js/components/slider.js +1 -1
  26. package/dist/js/components/slider.min.js +1 -1
  27. package/dist/js/components/slideshow-parallax.js +1 -1
  28. package/dist/js/components/slideshow-parallax.min.js +1 -1
  29. package/dist/js/components/slideshow.js +1 -1
  30. package/dist/js/components/slideshow.min.js +1 -1
  31. package/dist/js/components/sortable.js +1 -1
  32. package/dist/js/components/sortable.min.js +1 -1
  33. package/dist/js/components/tooltip.js +1 -1
  34. package/dist/js/components/tooltip.min.js +1 -1
  35. package/dist/js/components/upload.js +1 -1
  36. package/dist/js/components/upload.min.js +1 -1
  37. package/dist/js/uikit-core.js +50 -42
  38. package/dist/js/uikit-core.min.js +1 -1
  39. package/dist/js/uikit-icons.js +1 -1
  40. package/dist/js/uikit-icons.min.js +1 -1
  41. package/dist/js/uikit.js +11 -3
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +1 -1
  44. package/src/js/core/height-viewport.js +12 -1
  45. package/tests/height-viewport.html +12 -3
  46. package/tests/parallax.html +1 -1
  47. package/tests/sticky.html +2 -2
  48. package/tests/tab.html +1 -1
  49. package/tests/toggle.html +2 -2
package/CHANGELOG.md CHANGED
@@ -1,11 +1,12 @@
1
1
  # Changelog
2
2
 
3
- ## WIP 3.25.0
3
+ ## 3.25.0 (December 2, 2025)
4
4
 
5
5
  ### Added
6
6
 
7
7
  - Add support for using the Accordion component without any default style
8
8
  - Add accordion icon to Accordion component
9
+ - Add `media` option to Height Viewport component
9
10
 
10
11
  ### Changed
11
12
 
package/build/release.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import archiver from 'archiver';
2
- import dateFormat from 'dateformat/lib/dateformat.js';
2
+ import dateFormat from 'dateformat';
3
3
  import { $ } from 'execa';
4
4
  import fs from 'fs';
5
5
  import { glob } from 'glob';
@@ -54,7 +54,7 @@ function raiseVersion(version) {
54
54
  $$`npm version ${version} --git-tag-version false`,
55
55
  replaceInFile('CHANGELOG.md', (data) =>
56
56
  data.replace(
57
- /^##\s*WIP/m,
57
+ /^##\s*WIP.*$/m,
58
58
  `## ${versionFormat(version)} (${dateFormat(Date.now(), 'mmmm d, yyyy')})`,
59
59
  ),
60
60
  ),
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.24.3-dev.63b12446 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1
+ /*! UIkit 3.25.0 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */