uikit 3.21.3-dev.d61f1a0db → 3.21.4-dev.6a3f9bf26
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.
- package/CHANGELOG.md +26 -7
- package/dist/css/uikit-core-rtl.css +7 -7
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +7 -7
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +7 -7
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +7 -7
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +1 -1
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +17 -13
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +17 -13
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +1 -1
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +1 -1
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +20 -15
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +1 -1
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +17 -13
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +1 -1
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +2 -2
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +16 -25
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +1 -1
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +45 -55
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/internal/slider-transitioner.js +10 -16
- package/src/js/core/drop.js +7 -13
- package/src/js/core/dropnav.js +1 -1
- package/src/js/core/scrollspy-nav.js +8 -11
- package/src/js/mixin/internal/slideshow-transitioner.js +17 -12
- package/src/js/mixin/position.js +1 -1
- package/src/js/mixin/slider.js +4 -5
- package/src/less/components/search.less +4 -4
- package/src/scss/variables-theme.scss +4 -4
- package/src/scss/variables.scss +4 -4
- package/tests/scrollspy.html +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## WIP
|
|
4
4
|
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Add `target` option to Scrollspy Nav component
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- Scrollspy Nav component defaults to a 10vh active top offset
|
|
12
|
+
|
|
13
|
+
### Removed
|
|
14
|
+
|
|
15
|
+
- Remove `overflow` option from Scrollspy Nav component
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- Fix Drop component does not immediately show if current active Drop is delaying
|
|
20
|
+
- Fix Scrollspy Nav falls back to document if target is not found
|
|
21
|
+
|
|
22
|
+
## 3.21.3 (May 22, 2024)
|
|
23
|
+
|
|
5
24
|
### Fixed
|
|
6
25
|
|
|
7
26
|
- Fix regression in Slideshow component
|
|
@@ -336,14 +355,14 @@
|
|
|
336
355
|
- Add modes `pack` (default) and `next` to Grid component's `masonry` option
|
|
337
356
|
- Add `parallax-start`, `parallax-end`, `parallax-justify` option to Grid component
|
|
338
357
|
- Add `close-on-scroll` option to Drop and Dropdown component
|
|
339
|
-
- Add transparent Navbar gets its color modifier from underlying section
|
|
358
|
+
- Add transparent Navbar gets its color modifier from underlying section
|
|
340
359
|
- Add support for `<td>` and `<tr>` elements to `fragment()` function
|
|
341
360
|
- Add 3XL size modifier to Heading component
|
|
342
361
|
- Add support for a CSS Selector in `offsetTop` option in Height Viewport component
|
|
343
362
|
|
|
344
363
|
### Change
|
|
345
364
|
|
|
346
|
-
- Scroll component scrolls beneath elements covering its target
|
|
365
|
+
- Scroll component scrolls beneath elements covering its target
|
|
347
366
|
- The `closest()` function no longer accepts an array of elements
|
|
348
367
|
- Reset fieldset min-width
|
|
349
368
|
|
|
@@ -352,7 +371,7 @@
|
|
|
352
371
|
### Fixed
|
|
353
372
|
|
|
354
373
|
- Fix Height Viewport component not observing viewport changes with `expand: true`
|
|
355
|
-
- Fix passing a `vh` unit to option `scale` relates to element's height in Parallax component
|
|
374
|
+
- Fix passing a `vh` unit to option `scale` relates to element's height in Parallax component
|
|
356
375
|
|
|
357
376
|
## 3.16.26 (August 28, 2023)
|
|
358
377
|
|
|
@@ -391,7 +410,7 @@
|
|
|
391
410
|
|
|
392
411
|
### Fixed
|
|
393
412
|
|
|
394
|
-
- Fix existing notification container has to be visible before appending notification
|
|
413
|
+
- Fix existing notification container has to be visible before appending notification
|
|
395
414
|
|
|
396
415
|
## 3.16.21 (June 13, 2023)
|
|
397
416
|
|
|
@@ -467,7 +486,7 @@
|
|
|
467
486
|
- Fix using `rgb` and `rgba` values in color stops in Parallax component
|
|
468
487
|
- Fix setting `will-change` css property in Parallax component for camelCased props
|
|
469
488
|
- Fix Slider removes `tabindex` from focusable elements in slides
|
|
470
|
-
- Fix class `uk-svg` gets added to `<svg>` element only in Svg component
|
|
489
|
+
- Fix class `uk-svg` gets added to `<svg>` element only in Svg component
|
|
471
490
|
|
|
472
491
|
## 3.16.13 (March 28, 2023)
|
|
473
492
|
|
|
@@ -696,7 +715,7 @@
|
|
|
696
715
|
|
|
697
716
|
### Changed
|
|
698
717
|
|
|
699
|
-
- Add `will-change` css property to Parallax elements
|
|
718
|
+
- Add `will-change` css property to Parallax elements
|
|
700
719
|
|
|
701
720
|
### Fixed
|
|
702
721
|
|
|
@@ -718,7 +737,7 @@
|
|
|
718
737
|
- Fix Scroll and Scrollspy Nav components handle same site links only
|
|
719
738
|
- Fix Drop positioning within not scrollable viewport
|
|
720
739
|
- Fix overscroll behavior in Dropbar
|
|
721
|
-
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
740
|
+
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
722
741
|
|
|
723
742
|
## 3.15.14 (November 21, 2022)
|
|
724
743
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.21.
|
|
1
|
+
/*! UIkit 3.21.4-dev.6a3f9bf26 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -3200,13 +3200,13 @@ select.uk-form-width-xsmall {
|
|
|
3200
3200
|
* Icon
|
|
3201
3201
|
*/
|
|
3202
3202
|
.uk-search-medium .uk-search-icon {
|
|
3203
|
-
width:
|
|
3203
|
+
width: 24px;
|
|
3204
3204
|
}
|
|
3205
3205
|
.uk-search-medium:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
|
|
3206
|
-
padding-right:
|
|
3206
|
+
padding-right: 34px;
|
|
3207
3207
|
}
|
|
3208
3208
|
.uk-search-medium:has(.uk-search-icon-flip) .uk-search-input {
|
|
3209
|
-
padding-left:
|
|
3209
|
+
padding-left: 34px;
|
|
3210
3210
|
}
|
|
3211
3211
|
/* Large modifier
|
|
3212
3212
|
========================================================================== */
|
|
@@ -3226,13 +3226,13 @@ select.uk-form-width-xsmall {
|
|
|
3226
3226
|
* Icon
|
|
3227
3227
|
*/
|
|
3228
3228
|
.uk-search-large .uk-search-icon {
|
|
3229
|
-
width:
|
|
3229
|
+
width: 40px;
|
|
3230
3230
|
}
|
|
3231
3231
|
.uk-search-large:has(.uk-search-icon:not(.uk-search-icon-flip)) .uk-search-input {
|
|
3232
|
-
padding-right:
|
|
3232
|
+
padding-right: 60px;
|
|
3233
3233
|
}
|
|
3234
3234
|
.uk-search-large:has(.uk-search-icon-flip) .uk-search-input {
|
|
3235
|
-
padding-left:
|
|
3235
|
+
padding-left: 60px;
|
|
3236
3236
|
}
|
|
3237
3237
|
/* Toggle
|
|
3238
3238
|
========================================================================== */
|