uikit 3.18.3 → 3.18.4-dev.01a468d2e

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 (58) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/build/scss.js +3 -0
  3. package/dist/css/uikit-core-rtl.css +169 -23
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +169 -23
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +169 -23
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +169 -23
  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 +15 -8
  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 +2 -2
  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 +3 -12
  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 +18 -20
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +1 -1
  44. package/src/js/components/internal/slider-transitioner.js +2 -2
  45. package/src/js/components/slider.js +15 -6
  46. package/src/js/components/tooltip.js +1 -1
  47. package/src/js/core/img.js +1 -16
  48. package/src/less/components/flex.less +110 -2
  49. package/src/less/components/utility.less +1 -2
  50. package/src/less/components/width.less +34 -8
  51. package/src/less/theme/text.less +1 -1
  52. package/src/scss/components/flex.scss +110 -2
  53. package/src/scss/components/width.scss +34 -8
  54. package/src/scss/mixins-theme.scss +1 -2
  55. package/src/scss/mixins.scss +1 -2
  56. package/src/scss/variables-theme.scss +1 -1
  57. package/tests/slider.html +12 -1
  58. package/tests/utility.html +36 -11
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.18.3 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
1
+ /*! UIkit 3.18.4-dev.01a468d2e | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -6845,6 +6845,7 @@ ul.uk-nav-sub {
6845
6845
  * flex items won't shrink below their minimum intrinsic content size.
6846
6846
  * Using `1px` instead of `0`, so items still wrap into the next line,
6847
6847
  * if they have zero width and padding and the predecessor is 100% wide.
6848
+ * 2. Reset flex if auto classes are combined with expand classes
6848
6849
  */
