uikit 3.22.0 → 3.22.2

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 (48) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/css/uikit-core-rtl.css +66 -92
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +66 -92
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +66 -92
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +66 -92
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +1 -1
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +2 -2
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +10 -10
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +11 -11
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +2 -2
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +10 -10
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +10 -10
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +13 -13
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +10 -10
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +17 -17
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +1 -1
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +5 -5
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +3 -3
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +50 -50
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +1 -1
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +65 -65
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/less/components/accordion.less +4 -3
  44. package/src/less/components/list.less +26 -49
  45. package/src/scss/components/accordion.scss +3 -2
  46. package/src/scss/components/list.scss +22 -45
  47. package/src/scss/mixins-theme.scss +4 -4
  48. package/src/scss/mixins.scss +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 3.22.2 (January 16, 2025)
4
+
5
+ ### Fixed
6
+
7
+ - Fix missing list markers in Chrome in List component
8
+
9
+ ## 3.22.1 (January 16, 2025)
10
+
11
+ ### Changed
12
+
13
+ - Apply accordion item hook also to the first item
14
+
3
15
  ## 3.22.0 (January 9, 2025)
4
16
 
5
17
  ### Added
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.22.0 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1
+ /*! UIkit 3.22.2 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -726,83 +726,57 @@ a.uk-link-reset,
726
726
  margin-top: 10px;
727
727
  }
728
728
  /* Marker modifiers
729
- * Moving `::marker` inside `::before` to style it differently
730
- * To style the `::marker` is currently only supported in Firefox and Safari
731
- ========================================================================== */
732
- .uk-list-disc > *,
733
- .uk-list-circle > *,
734
- .uk-list-square > *,
735
- .uk-list-decimal > *,
736
- .uk-list-hyphen > * {
729
+ ========================================================================== */
730
+ .uk-list-disc,
731
+ .uk-list-circle,
732
+ .uk-list-square,
733
+ .uk-list-decimal,
734
+ .uk-list-hyphen {
737
735
  padding-right: 30px;
738
736
  }
739
- /*
740
- * Type modifiers
741
- */
742
- .uk-list-decimal {
743
- counter-reset: decimal;
744
- }
745
- .uk-list-decimal > * {
746
- counter-increment: decimal;
747
- }
748
- .uk-list-disc > ::before,
749
- .uk-list-circle > ::before,
750
- .uk-list-square > ::before,
751
- .uk-list-decimal > ::before,
752
- .uk-list-hyphen > ::before {
753
- content: "";
754
- position: relative;
755
- right: -30px;
756
- width: 30px;
757
- height: 1.5em;
758
- margin-bottom: -1.5em;
759
- display: list-item;
760
- list-style-position: inside;
761
- text-align: left;
762
- }
763
- .uk-list-disc > ::before {
737
+ .uk-list-disc {
764
738
  list-style-type: disc;
765
739
  }
766
- .uk-list-circle > ::before {
740
+ .uk-list-circle {
767
741
  list-style-type: circle;
768
742
  }
769
- .uk-list-square > ::before {
743
+ .uk-list-square {
770
744
  list-style-type: square;
771
745
  }
772
- .uk-list-decimal > ::before {
773
- content: counter(decimal, decimal) '\200A.\00A0';
746
+ .uk-list-decimal {
747
+ list-style-type: decimal;
774
748
  }
775
- .uk-list-hyphen > ::before {
776
- content: '–\00A0\00A0';
749
+ .uk-list-hyphen {
750
+ list-style-type: '';
777
751
  }
778
752
  /*
779
753
  * Color modifiers
780
754
  */
781
- .uk-list-muted > ::before {
755
+ .uk-list-muted > ::marker {
782
756
  color: #999 !important;
783
757
  }
784
- .uk-list-emphasis > ::before {
758
+ .uk-list-emphasis > ::marker {
785
759
  color: #333 !important;
786
760
  }
787
- .uk-list-primary > ::before {
761
+ .uk-list-primary > ::marker {
788
762
  color: #1e87f0 !important;
789
763
  }
790
- .uk-list-secondary > ::before {
764
+ .uk-list-secondary > ::marker {
791
765
  color: #222 !important;
792
766
  }
793
767
  /* Image bullet modifier
794
768
  ========================================================================== */
795
769
  .uk-list-bullet > * {
770
+ position: relative;
796
771
  padding-right: 30px;
797
772
  }
798
773
  .uk-list-bullet > ::before {
799
774
  content: "";
800
- display: list-item;
801
- position: relative;
802
- right: -30px;
775
+ position: absolute;
776
+ top: 0;
777
+ right: 0;
803
778
  width: 30px;
804
779
  height: 1.5em;
805
- margin-bottom: -1.5em;
806
780
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%226%22%20height%3D%226%22%20viewBox%3D%220%200%206%206%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%20%20%20%20%3Ccircle%20fill%3D%22%23666%22%20cx%3D%223%22%20cy%3D%223%22%20r%3D%223%22%20%2F%3E%0A%3C%2Fsvg%3E");
807
781
  background-repeat: no-repeat;
808
782
  background-position: 50% 50%;
@@ -10107,56 +10081,56 @@ iframe[data-uk-cover] {
10107
10081
  .uk-offcanvas-bar .uk-divider-vertical {
10108
10082
  border-right-color: rgba(255, 255, 255, 0.2);
10109
10083
  }
10110
- .uk-light .uk-list-muted > ::before,
10111
- .uk-section-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
10112
- .uk-section-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
10113
- .uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::before,
10114
- .uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::before,
10115
- .uk-card-primary.uk-card-body .uk-list-muted > ::before,
10116
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
10117
- .uk-card-secondary.uk-card-body .uk-list-muted > ::before,
10118
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-muted > ::before,
10119
- .uk-overlay-primary .uk-list-muted > ::before,
10120
- .uk-offcanvas-bar .uk-list-muted > ::before {
10084
+ .uk-light .uk-list-muted > ::marker,
10085
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10086
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10087
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10088
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10089
+ .uk-card-primary.uk-card-body .uk-list-muted > ::marker,
10090
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-muted > ::marker,
10091
+ .uk-card-secondary.uk-card-body .uk-list-muted > ::marker,
10092
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-muted > ::marker,
10093
+ .uk-overlay-primary .uk-list-muted > ::marker,
10094
+ .uk-offcanvas-bar .uk-list-muted > ::marker {
10121
10095
  color: rgba(255, 255, 255, 0.5) !important;
10122
10096
  }
10123
- .uk-light .uk-list-emphasis > ::before,
10124
- .uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
10125
- .uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
10126
- .uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
10127
- .uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::before,
10128
- .uk-card-primary.uk-card-body .uk-list-emphasis > ::before,
10129
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
10130
- .uk-card-secondary.uk-card-body .uk-list-emphasis > ::before,
10131
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::before,
10132
- .uk-overlay-primary .uk-list-emphasis > ::before,
10133
- .uk-offcanvas-bar .uk-list-emphasis > ::before {
10097
+ .uk-light .uk-list-emphasis > ::marker,
10098
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10099
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10100
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10101
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10102
+ .uk-card-primary.uk-card-body .uk-list-emphasis > ::marker,
10103
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::marker,
10104
+ .uk-card-secondary.uk-card-body .uk-list-emphasis > ::marker,
10105
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::marker,
10106
+ .uk-overlay-primary .uk-list-emphasis > ::marker,
10107
+ .uk-offcanvas-bar .uk-list-emphasis > ::marker {
10134
10108
  color: #fff !important;
10135
10109
  }
10136
- .uk-light .uk-list-primary > ::before,
10137
- .uk-section-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
10138
- .uk-section-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
10139
- .uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::before,
10140
- .uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::before,
10141
- .uk-card-primary.uk-card-body .uk-list-primary > ::before,
10142
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
10143
- .uk-card-secondary.uk-card-body .uk-list-primary > ::before,
10144
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-primary > ::before,
10145
- .uk-overlay-primary .uk-list-primary > ::before,
10146
- .uk-offcanvas-bar .uk-list-primary > ::before {
10110
+ .uk-light .uk-list-primary > ::marker,
10111
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10112
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10113
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10114
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10115
+ .uk-card-primary.uk-card-body .uk-list-primary > ::marker,
10116
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-primary > ::marker,
10117
+ .uk-card-secondary.uk-card-body .uk-list-primary > ::marker,
10118
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-primary > ::marker,
10119
+ .uk-overlay-primary .uk-list-primary > ::marker,
10120
+ .uk-offcanvas-bar .uk-list-primary > ::marker {
10147
10121
  color: #fff !important;
10148
10122
  }
10149
- .uk-light .uk-list-secondary > ::before,
10150
- .uk-section-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
10151
- .uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
10152
- .uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::before,
10153
- .uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::before,
10154
- .uk-card-primary.uk-card-body .uk-list-secondary > ::before,
10155
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
10156
- .uk-card-secondary.uk-card-body .uk-list-secondary > ::before,
10157
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-secondary > ::before,
10158
- .uk-overlay-primary .uk-list-secondary > ::before,
10159
- .uk-offcanvas-bar .uk-list-secondary > ::before {
10123
+ .uk-light .uk-list-secondary > ::marker,
10124
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10125
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10126
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10127
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10128
+ .uk-card-primary.uk-card-body .uk-list-secondary > ::marker,
10129
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-secondary > ::marker,
10130
+ .uk-card-secondary.uk-card-body .uk-list-secondary > ::marker,
10131
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-secondary > ::marker,
10132
+ .uk-overlay-primary .uk-list-secondary > ::marker,
10133
+ .uk-offcanvas-bar .uk-list-secondary > ::marker {
10160
10134
  color: #fff !important;
10161
10135
  }
10162
10136
  .uk-light .uk-list-bullet > ::before,