uikit 3.20.1 → 3.20.2-dev.b65391733

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 (46) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/css/uikit-core-rtl.css +171 -171
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +171 -171
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +204 -204
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +204 -204
  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 +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 +2 -2
  21. package/dist/js/components/parallax.min.js +1 -1
  22. package/dist/js/components/slider-parallax.js +2 -2
  23. package/dist/js/components/slider-parallax.min.js +1 -1
  24. package/dist/js/components/slider.js +2 -2
  25. package/dist/js/components/slider.min.js +1 -1
  26. package/dist/js/components/slideshow-parallax.js +2 -2
  27. package/dist/js/components/slideshow-parallax.min.js +1 -1
  28. package/dist/js/components/slideshow.js +2 -2
  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 +6 -5
  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 +6 -5
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +1 -1
  43. package/src/js/core/switcher.js +3 -2
  44. package/src/js/util/selector.js +1 -1
  45. package/src/less/components/_import.less +4 -4
  46. package/src/scss/components/_import.scss +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## WIP
4
+
5
+ ### Changed
6
+
7
+ - Make gutter overridable through grid classes in Iconnav and Thumbnav components
8
+
9
+ ### Fixed
10
+
11
+ - Fix Switcher component may show multiple items if toggled while previous animation in progress
12
+ - Fix regression in selector engine
13
+
3
14
  ## 3.20.1 (April 23, 2024)
4
15
 
5
16
  ### Fixed
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.20.1 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
1
+ /*! UIkit 3.20.2-dev.b65391733 | https://www.getuikit.com | (c) 2014 - 2024 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -4235,6 +4235,137 @@ select.uk-form-width-xsmall {
4235
4235
  }
4236
4236
  /* Label
4237
4237
  ========================================================================== */