6849
6850
  .uk-child-width-expand > :not([class*="uk-width"]) {
6850
6851
  flex: 1;
@@ -6873,6 +6874,8 @@ ul.uk-nav-sub {
6873
6874
  }
6874
6875
  .uk-child-width-auto\@s > * {
6875
6876
  width: auto;
6877
+ /* 2 */
6878
+ flex: initial;
6876
6879
  }
6877
6880
  .uk-child-width-expand\@s > :not([class*="uk-width"]) {
6878
6881
  flex: 1;
@@ -6901,6 +6904,7 @@ ul.uk-nav-sub {
6901
6904
  }
6902
6905
  .uk-child-width-auto\@m > * {
6903
6906
  width: auto;
6907
+ flex: initial;
6904
6908
  }
6905
6909
  .uk-child-width-expand\@m > :not([class*="uk-width"]) {
6906
6910
  flex: 1;
@@ -6929,6 +6933,7 @@ ul.uk-nav-sub {
6929
6933
  }
6930
6934
  .uk-child-width-auto\@l > * {
6931
6935
  width: auto;
6936
+ flex: initial;
6932
6937
  }
6933
6938
  .uk-child-width-expand\@l > :not([class*="uk-width"]) {
6934
6939
  flex: 1;
@@ -6957,6 +6962,7 @@ ul.uk-nav-sub {
6957
6962
  }
6958
6963
  .uk-child-width-auto\@xl > * {
6959
6964
  width: auto;
6965
+ flex: initial;
6960
6966
  }
6961
6967
  .uk-child-width-expand\@xl > :not([class*="uk-width"]) {
6962
6968
  flex: 1;
@@ -7100,6 +7106,7 @@ ul.uk-nav-sub {
7100
7106
  /* Auto */
7101
7107
  .uk-width-auto\@s {
7102
7108
  width: auto;
7109
+ flex: initial;
7103
7110
  }
7104
7111
  /* Expand */
7105
7112
  .uk-width-expand\@s {
@@ -7170,6 +7177,7 @@ ul.uk-nav-sub {
7170
7177
  /* Auto */
7171
7178
  .uk-width-auto\@m {
7172
7179
  width: auto;
7180
+ flex: initial;
7173
7181
  }
7174
7182
  /* Expand */
7175
7183
  .uk-width-expand\@m {
@@ -7240,6 +7248,7 @@ ul.uk-nav-sub {
7240
7248
  /* Auto */
7241
7249
  .uk-width-auto\@l {
7242
7250
  width: auto;
7251
+ flex: initial;
7243
7252
  }
7244
7253
  /* Expand */
7245
7254
  .uk-width-expand\@l {
@@ -7310,6 +7319,7 @@ ul.uk-nav-sub {
7310
7319
  /* Auto */
7311
7320
  .uk-width-auto\@xl {
7312
7321
  width: auto;
7322
+ flex: initial;
7313
7323
  }
7314
7324
  /* Expand */
7315
7325
  .uk-width-expand\@xl {
@@ -8654,6 +8664,66 @@ iframe[data-uk-cover] {
8654
8664
  .uk-flex-bottom {
8655
8665
  align-items: flex-end;
8656
8666
  }
8667
+ /* Phone landscape and bigger */
8668
+ @media (min-width: 640px) {
8669
+ .uk-flex-stretch\@s {
8670
+ align-items: stretch;
8671
+ }
8672
+ .uk-flex-top\@s {
8673
+ align-items: flex-start;
8674
+ }
8675
+ .uk-flex-middle\@s {
8676
+ align-items: center;
8677
+ }
8678
+ .uk-flex-bottom\@s {
8679
+ align-items: flex-end;
8680
+ }
8681
+ }
8682
+ /* Tablet landscape and bigger */
8683
+ @media (min-width: 960px) {
8684
+ .uk-flex-stretch\@m {
8685
+ align-items: stretch;
8686
+ }
8687
+ .uk-flex-top\@m {
8688
+ align-items: flex-start;
8689
+ }
8690
+ .uk-flex-middle\@m {
8691
+ align-items: center;
8692
+ }
8693
+ .uk-flex-bottom\@m {
8694
+ align-items: flex-end;
8695
+ }
8696
+ }
8697
+ /* Desktop and bigger */
8698
+ @media (min-width: 1200px) {
8699
+ .uk-flex-stretch\@l {
8700
+ align-items: stretch;
8701
+ }
8702
+ .uk-flex-top\@l {
8703
+ align-items: flex-start;
8704
+ }
8705
+ .uk-flex-middle\@l {
8706
+ align-items: center;
8707
+ }
8708
+ .uk-flex-bottom\@l {
8709
+ align-items: flex-end;
8710
+ }
8711
+ }
8712
+ /* Large screen and bigger */
8713
+ @media (min-width: 1600px) {
8714
+ .uk-flex-stretch\@xl {
8715
+ align-items: stretch;
8716
+ }
8717
+ .uk-flex-top\@xl {
8718
+ align-items: flex-start;
8719
+ }
8720
+ .uk-flex-middle\@xl {
8721
+ align-items: center;
8722
+ }
8723
+ .uk-flex-bottom\@xl {
8724
+ align-items: flex-end;
8725
+ }
8726
+ }
8657
8727
  /* Direction
8658
8728
  ========================================================================== */
8659
8729
  .uk-flex-row {
@@ -8668,6 +8738,42 @@ iframe[data-uk-cover] {
8668
8738
  .uk-flex-column-reverse {
8669
8739
  flex-direction: column-reverse;
8670
8740
  }
8741
+ /* Phone landscape and bigger */
8742
+ @media (min-width: 640px) {
8743
+ .uk-flex-row\@s {
8744
+ flex-direction: row;
8745
+ }
8746
+ .uk-flex-column\@s {
8747
+ flex-direction: column;
8748
+ }
8749
+ }
8750
+ /* Tablet landscape and bigger */
8751
+ @media (min-width: 960px) {
8752
+ .uk-flex-row\@m {
8753
+ flex-direction: row;
8754
+ }
8755
+ .uk-flex-column\@m {
8756
+ flex-direction: column;
8757
+ }
8758
+ }
8759
+ /* Desktop and bigger */
8760
+ @media (min-width: 1200px) {
8761
+ .uk-flex-row\@l {
8762
+ flex-direction: row;
8763
+ }
8764
+ .uk-flex-column\@l {
8765
+ flex-direction: column;
8766
+ }
8767
+ }
8768
+ /* Large screen and bigger */
8769
+ @media (min-width: 1600px) {
8770
+ .uk-flex-row\@xl {
8771
+ flex-direction: row;
8772
+ }
8773
+ .uk-flex-column\@xl {
8774
+ flex-direction: column;
8775
+ }
8776
+ }
8671
8777
  /* Wrap
8672
8778
  ========================================================================== */
8673
8779
  .uk-flex-nowrap {
@@ -8754,6 +8860,9 @@ iframe[data-uk-cover] {
8754
8860
  * Initial: 0 1 auto
8755
8861
  * Content dimensions, but shrinks
8756
8862
  */
8863
+ .uk-flex-initial {
8864
+ flex: initial;
8865
+ }
8757
8866
  /*
8758
8867
  * No Flex: 0 0 auto
8759
8868
  * Content dimensions
@@ -8775,6 +8884,54 @@ iframe[data-uk-cover] {
8775
8884
  .uk-flex-1 {
8776
8885
  flex: 1;
8777
8886
  }
8887
+ /* Phone landscape and bigger */
8888
+ @media (min-width: 640px) {
8889
+ .uk-flex-initial\@s {
8890
+ flex: initial;
8891
+ }
8892
+ .uk-flex-none\@s {
8893
+ flex: none;
8894
+ }
8895
+ .uk-flex-1\@s {
8896
+ flex: 1;
8897
+ }
8898
+ }
8899
+ /* Tablet landscape and bigger */
8900
+ @media (min-width: 960px) {
8901
+ .uk-flex-initial\@m {
8902
+ flex: initial;
8903
+ }
8904
+ .uk-flex-none\@m {
8905
+ flex: none;
8906
+ }
8907
+ .uk-flex-1\@m {
8908
+ flex: 1;
8909
+ }
8910
+ }
8911
+ /* Desktop and bigger */
8912
+ @media (min-width: 1200px) {
8913
+ .uk-flex-initial\@l {
8914
+ flex: initial;
8915
+ }
8916
+ .uk-flex-none\@l {
8917
+ flex: none;
8918
+ }
8919
+ .uk-flex-1\@l {
8920
+ flex: 1;
8921
+ }
8922
+ }
8923
+ /* Large screen and bigger */
8924
+ @media (min-width: 1600px) {
8925
+ .uk-flex-initial\@xl {
8926
+ flex: initial;
8927
+ }
8928
+ .uk-flex-none\@xl {
8929
+ flex: none;
8930
+ }
8931
+ .uk-flex-1\@xl {
8932
+ flex: 1;
8933
+ }
8934
+ }
8778
8935
  /* ========================================================================
8779
8936
  Component: Margin
8780
8937
  ========================================================================== */
@@ -12454,28 +12611,17 @@ iframe[data-uk-cover] {
12454
12611
  .uk-offcanvas-bar .uk-logo:hover {
12455
12612
  color: #fff;
12456
12613
  }
12457
- .uk-light .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12458
- .uk-light .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12459
- .uk-section-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12460
- .uk-section-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12461
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12462
- .uk-section-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12463
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12464
- .uk-tile-primary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12465
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12466
- .uk-tile-secondary:not(.uk-preserve-color) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12467
- .uk-card-primary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12468
- .uk-card-primary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12469
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12470
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12471
- .uk-card-secondary.uk-card-body .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12472
- .uk-card-secondary.uk-card-body .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12473
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12474
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12475
- .uk-overlay-primary .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12476
- .uk-overlay-primary .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type),
12477
- .uk-offcanvas-bar .uk-logo > picture:not(:only-of-type) > :not(.uk-logo-inverse),
12478
- .uk-offcanvas-bar .uk-logo > :not(picture):not(.uk-logo-inverse):not(:only-of-type) {
12614
+ .uk-light .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12615
+ .uk-section-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12616
+ .uk-section-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12617
+ .uk-tile-primary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12618
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12619
+ .uk-card-primary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12620
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12621
+ .uk-card-secondary.uk-card-body .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12622
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12623
+ .uk-overlay-primary .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse),
12624
+ .uk-offcanvas-bar .uk-logo:has(.uk-logo-inverse) > :not(picture:has(.uk-logo-inverse)):not(.uk-logo-inverse) {
12479
12625
  display: none;
12480
12626
  }
12481
12627
  .uk-light .uk-logo-inverse,