uikit 3.18.4-dev.b116fc18d → 3.18.4-dev.cc724a120
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 +4 -2
- package/dist/css/uikit-core-rtl.css +98 -1
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +98 -1
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +98 -1
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +98 -1
- 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 +1 -1
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +1 -1
- 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 +6 -7
- 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 +1 -1
- 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 +2 -2
- 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 +8 -9
- package/dist/js/uikit.min.js +1 -1
- package/package.json +1 -1
- package/src/js/components/slider.js +5 -7
- package/src/js/components/tooltip.js +1 -1
- package/src/less/components/flex.less +70 -1
- package/src/less/components/width.less +34 -8
- package/src/scss/components/flex.scss +70 -1
- package/src/scss/components/width.scss +34 -8
- package/tests/slider.html +10 -5
- package/tests/slideshow.html +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -4,12 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
### Added
|
|
6
6
|
|
|
7
|
-
- Add breakpoint classes for flex
|
|
8
|
-
- Add `
|
|
7
|
+
- Add breakpoint classes for flex direction, dimension and alignment
|
|
8
|
+
- Add `active` option to Slider component
|
|
9
9
|
|
|
10
10
|
### Fixed
|
|
11
11
|
|
|
12
|
+
- Fix combination of width auto and expand breakpoint classes
|
|
12
13
|
- Fix logo inverse selector to work with different types of images
|
|
14
|
+
- Fix Tooltips not showing in iOS
|
|
13
15
|
- Fix parallax scrolling for Slideshow/Slider component with finite mode
|
|
14
16
|
- Fix Sass sources by renaming spin() (LESS) to adjust-hue() (Sass)
|
|
15
17
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! UIkit 3.18.4-dev.
|
|
1
|
+
/*! UIkit 3.18.4-dev.cc724a120 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
|
|
2
2
|
/* ========================================================================
|
|
3
3
|
Component: Base
|
|
4
4
|
========================================================================== */
|
|
@@ -6437,6 +6437,7 @@ ul.uk-nav-sub {
|
|
|
6437
6437
|
* flex items won't shrink below their minimum intrinsic content size.
|
|
6438
6438
|
* Using `1px` instead of `0`, so items still wrap into the next line,
|
|
6439
6439
|
* if they have zero width and padding and the predecessor is 100% wide.
|
|
6440
|
+
* 2. Reset flex if auto classes are combined with expand classes
|
|
6440
6441
|
*/
|
|
6441
6442
|
.uk-child-width-expand > :not([class*="uk-width"]) {
|
|
6442
6443
|
flex: 1;
|
|
@@ -6465,6 +6466,8 @@ ul.uk-nav-sub {
|
|
|
6465
6466
|
}
|
|
6466
6467
|
.uk-child-width-auto\@s > * {
|
|
6467
6468
|
width: auto;
|
|
6469
|
+
/* 2 */
|
|
6470
|
+
flex: initial;
|
|
6468
6471
|
}
|
|
6469
6472
|
.uk-child-width-expand\@s > :not([class*="uk-width"]) {
|
|
6470
6473
|
flex: 1;
|
|
@@ -6493,6 +6496,7 @@ ul.uk-nav-sub {
|
|
|
6493
6496
|
}
|
|
6494
6497
|
.uk-child-width-auto\@m > * {
|
|
6495
6498
|
width: auto;
|
|
6499
|
+
flex: initial;
|
|
6496
6500
|
}
|
|
6497
6501
|
.uk-child-width-expand\@m > :not([class*="uk-width"]) {
|
|
6498
6502
|
flex: 1;
|
|
@@ -6521,6 +6525,7 @@ ul.uk-nav-sub {
|
|
|
6521
6525
|
}
|
|
6522
6526
|
.uk-child-width-auto\@l > * {
|
|
6523
6527
|
width: auto;
|
|
6528
|
+
flex: initial;
|
|
6524
6529
|
}
|
|
6525
6530
|
.uk-child-width-expand\@l > :not([class*="uk-width"]) {
|
|
6526
6531
|
flex: 1;
|
|
@@ -6549,6 +6554,7 @@ ul.uk-nav-sub {
|
|
|
6549
6554
|
}
|
|
6550
6555
|
.uk-child-width-auto\@xl > * {
|
|
6551
6556
|
width: auto;
|
|
6557
|
+
flex: initial;
|
|
6552
6558
|
}
|
|
6553
6559
|
.uk-child-width-expand\@xl > :not([class*="uk-width"]) {
|
|
6554
6560
|
flex: 1;
|
|
@@ -6692,6 +6698,7 @@ ul.uk-nav-sub {
|
|
|
6692
6698
|
/* Auto */
|
|
6693
6699
|
.uk-width-auto\@s {
|
|
6694
6700
|
width: auto;
|
|
6701
|
+
flex: initial;
|
|
6695
6702
|
}
|
|
6696
6703
|
/* Expand */
|
|
6697
6704
|
.uk-width-expand\@s {
|
|
@@ -6762,6 +6769,7 @@ ul.uk-nav-sub {
|
|
|
6762
6769
|
/* Auto */
|
|
6763
6770
|
.uk-width-auto\@m {
|
|
6764
6771
|
width: auto;
|
|
6772
|
+
flex: initial;
|
|
6765
6773
|
}
|
|
6766
6774
|
/* Expand */
|
|
6767
6775
|
.uk-width-expand\@m {
|
|
@@ -6832,6 +6840,7 @@ ul.uk-nav-sub {
|
|
|
6832
6840
|
/* Auto */
|
|
6833
6841
|
.uk-width-auto\@l {
|
|
6834
6842
|
width: auto;
|
|
6843
|
+
flex: initial;
|
|
6835
6844
|
}
|
|
6836
6845
|
/* Expand */
|
|
6837
6846
|
.uk-width-expand\@l {
|
|
@@ -6902,6 +6911,7 @@ ul.uk-nav-sub {
|
|
|
6902
6911
|
/* Auto */
|
|
6903
6912
|
.uk-width-auto\@xl {
|
|
6904
6913
|
width: auto;
|
|
6914
|
+
flex: initial;
|
|
6905
6915
|
}
|
|
6906
6916
|
/* Expand */
|
|
6907
6917
|
.uk-width-expand\@xl {
|
|
@@ -8311,6 +8321,42 @@ iframe[data-uk-cover] {
|
|
|
8311
8321
|
.uk-flex-column-reverse {
|
|
8312
8322
|
flex-direction: column-reverse;
|
|
8313
8323
|
}
|
|
8324
|
+
/* Phone landscape and bigger */
|
|
8325
|
+
@media (min-width: 640px) {
|
|
8326
|
+
.uk-flex-row\@s {
|
|
8327
|
+
flex-direction: row;
|
|
8328
|
+
}
|
|
8329
|
+
.uk-flex-column\@s {
|
|
8330
|
+
flex-direction: column;
|
|
8331
|
+
}
|
|
8332
|
+
}
|
|
8333
|
+
/* Tablet landscape and bigger */
|
|
8334
|
+
@media (min-width: 960px) {
|
|
8335
|
+
.uk-flex-row\@m {
|
|
8336
|
+
flex-direction: row;
|
|
8337
|
+
}
|
|
8338
|
+
.uk-flex-column\@m {
|
|
8339
|
+
flex-direction: column;
|
|
8340
|
+
}
|
|
8341
|
+
}
|
|
8342
|
+
/* Desktop and bigger */
|
|
8343
|
+
@media (min-width: 1200px) {
|
|
8344
|
+
.uk-flex-row\@l {
|
|
8345
|
+
flex-direction: row;
|
|
8346
|
+
}
|
|
8347
|
+
.uk-flex-column\@l {
|
|
8348
|
+
flex-direction: column;
|
|
8349
|
+
}
|
|
8350
|
+
}
|
|
8351
|
+
/* Large screen and bigger */
|
|
8352
|
+
@media (min-width: 1600px) {
|
|
8353
|
+
.uk-flex-row\@xl {
|
|
8354
|
+
flex-direction: row;
|
|
8355
|
+
}
|
|
8356
|
+
.uk-flex-column\@xl {
|
|
8357
|
+
flex-direction: column;
|
|
8358
|
+
}
|
|
8359
|
+
}
|
|
8314
8360
|
/* Wrap
|
|
8315
8361
|
========================================================================== */
|
|
8316
8362
|
.uk-flex-nowrap {
|
|
@@ -8397,6 +8443,9 @@ iframe[data-uk-cover] {
|
|
|
8397
8443
|
* Initial: 0 1 auto
|
|
8398
8444
|
* Content dimensions, but shrinks
|
|
8399
8445
|
*/
|
|
8446
|
+
.uk-flex-initial {
|
|
8447
|
+
flex: initial;
|
|
8448
|
+
}
|
|
8400
8449
|
/*
|
|
8401
8450
|
* No Flex: 0 0 auto
|
|
8402
8451
|
* Content dimensions
|
|
@@ -8418,6 +8467,54 @@ iframe[data-uk-cover] {
|
|
|
8418
8467
|
.uk-flex-1 {
|
|
8419
8468
|
flex: 1;
|
|
8420
8469
|
}
|
|
8470
|
+
/* Phone landscape and bigger */
|
|
8471
|
+
@media (min-width: 640px) {
|
|
8472
|
+
.uk-flex-initial\@s {
|
|
8473
|
+
flex: initial;
|
|
8474
|
+
}
|
|
8475
|
+
.uk-flex-none\@s {
|
|
8476
|
+
flex: none;
|
|
8477
|
+
}
|
|
8478
|
+
.uk-flex-1\@s {
|
|
8479
|
+
flex: 1;
|
|
8480
|
+
}
|
|
8481
|
+
}
|
|
8482
|
+
/* Tablet landscape and bigger */
|
|
8483
|
+
@media (min-width: 960px) {
|
|
8484
|
+
.uk-flex-initial\@m {
|
|
8485
|
+
flex: initial;
|
|
8486
|
+
}
|
|
8487
|
+
.uk-flex-none\@m {
|
|
8488
|
+
flex: none;
|
|
8489
|
+
}
|
|
8490
|
+
.uk-flex-1\@m {
|
|
8491
|
+
flex: 1;
|
|
8492
|
+
}
|
|
8493
|
+
}
|
|
8494
|
+
/* Desktop and bigger */
|
|
8495
|
+
@media (min-width: 1200px) {
|
|
8496
|
+
.uk-flex-initial\@l {
|
|
8497
|
+
flex: initial;
|
|
8498
|
+
}
|
|
8499
|
+
.uk-flex-none\@l {
|
|
8500
|
+
flex: none;
|
|
8501
|
+
}
|
|
8502
|
+
.uk-flex-1\@l {
|
|
8503
|
+
flex: 1;
|
|
8504
|
+
}
|
|
8505
|
+
}
|
|
8506
|
+
/* Large screen and bigger */
|
|
8507
|
+
@media (min-width: 1600px) {
|
|
8508
|
+
.uk-flex-initial\@xl {
|
|
8509
|
+
flex: initial;
|
|
8510
|
+
}
|
|
8511
|
+
.uk-flex-none\@xl {
|
|
8512
|
+
flex: none;
|
|
8513
|
+
}
|
|
8514
|
+
.uk-flex-1\@xl {
|
|
8515
|
+
flex: 1;
|
|
8516
|
+
}
|
|
8517
|
+
}
|
|
8421
8518
|
/* ========================================================================
|
|
8422
8519
|
Component: Margin
|
|
8423
8520
|
========================================================================== */
|