4238
+ /* ========================================================================
4239
+ Component: Thumbnav
4240
+ ========================================================================== */
4241
+ /*
4242
+ * 1. Allow items to wrap into the next line
4243
+ * 2. Reset list
4244
+ * 3. Gutter
4245
+ */
4246
+ .uk-thumbnav {
4247
+ display: flex;
4248
+ /* 1 */
4249
+ flex-wrap: wrap;
4250
+ /* 2 */
4251
+ margin: 0;
4252
+ padding: 0;
4253
+ list-style: none;
4254
+ /* 3 */
4255
+ margin-right: -15px;
4256
+ }
4257
+ /*
4258
+ * Space is allocated based on content dimensions, but shrinks: 0 1 auto
4259
+ * 1. Gutter
4260
+ */
4261
+ .uk-thumbnav > * {
4262
+ /* 1 */
4263
+ padding-right: 15px;
4264
+ }
4265
+ /* Items
4266
+ ========================================================================== */
4267
+ /*
4268
+ * Items
4269
+ */
4270
+ .uk-thumbnav > * > * {
4271
+ display: inline-block;
4272
+ }
4273
+ /* Hover */
4274
+ /* Active */
4275
+ /* Modifier: 'uk-thumbnav-vertical'
4276
+ ========================================================================== */
4277
+ /*
4278
+ * 1. Change direction
4279
+ * 2. Gutter
4280
+ */
4281
+ .uk-thumbnav-vertical {
4282
+ /* 1 */
4283
+ flex-direction: column;
4284
+ /* 2 */
4285
+ margin-right: 0;
4286
+ margin-top: -15px;
4287
+ }
4288
+ /* 2 */
4289
+ .uk-thumbnav-vertical > * {
4290
+ padding-right: 0;
4291
+ padding-top: 15px;
4292
+ }
4293
+ /* ========================================================================
4294
+ Component: Iconnav
4295
+ ========================================================================== */
4296
+ /*
4297
+ * 1. Allow items to wrap into the next line
4298
+ * 2. Reset list
4299
+ * 3. Gutter
4300
+ */
4301
+ .uk-iconnav {
4302
+ display: flex;
4303
+ /* 1 */
4304
+ flex-wrap: wrap;
4305
+ /* 2 */
4306
+ margin: 0;
4307
+ padding: 0;
4308
+ list-style: none;
4309
+ /* 3 */
4310
+ margin-right: -10px;
4311
+ }
4312
+ /*
4313
+ * Space is allocated based on content dimensions, but shrinks: 0 1 auto
4314
+ * 1. Gutter
4315
+ */
4316
+ .uk-iconnav > * {
4317
+ /* 1 */
4318
+ padding-right: 10px;
4319
+ }
4320
+ /* Items
4321
+ ========================================================================== */
4322
+ /*
4323
+ * Items must target `a` elements to exclude other elements (e.g. dropdowns)
4324
+ * 1. Center content vertically if there is still some text
4325
+ * 2. Imitate white space gap when using flexbox
4326
+ * 3. Force text not to affect item height
4327
+ * 4. Style
4328
+ * 5. Required for `a` if there is still some text
4329
+ */
4330
+ .uk-iconnav > * > a {
4331
+ /* 1 */
4332
+ display: flex;
4333
+ align-items: center;
4334
+ /* 2 */
4335
+ column-gap: 0.25em;
4336
+ /* 3 */
4337
+ line-height: 0;
4338
+ /* 4 */
4339
+ color: #999;
4340
+ /* 5 */
4341
+ text-decoration: none;
4342
+ }
4343
+ /* Hover */
4344
+ .uk-iconnav > * > a:hover {
4345
+ color: #666;
4346
+ }
4347
+ /* Active */
4348
+ .uk-iconnav > .uk-active > a {
4349
+ color: #666;
4350
+ }
4351
+ /* Modifier: 'uk-iconnav-vertical'
4352
+ ========================================================================== */
4353
+ /*
4354
+ * 1. Change direction
4355
+ * 2. Gutter
4356
+ */
4357
+ .uk-iconnav-vertical {
4358
+ /* 1 */
4359
+ flex-direction: column;
4360
+ /* 2 */
4361
+ margin-right: 0;
4362
+ margin-top: -10px;
4363
+ }
4364
+ /* 2 */
4365
+ .uk-iconnav-vertical > * {
4366
+ padding-right: 0;
4367
+ padding-top: 10px;
4368
+ }
4238
4369
  /* ========================================================================
4239
4370
  Component: Grid
4240
4371
  ========================================================================== */
@@ -5713,137 +5844,6 @@ ul.uk-nav-sub {
5713
5844
  padding-right: 0;
5714
5845
  padding-top: 12px;
5715
5846
  }
