uikit 3.22.1 → 3.22.3-dev.73b0d86b9

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 (50) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/dist/css/uikit-core-rtl.css +77 -92
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +77 -92
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +77 -92
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +77 -92
  9. package/dist/css/uikit.min.css +1 -1
  10. package/dist/js/components/countdown.js +2 -2
  11. package/dist/js/components/countdown.min.js +1 -1
  12. package/dist/js/components/filter.js +1 -1
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +1 -1
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +1 -1
  17. package/dist/js/components/lightbox.min.js +1 -1
  18. package/dist/js/components/notification.js +1 -1
  19. package/dist/js/components/notification.min.js +1 -1
  20. package/dist/js/components/parallax.js +1 -1
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +1 -1
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +1 -1
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +1 -1
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +1 -1
  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 +1 -1
  33. package/dist/js/components/tooltip.min.js +1 -1
  34. package/dist/js/components/upload.js +1 -1
  35. package/dist/js/components/upload.min.js +1 -1
  36. package/dist/js/uikit-core.js +2 -2
  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 +3 -3
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +2 -2
  43. package/src/js/components/countdown.js +1 -1
  44. package/src/less/components/form.less +13 -1
  45. package/src/less/components/list.less +26 -49
  46. package/src/scss/components/form.scss +13 -1
  47. package/src/scss/components/list.scss +22 -45
  48. package/src/scss/mixins-theme.scss +4 -4
  49. package/src/scss/mixins.scss +4 -4
  50. package/tests/slider.html +41 -48
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Fixed
6
+
7
+ - Fix vertical alignment for input of type date, time and datetime-local in Safari
8
+
9
+ ## 3.22.2 (January 16, 2025)
10
+
11
+ ### Fixed
12
+
13
+ - Fix missing list markers in Chrome in List component
14
+
3
15
  ## 3.22.1 (January 16, 2025)
4
16
 
5
17
  ### Changed
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.22.1 | https://www.getuikit.com | (c) 2014 - 2025 YOOtheme | MIT License */
1
+ /*! UIkit 3.22.3-dev.73b0d86b9 | 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%;
@@ -1359,6 +1333,17 @@ button.uk-icon:not(:disabled) {
1359
1333
  .uk-input[type="number"]::-webkit-outer-spin-button {
1360
1334
  height: auto;
1361
1335
  }
1336
+ /*
1337
+ * Correct vertical alignment in Safari.
1338
+ */
1339
+ .uk-input[type="date"]::-webkit-datetime-edit,
1340
+ .uk-input[type="time"]::-webkit-datetime-edit,
1341
+ .uk-input[type="datetime-local"]::-webkit-datetime-edit {
1342
+ display: inline-flex;
1343
+ align-items: center;
1344
+ height: 100%;
1345
+ padding: 0;
1346
+ }
1362
1347
  /*
1363
1348
  * Removes placeholder transparency in Firefox.
1364
1349
  */
@@ -10107,56 +10092,56 @@ iframe[data-uk-cover] {
10107
10092
  .uk-offcanvas-bar .uk-divider-vertical {
10108
10093
  border-right-color: rgba(255, 255, 255, 0.2);
10109
10094
  }
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 {
10095
+ .uk-light .uk-list-muted > ::marker,
10096
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10097
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10098
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10099
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-muted > ::marker,
10100
+ .uk-card-primary.uk-card-body .uk-list-muted > ::marker,
10101
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-muted > ::marker,
10102
+ .uk-card-secondary.uk-card-body .uk-list-muted > ::marker,
10103
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-muted > ::marker,
10104
+ .uk-overlay-primary .uk-list-muted > ::marker,
10105
+ .uk-offcanvas-bar .uk-list-muted > ::marker {
10121
10106
  color: rgba(255, 255, 255, 0.5) !important;
10122
10107
  }
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 {
10108
+ .uk-light .uk-list-emphasis > ::marker,
10109
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10110
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10111
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10112
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-emphasis > ::marker,
10113
+ .uk-card-primary.uk-card-body .uk-list-emphasis > ::marker,
10114
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::marker,
10115
+ .uk-card-secondary.uk-card-body .uk-list-emphasis > ::marker,
10116
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-emphasis > ::marker,
10117
+ .uk-overlay-primary .uk-list-emphasis > ::marker,
10118
+ .uk-offcanvas-bar .uk-list-emphasis > ::marker {
10134
10119
  color: #fff !important;
10135
10120
  }
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 {
10121
+ .uk-light .uk-list-primary > ::marker,
10122
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10123
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10124
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10125
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-primary > ::marker,
10126
+ .uk-card-primary.uk-card-body .uk-list-primary > ::marker,
10127
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-primary > ::marker,
10128
+ .uk-card-secondary.uk-card-body .uk-list-primary > ::marker,
10129
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-primary > ::marker,
10130
+ .uk-overlay-primary .uk-list-primary > ::marker,
10131
+ .uk-offcanvas-bar .uk-list-primary > ::marker {
10147
10132
  color: #fff !important;
10148
10133
  }
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 {
10134
+ .uk-light .uk-list-secondary > ::marker,
10135
+ .uk-section-primary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10136
+ .uk-section-secondary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10137
+ .uk-tile-primary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10138
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-list-secondary > ::marker,
10139
+ .uk-card-primary.uk-card-body .uk-list-secondary > ::marker,
10140
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-list-secondary > ::marker,
10141
+ .uk-card-secondary.uk-card-body .uk-list-secondary > ::marker,
10142
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-list-secondary > ::marker,
10143
+ .uk-overlay-primary .uk-list-secondary > ::marker,
10144
+ .uk-offcanvas-bar .uk-list-secondary > ::marker {
10160
10145
  color: #fff !important;
10161
10146
  }
10162
10147
  .uk-light .uk-list-bullet > ::before,