uikit 3.21.4-dev.a85e33edd → 3.21.4-dev.c9a1b05a9
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 +20 -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 +11 -14
- 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 +40 -44
- 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/scrollspy-nav.js +9 -12
- 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,9 +2,22 @@
|
|
|
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
|
+
|
|
5
17
|
### Fixed
|
|
6
18
|
|
|
7
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
|
|
8
21
|
|
|
9
22
|
## 3.21.3 (May 22, 2024)
|
|
10
23
|
|
|
@@ -342,14 +355,14 @@
|
|
|
342
355
|
- Add modes `pack` (default) and `next` to Grid component's `masonry` option
|
|
343
356
|
- Add `parallax-start`, `parallax-end`, `parallax-justify` option to Grid component
|
|
344
357
|
- Add `close-on-scroll` option to Drop and Dropdown component
|
|
345
|
-
- Add transparent Navbar gets its color modifier from underlying section
|
|
358
|
+
- Add transparent Navbar gets its color modifier from underlying section
|
|
346
359
|
- Add support for `<td>` and `<tr>` elements to `fragment()` function
|
|
347
360
|
- Add 3XL size modifier to Heading component
|
|
348
361
|
- Add support for a CSS Selector in `offsetTop` option in Height Viewport component
|
|
349
362
|
|
|
350
363
|
### Change
|
|
351
364
|
|
|
352
|
-
- Scroll component scrolls beneath elements covering its target
|
|
365
|
+
- Scroll component scrolls beneath elements covering its target
|
|
353
366
|
- The `closest()` function no longer accepts an array of elements
|
|
354
367
|
- Reset fieldset min-width
|
|
355
368
|
|
|
@@ -358,7 +371,7 @@
|
|
|
358
371
|
### Fixed
|
|
359
372
|
|
|
360
373
|
- Fix Height Viewport component not observing viewport changes with `expand: true`
|
|
361
|
-
- 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
|
|
362
375
|
|
|
363
376
|
## 3.16.26 (August 28, 2023)
|
|
364
377
|
|
|
@@ -397,7 +410,7 @@
|
|
|
397
410
|
|
|
398
411
|
### Fixed
|
|
399
412
|
|
|
400
|
-
- Fix existing notification container has to be visible before appending notification
|
|
413
|
+
- Fix existing notification container has to be visible before appending notification
|
|
401
414
|
|
|
402
415
|
## 3.16.21 (June 13, 2023)
|
|
403
416
|
|
|
@@ -473,7 +486,7 @@
|
|
|
473
486
|
- Fix using `rgb` and `rgba` values in color stops in Parallax component
|
|
474
487
|
- Fix setting `will-change` css property in Parallax component for camelCased props
|
|
475
488
|
- Fix Slider removes `tabindex` from focusable elements in slides
|
|
476
|
-
- 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
|
|
477
490
|
|
|
478
491
|
## 3.16.13 (March 28, 2023)
|
|
479
492
|
|
|
@@ -702,7 +715,7 @@
|
|
|
702
715
|
|
|
703
716
|
### Changed
|
|
704
717
|
|
|
705
|
-
- Add `will-change` css property to Parallax elements
|
|
718
|
+
- Add `will-change` css property to Parallax elements
|
|
706
719
|
|
|
707
720
|
### Fixed
|
|
708
721
|
|
|
@@ -724,7 +737,7 @@
|
|
|
724
737
|
- Fix Scroll and Scrollspy Nav components handle same site links only
|
|
725
738
|
- Fix Drop positioning within not scrollable viewport
|
|
726
739
|
- Fix overscroll behavior in Dropbar
|
|
727
|
-
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
740
|
+
- Fix conversion of viewport height units with `toPx()` on mobile devices
|
|
728
741
|
|
|
729
742
|
## 3.15.14 (November 21, 2022)
|
|
730
743
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.21.4-dev.
|
|
1
|
+
/*! UIkit 3.21.4-dev.c9a1b05a9 | 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
|
========================================================================== */
|