5716
- /* ========================================================================
5717
- Component: Thumbnav
5718
- ========================================================================== */
5719
- /*
5720
- * 1. Allow items to wrap into the next line
5721
- * 2. Reset list
5722
- * 3. Gutter
5723
- */
5724
- .uk-thumbnav {
5725
- display: flex;
5726
- /* 1 */
5727
- flex-wrap: wrap;
5728
- /* 2 */
5729
- margin: 0;
5730
- padding: 0;
5731
- list-style: none;
5732
- /* 3 */
5733
- margin-right: -15px;
5734
- }
5735
- /*
5736
- * Space is allocated based on content dimensions, but shrinks: 0 1 auto
5737
- * 1. Gutter
5738
- */
5739
- .uk-thumbnav > * {
5740
- /* 1 */
5741
- padding-right: 15px;
5742
- }
5743
- /* Items
5744
- ========================================================================== */
5745
- /*
5746
- * Items
5747
- */
5748
- .uk-thumbnav > * > * {
5749
- display: inline-block;
5750
- }
5751
- /* Hover */
5752
- /* Active */
5753
- /* Modifier: 'uk-thumbnav-vertical'
5754
- ========================================================================== */
5755
- /*
5756
- * 1. Change direction
5757
- * 2. Gutter
5758
- */
5759
- .uk-thumbnav-vertical {
5760
- /* 1 */
5761
- flex-direction: column;
5762
- /* 2 */
5763
- margin-right: 0;
5764
- margin-top: -15px;
5765
- }
5766
- /* 2 */
5767
- .uk-thumbnav-vertical > * {
5768
- padding-right: 0;
5769
- padding-top: 15px;
5770
- }
5771
- /* ========================================================================
5772
- Component: Iconnav
5773
- ========================================================================== */
5774
- /*
5775
- * 1. Allow items to wrap into the next line
5776
- * 2. Reset list
5777
- * 3. Gutter
5778
- */
5779
- .uk-iconnav {
5780
- display: flex;
5781
- /* 1 */
5782
- flex-wrap: wrap;
5783
- /* 2 */
5784
- margin: 0;
5785
- padding: 0;
5786
- list-style: none;
5787
- /* 3 */
5788
- margin-right: -10px;
5789
- }
5790
- /*
5791
- * Space is allocated based on content dimensions, but shrinks: 0 1 auto
5792
- * 1. Gutter
5793
- */
5794
- .uk-iconnav > * {
5795
- /* 1 */
5796
- padding-right: 10px;
5797
- }
5798
- /* Items
5799
- ========================================================================== */
5800
- /*
5801
- * Items must target `a` elements to exclude other elements (e.g. dropdowns)
5802
- * 1. Center content vertically if there is still some text
5803
- * 2. Imitate white space gap when using flexbox
5804
- * 3. Force text not to affect item height
5805
- * 4. Style
5806
- * 5. Required for `a` if there is still some text
5807
- */
5808
- .uk-iconnav > * > a {
5809
- /* 1 */
5810
- display: flex;
5811
- align-items: center;
5812
- /* 2 */
5813
- column-gap: 0.25em;
5814
- /* 3 */
5815
- line-height: 0;
5816
- /* 4 */
5817
- color: #999;
5818
- /* 5 */
5819
- text-decoration: none;
5820
- }
5821
- /* Hover */
5822
- .uk-iconnav > * > a:hover {
5823
- color: #666;
5824
- }
5825
- /* Active */
5826
- .uk-iconnav > .uk-active > a {
5827
- color: #666;
5828
- }
5829
- /* Modifier: 'uk-iconnav-vertical'
5830
- ========================================================================== */
5831
- /*
5832
- * 1. Change direction
5833
- * 2. Gutter
5834
- */
5835
- .uk-iconnav-vertical {
5836
- /* 1 */
5837
- flex-direction: column;
5838
- /* 2 */
5839
- margin-right: 0;
5840
- margin-top: -10px;
5841
- }
5842
- /* 2 */
5843
- .uk-iconnav-vertical > * {
5844
- padding-right: 0;
5845
- padding-top: 10px;
5846
- }
5847
5847
  /* ========================================================================
5848
5848
  Component: Dropdown
5849
5849
  ========================================================================== */
