uikit 3.16.27 → 3.17.1-dev.7c0766a6f
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 +25 -0
- package/build/less.js +5 -4
- package/build/util.js +7 -9
- package/dist/css/uikit-core-rtl.css +53 -18
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +53 -18
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +56 -17
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +56 -17
- 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 +24 -43
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +2 -3
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +2 -3
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +2 -2
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +7 -17
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +6 -13
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +2 -2
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +6 -13
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +19 -4
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +24 -43
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +1 -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 +455 -185
- 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 +483 -240
- package/dist/js/uikit.min.js +1 -9502
- package/package.json +1 -1
- package/src/js/api/boot.js +2 -2
- package/src/js/api/computed.js +1 -1
- package/src/js/api/observables.js +1 -4
- package/src/js/components/notification.js +1 -1
- package/src/js/components/slideshow.js +19 -2
- package/src/js/core/cover.js +30 -1
- package/src/js/core/drop.js +15 -9
- package/src/js/core/dropnav.js +16 -2
- package/src/js/core/grid.js +119 -64
- package/src/js/core/height-viewport.js +4 -1
- package/src/js/core/margin.js +23 -39
- package/src/js/core/navbar.js +219 -1
- package/src/js/core/scrollspy-nav.js +13 -4
- package/src/js/core/scrollspy.js +1 -1
- package/src/js/core/sticky.js +10 -11
- package/src/js/mixin/internal/animate-fade.js +1 -11
- package/src/js/mixin/internal/slideshow-animations.js +1 -1
- package/src/js/mixin/slider-reactive.js +1 -1
- package/src/js/mixin/togglable.js +0 -2
- package/src/js/util/animation.js +19 -13
- package/src/js/util/class.js +30 -26
- package/src/js/util/dom.js +3 -8
- package/src/js/util/filter.js +2 -6
- package/src/js/util/viewport.js +26 -4
- package/src/less/components/base.less +6 -3
- package/src/less/components/form.less +3 -0
- package/src/less/components/heading.less +18 -0
- package/src/less/components/navbar.less +6 -12
- package/src/less/components/pagination.less +13 -6
- package/src/less/components/position.less +1 -0
- package/src/less/components/section.less +6 -0
- package/src/less/theme/heading.less +4 -0
- package/src/less/theme/navbar.less +5 -0
- package/src/scss/components/base.scss +4 -2
- package/src/scss/components/form.scss +3 -0
- package/src/scss/components/heading.scss +13 -0
- package/src/scss/components/navbar.scss +5 -12
- package/src/scss/components/pagination.scss +13 -6
- package/src/scss/components/position.scss +1 -0
- package/src/scss/components/section.scss +4 -0
- package/src/scss/mixins-theme.scss +13 -1
- package/src/scss/mixins.scss +8 -1
- package/src/scss/theme/heading.scss +4 -0
- package/src/scss/variables-theme.scss +7 -0
- package/src/scss/variables.scss +7 -0
- package/tests/cover.html +2 -2
- package/tests/drop.html +13 -7
- package/tests/dropnav.html +22 -10
- package/tests/filter.html +5 -5
- package/tests/form.html +1 -1
- package/tests/grid-masonry.html +49 -73
- package/tests/grid-parallax.html +82 -40
- package/tests/grid.html +21 -3
- package/tests/heading.html +33 -4
- package/tests/height-viewport.html +3 -3
- package/tests/height.html +2 -2
- package/tests/icon.html +1 -1
- package/tests/image.html +6 -6
- package/tests/leader.html +3 -3
- package/tests/nav.html +1 -1
- package/tests/navbar.html +28 -10
- package/tests/notification.html +1 -1
- package/tests/offcanvas.html +2 -2
- package/tests/parallax.html +1 -1
- package/tests/scrollspy.html +3 -3
- package/tests/sortable.html +3 -3
- package/tests/sticky-navbar.html +233 -14
- package/tests/sticky.html +8 -8
- package/tests/svg.html +1 -1
- package/tests/tab.html +1 -1
- package/tests/toggle.html +2 -2
- package/tests/tooltip.html +2 -2
- package/tests/upload.html +16 -16
- package/tests/utility.html +2 -2
- package/tests/video.html +3 -3
package/dist/css/uikit.css
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.
|
|
1
|
+
/*! UIkit 3.17.1-dev.7c0766a6f | https://www.getuikit.com | (c) 2014 - 2023 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -219,7 +219,8 @@ h6,
|
|
|
219
219
|
.uk-heading-medium,
|
|
220
220
|
.uk-heading-large,
|
|
221
221
|
.uk-heading-xlarge,
|
|
222
|
-
.uk-heading-2xlarge
|
|
222
|
+
.uk-heading-2xlarge,
|
|
223
|
+
.uk-heading-3xlarge {
|
|
223
224
|
margin: 0 0 20px 0;
|
|
224
225
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
225
226
|
font-weight: normal;
|
|
@@ -243,7 +244,8 @@ h6,
|
|
|
243
244
|
* + .uk-heading-medium,
|
|
244
245
|
* + .uk-heading-large,
|
|
245
246
|
* + .uk-heading-xlarge,
|
|
246
|
-
* + .uk-heading-2xlarge
|
|
247
|
+
* + .uk-heading-2xlarge,
|
|
248
|
+
* + .uk-heading-3xlarge {
|
|
247
249
|
margin-top: 40px;
|
|
248
250
|
}
|
|
249
251
|
/*
|
|
@@ -517,6 +519,10 @@ a.uk-link-reset,
|
|
|
517
519
|
font-size: 6rem;
|
|
518
520
|
line-height: 1;
|
|
519
521
|
}
|
|
522
|
+
.uk-heading-3xlarge {
|
|
523
|
+
font-size: 8rem;
|
|
524
|
+
line-height: 1;
|
|
525
|
+
}
|
|
520
526
|
/* Tablet Landscape and bigger */
|
|
521
527
|
@media (min-width: 960px) {
|
|
522
528
|
.uk-heading-small {
|
|
@@ -534,6 +540,9 @@ a.uk-link-reset,
|
|
|
534
540
|
.uk-heading-2xlarge {
|
|
535
541
|
font-size: 8rem;
|
|
536
542
|
}
|
|
543
|
+
.uk-heading-3xlarge {
|
|
544
|
+
font-size: 11rem;
|
|
545
|
+
}
|
|
537
546
|
}
|
|
538
547
|
/* Laptop and bigger */
|
|
539
548
|
@media (min-width: 1200px) {
|
|
@@ -549,6 +558,9 @@ a.uk-link-reset,
|
|
|
549
558
|
.uk-heading-2xlarge {
|
|
550
559
|
font-size: 11rem;
|
|
551
560
|
}
|
|
561
|
+
.uk-heading-3xlarge {
|
|
562
|
+
font-size: 15rem;
|
|
563
|
+
}
|
|
552
564
|
}
|
|
553
565
|
/* Primary
|
|
554
566
|
Deprecated: Use `uk-heading-medium` instead
|
|
@@ -1397,11 +1409,14 @@ button.uk-icon:not(:disabled) {
|
|
|
1397
1409
|
}
|
|
1398
1410
|
/*
|
|
1399
1411
|
* Define consistent border, margin, and padding.
|
|
1412
|
+
* 1. Reset `min-width`
|
|
1400
1413
|
*/
|
|
1401
1414
|
.uk-fieldset {
|
|
1402
1415
|
border: none;
|
|
1403
1416
|
margin: 0;
|
|
1404
1417
|
padding: 0;
|
|
1418
|
+
/* 1 */
|
|
1419
|
+
min-width: 0;
|
|
1405
1420
|
}
|
|
1406
1421
|
/* Input, select and textarea
|
|
1407
1422
|
* Allowed: `text`, `password`, `datetime-local`, `date`, `month`,
|
|
@@ -2275,24 +2290,28 @@ select.uk-form-width-xsmall {
|
|
|
2275
2290
|
*/
|
|
2276
2291
|
.uk-section-default {
|
|
2277
2292
|
background: #fff;
|
|
2293
|
+
--uk-navbar-color: dark;
|
|
2278
2294
|
}
|
|
2279
2295
|
/*
|
|
2280
2296
|
* Muted
|
|
2281
2297
|
*/
|
|
2282
2298
|
.uk-section-muted {
|
|
2283
2299
|
background: #f8f8f8;
|
|
2300
|
+
--uk-navbar-color: dark;
|
|
2284
2301
|
}
|
|
2285
2302
|
/*
|
|
2286
2303
|
* Primary
|
|
2287
2304
|
*/
|
|
2288
2305
|
.uk-section-primary {
|
|
2289
2306
|
background: #1e87f0;
|
|
2307
|
+
--uk-navbar-color: light;
|
|
2290
2308
|
}
|
|
2291
2309
|
/*
|
|
2292
2310
|
* Secondary
|
|
2293
2311
|
*/
|
|
2294
2312
|
.uk-section-secondary {
|
|
2295
2313
|
background: #222;
|
|
2314
|
+
--uk-navbar-color: light;
|
|
2296
2315
|
}
|
|
2297
2316
|
/* Overlap modifier
|
|
2298
2317
|
========================================================================== */
|
|
@@ -5173,11 +5192,14 @@ ul.uk-nav-sub {
|
|
|
5173
5192
|
========================================================================== */
|
|
5174
5193
|
/*
|
|
5175
5194
|
* 1. Create position context to center navbar group
|
|
5195
|
+
* 2. Pass dropbar behind color to JS
|
|
5176
5196
|
*/
|
|
5177
5197
|
.uk-navbar {
|
|
5178
5198
|
display: flex;
|
|
5179
5199
|
/* 1 */
|
|
5180
5200
|
position: relative;
|
|
5201
|
+
/* 2 */
|
|
5202
|
+
--uk-navbar-dropbar-behind-color: dark;
|
|
5181
5203
|
}
|
|
5182
5204
|
/* Container
|
|
5183
5205
|
========================================================================== */
|
|
@@ -5524,13 +5546,9 @@ ul.uk-nav-sub {
|
|
|
5524
5546
|
/*
|
|
5525
5547
|
* Adopts `uk-dropnav-dropbar`
|
|
5526
5548
|
*/
|
|
5527
|
-
|
|
5528
|
-
|
|
5529
|
-
|
|
5530
|
-
.uk-navbar-dropbar-behind::before {
|
|
5531
|
-
content: "";
|
|
5532
|
-
display: block;
|
|
5533
|
-
height: 80px;
|
|
5549
|
+
.uk-navbar-container {
|
|
5550
|
+
transition: 0.1s ease-in-out;
|
|
5551
|
+
transition-property: background-color;
|
|
5534
5552
|
}
|
|
5535
5553
|
/* Tablet landscape and bigger */
|
|
5536
5554
|
@media (min-width: 960px) {
|
|
@@ -5728,16 +5746,19 @@ ul.uk-nav-sub {
|
|
|
5728
5746
|
========================================================================== */
|
|
5729
5747
|
/*
|
|
5730
5748
|
* 1. Allow items to wrap into the next line
|
|
5731
|
-
* 2.
|
|
5732
|
-
* 3.
|
|
5749
|
+
* 2. Center items vertically if they have a different height
|
|
5750
|
+
* 3. Gutter
|
|
5751
|
+
* 4. Reset list
|
|
5733
5752
|
*/
|
|
5734
5753
|
.uk-pagination {
|
|
5735
5754
|
display: flex;
|
|
5736
5755
|
/* 1 */
|
|
5737
5756
|
flex-wrap: wrap;
|
|
5738
5757
|
/* 2 */
|
|
5739
|
-
|
|
5758
|
+
align-items: center;
|
|
5740
5759
|
/* 3 */
|
|
5760
|
+
margin-left: 0;
|
|
5761
|
+
/* 4 */
|
|
5741
5762
|
padding: 0;
|
|
5742
5763
|
list-style: none;
|
|
5743
5764
|
}
|
|
@@ -5757,13 +5778,17 @@ ul.uk-nav-sub {
|
|
|
5757
5778
|
/* Items
|
|
5758
5779
|
========================================================================== */
|
|
5759
5780
|
/*
|
|
5760
|
-
* 1.
|
|
5761
|
-
* 2.
|
|
5781
|
+
* 1. Center content vertically, e.g. an icon
|
|
5782
|
+
* 2. Imitate white space gap when using flexbox
|
|
5783
|
+
* 3. Style
|
|
5762
5784
|
*/
|
|
5763
5785
|
.uk-pagination > * > * {
|
|
5764
5786
|
/* 1 */
|
|
5765
|
-
display:
|
|
5787
|
+
display: flex;
|
|
5788
|
+
align-items: center;
|
|
5766
5789
|
/* 2 */
|
|
5790
|
+
column-gap: 0.25em;
|
|
5791
|
+
/* 3 */
|
|
5767
5792
|
padding: 5px 10px;
|
|
5768
5793
|
color: #999;
|
|
5769
5794
|
transition: color 0.1s ease-in-out;
|
|
@@ -9211,6 +9236,9 @@ iframe[data-uk-cover] {
|
|
|
9211
9236
|
.uk-position-z-index-negative {
|
|
9212
9237
|
z-index: -1;
|
|
9213
9238
|
}
|
|
9239
|
+
.uk-position-z-index-high {
|
|
9240
|
+
z-index: 990;
|
|
9241
|
+
}
|
|
9214
9242
|
/* ========================================================================
|
|
9215
9243
|
Component: Transition
|
|
9216
9244
|
========================================================================== */
|
|
@@ -9613,6 +9641,7 @@ iframe[data-uk-cover] {
|
|
|
9613
9641
|
.uk-light .uk-heading-large,
|
|
9614
9642
|
.uk-light .uk-heading-xlarge,
|
|
9615
9643
|
.uk-light .uk-heading-2xlarge,
|
|
9644
|
+
.uk-light .uk-heading-3xlarge,
|
|
9616
9645
|
.uk-section-primary:not(.uk-preserve-color) h1,
|
|
9617
9646
|
.uk-section-primary:not(.uk-preserve-color) .uk-h1,
|
|
9618
9647
|
.uk-section-primary:not(.uk-preserve-color) h2,
|
|
@@ -9630,6 +9659,7 @@ iframe[data-uk-cover] {
|
|
|
9630
9659
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9631
9660
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9632
9661
|
.uk-section-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9662
|
+
.uk-section-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9633
9663
|
.uk-section-secondary:not(.uk-preserve-color) h1,
|
|
9634
9664
|
.uk-section-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9635
9665
|
.uk-section-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9647,6 +9677,7 @@ iframe[data-uk-cover] {
|
|
|
9647
9677
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9648
9678
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9649
9679
|
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9680
|
+
.uk-section-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9650
9681
|
.uk-tile-primary:not(.uk-preserve-color) h1,
|
|
9651
9682
|
.uk-tile-primary:not(.uk-preserve-color) .uk-h1,
|
|
9652
9683
|
.uk-tile-primary:not(.uk-preserve-color) h2,
|
|
@@ -9664,6 +9695,7 @@ iframe[data-uk-cover] {
|
|
|
9664
9695
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-large,
|
|
9665
9696
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9666
9697
|
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9698
|
+
.uk-tile-primary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9667
9699
|
.uk-tile-secondary:not(.uk-preserve-color) h1,
|
|
9668
9700
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-h1,
|
|
9669
9701
|
.uk-tile-secondary:not(.uk-preserve-color) h2,
|
|
@@ -9681,6 +9713,7 @@ iframe[data-uk-cover] {
|
|
|
9681
9713
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-large,
|
|
9682
9714
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-xlarge,
|
|
9683
9715
|
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-2xlarge,
|
|
9716
|
+
.uk-tile-secondary:not(.uk-preserve-color) .uk-heading-3xlarge,
|
|
9684
9717
|
.uk-card-primary.uk-card-body h1,
|
|
9685
9718
|
.uk-card-primary.uk-card-body .uk-h1,
|
|
9686
9719
|
.uk-card-primary.uk-card-body h2,
|
|
@@ -9698,6 +9731,7 @@ iframe[data-uk-cover] {
|
|
|
9698
9731
|
.uk-card-primary.uk-card-body .uk-heading-large,
|
|
9699
9732
|
.uk-card-primary.uk-card-body .uk-heading-xlarge,
|
|
9700
9733
|
.uk-card-primary.uk-card-body .uk-heading-2xlarge,
|
|
9734
|
+
.uk-card-primary.uk-card-body .uk-heading-3xlarge,
|
|
9701
9735
|
.uk-card-primary > :not([class*='uk-card-media']) h1,
|
|
9702
9736
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-h1,
|
|
9703
9737
|
.uk-card-primary > :not([class*='uk-card-media']) h2,
|
|
@@ -9715,6 +9749,7 @@ iframe[data-uk-cover] {
|
|
|
9715
9749
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9716
9750
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9717
9751
|
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9752
|
+
.uk-card-primary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9718
9753
|
.uk-card-secondary.uk-card-body h1,
|
|
9719
9754
|
.uk-card-secondary.uk-card-body .uk-h1,
|
|
9720
9755
|
.uk-card-secondary.uk-card-body h2,
|
|
@@ -9732,6 +9767,7 @@ iframe[data-uk-cover] {
|
|
|
9732
9767
|
.uk-card-secondary.uk-card-body .uk-heading-large,
|
|
9733
9768
|
.uk-card-secondary.uk-card-body .uk-heading-xlarge,
|
|
9734
9769
|
.uk-card-secondary.uk-card-body .uk-heading-2xlarge,
|
|
9770
|
+
.uk-card-secondary.uk-card-body .uk-heading-3xlarge,
|
|
9735
9771
|
.uk-card-secondary > :not([class*='uk-card-media']) h1,
|
|
9736
9772
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-h1,
|
|
9737
9773
|
.uk-card-secondary > :not([class*='uk-card-media']) h2,
|
|
@@ -9749,6 +9785,7 @@ iframe[data-uk-cover] {
|
|
|
9749
9785
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-large,
|
|
9750
9786
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-xlarge,
|
|
9751
9787
|
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-2xlarge,
|
|
9788
|
+
.uk-card-secondary > :not([class*='uk-card-media']) .uk-heading-3xlarge,
|
|
9752
9789
|
.uk-overlay-primary h1,
|
|
9753
9790
|
.uk-overlay-primary .uk-h1,
|
|
9754
9791
|
.uk-overlay-primary h2,
|
|
@@ -9766,6 +9803,7 @@ iframe[data-uk-cover] {
|
|
|
9766
9803
|
.uk-overlay-primary .uk-heading-large,
|
|
9767
9804
|
.uk-overlay-primary .uk-heading-xlarge,
|
|
9768
9805
|
.uk-overlay-primary .uk-heading-2xlarge,
|
|
9806
|
+
.uk-overlay-primary .uk-heading-3xlarge,
|
|
9769
9807
|
.uk-offcanvas-bar h1,
|
|
9770
9808
|
.uk-offcanvas-bar .uk-h1,
|
|
9771
9809
|
.uk-offcanvas-bar h2,
|
|
@@ -9782,7 +9820,8 @@ iframe[data-uk-cover] {
|
|
|
9782
9820
|
.uk-offcanvas-bar .uk-heading-medium,
|
|
9783
9821
|
.uk-offcanvas-bar .uk-heading-large,
|
|
9784
9822
|
.uk-offcanvas-bar .uk-heading-xlarge,
|
|
9785
|
-
.uk-offcanvas-bar .uk-heading-2xlarge
|
|
9823
|
+
.uk-offcanvas-bar .uk-heading-2xlarge,
|
|
9824
|
+
.uk-offcanvas-bar .uk-heading-3xlarge {
|
|
9786
9825
|
color: #fff;
|
|
9787
9826
|
}
|
|
9788
9827
|
.uk-light blockquote,
|