@@ -11180,6 +11180,45 @@ iframe[data-uk-cover] {
11180
11180
  .uk-offcanvas-bar .uk-accordion-title:hover {
11181
11181
  color: rgba(255, 255, 255, 0.7);
11182
11182
  }
11183
+ .uk-light .uk-iconnav > * > a,
11184
+ .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
11185
+ .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
11186
+ .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
11187
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
11188
+ .uk-card-primary.uk-card-body .uk-iconnav > * > a,
11189
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
11190
+ .uk-card-secondary.uk-card-body .uk-iconnav > * > a,
11191
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
11192
+ .uk-overlay-primary .uk-iconnav > * > a,
11193
+ .uk-offcanvas-bar .uk-iconnav > * > a {
11194
+ color: rgba(255, 255, 255, 0.5);
11195
+ }
11196
+ .uk-light .uk-iconnav > * > a:hover,
11197
+ .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
11198
+ .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
11199
+ .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
11200
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
11201
+ .uk-card-primary.uk-card-body .uk-iconnav > * > a:hover,
11202
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
11203
+ .uk-card-secondary.uk-card-body .uk-iconnav > * > a:hover,
11204
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
11205
+ .uk-overlay-primary .uk-iconnav > * > a:hover,
11206
+ .uk-offcanvas-bar .uk-iconnav > * > a:hover {
11207
+ color: rgba(255, 255, 255, 0.7);
11208
+ }
11209
+ .uk-light .uk-iconnav > .uk-active > a,
11210
+ .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
11211
+ .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
11212
+ .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
11213
+ .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
11214
+ .uk-card-primary.uk-card-body .uk-iconnav > .uk-active > a,
11215
+ .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
11216
+ .uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > a,
11217
+ .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
11218
+ .uk-overlay-primary .uk-iconnav > .uk-active > a,
11219
+ .uk-offcanvas-bar .uk-iconnav > .uk-active > a {
11220
+ color: rgba(255, 255, 255, 0.7);
11221
+ }
11183
11222
  .uk-light .uk-grid-divider > :not(.uk-first-column)::before,
11184
11223
  .uk-section-primary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
11185
11224
  .uk-section-secondary:not(.uk-preserve-color) .uk-grid-divider > :not(.uk-first-column)::before,
@@ -12051,45 +12090,6 @@ iframe[data-uk-cover] {
12051
12090
  .uk-offcanvas-bar .uk-dotnav > .uk-active > * {
12052
12091
  background-color: rgba(255, 255, 255, 0.9);
12053
12092
  }
12054
- .uk-light .uk-iconnav > * > a,
12055
- .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
12056
- .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
12057
- .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a,
12058
- .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a,
12059
- .uk-card-primary.uk-card-body .uk-iconnav > * > a,
12060
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
12061
- .uk-card-secondary.uk-card-body .uk-iconnav > * > a,
12062
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a,
12063
- .uk-overlay-primary .uk-iconnav > * > a,
12064
- .uk-offcanvas-bar .uk-iconnav > * > a {
12065
- color: rgba(255, 255, 255, 0.5);
12066
- }
12067
- .uk-light .uk-iconnav > * > a:hover,
12068
- .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
12069
- .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
12070
- .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
12071
- .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > * > a:hover,
12072
- .uk-card-primary.uk-card-body .uk-iconnav > * > a:hover,
12073
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
12074
- .uk-card-secondary.uk-card-body .uk-iconnav > * > a:hover,
12075
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > * > a:hover,
12076
- .uk-overlay-primary .uk-iconnav > * > a:hover,
12077
- .uk-offcanvas-bar .uk-iconnav > * > a:hover {
12078
- color: rgba(255, 255, 255, 0.7);
12079
- }
12080
- .uk-light .uk-iconnav > .uk-active > a,
12081
- .uk-section-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
12082
- .uk-section-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
12083
- .uk-tile-primary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
12084
- .uk-tile-secondary:not(.uk-preserve-color) .uk-iconnav > .uk-active > a,
12085
- .uk-card-primary.uk-card-body .uk-iconnav > .uk-active > a,
12086
- .uk-card-primary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
12087
- .uk-card-secondary.uk-card-body .uk-iconnav > .uk-active > a,
12088
- .uk-card-secondary > :not([class*="uk-card-media"]) .uk-iconnav > .uk-active > a,
12089
- .uk-overlay-primary .uk-iconnav > .uk-active > a,
12090
- .uk-offcanvas-bar .uk-iconnav > .uk-active > a {
12091
- color: rgba(255, 255, 255, 0.7);
12092
- }
12093
12093
  .uk-light .uk-text-lead,
12094
12094
  .uk-section-primary:not(.uk-preserve-color) .uk-text-lead,
12095
12095
  .uk-section-secondary:not(.uk-preserve-color) .uk-text-lead,