uikit 3.13.2-dev.13a8eb3ff → 3.13.2-dev.9467fe2c3

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 (61) hide show
  1. package/.eslintrc.json +9 -0
  2. package/CHANGELOG.md +8 -0
  3. package/dist/css/uikit-core-rtl.css +15 -63
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +15 -63
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +15 -63
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +15 -63
  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 +1 -1
  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 +9 -15
  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 +39 -48
  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 +43 -53
  42. package/dist/js/uikit.min.js +1 -1
  43. package/package.json +1 -1
  44. package/src/js/components/tooltip.js +2 -3
  45. package/src/js/core/drop.js +7 -10
  46. package/src/js/core/navbar.js +10 -5
  47. package/src/js/core/sticky.js +1 -1
  48. package/src/js/core/video.js +1 -1
  49. package/src/js/mixin/media.js +4 -4
  50. package/src/js/mixin/position.js +4 -9
  51. package/src/js/util/style.js +13 -19
  52. package/src/less/components/drop.less +3 -11
  53. package/src/less/components/dropdown.less +3 -11
  54. package/src/less/components/navbar.less +11 -12
  55. package/src/less/components/tooltip.less +2 -11
  56. package/src/scss/components/drop.scss +3 -11
  57. package/src/scss/components/dropdown.scss +3 -11
  58. package/src/scss/components/navbar.scss +11 -12
  59. package/src/scss/components/tooltip.scss +2 -11
  60. package/src/scss/variables-theme.scss +5 -4
  61. package/src/scss/variables.scss +5 -4
@@ -1,4 +1,4 @@
1
- /*! UIkit 3.13.2-dev.13a8eb3ff | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
1
+ /*! UIkit 3.13.2-dev.9467fe2c3 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3488,29 +3488,16 @@ select.uk-form-width-xsmall {
3488
3488
  /* 2 */
3489
3489
  position: absolute;
3490
3490
  z-index: 1020;
3491
+ --uk-position-margin-offset: 20px;
3491
3492
  /* 3 */
3492
3493
  box-sizing: border-box;
3493
3494
  width: 300px;
3495
+ max-width: 100vw;
3494
3496
  }
3495
3497
  /* Show */
3496
3498
  .uk-drop.uk-open {
3497
3499
  display: block;
3498
3500
  }
3499
- /* Direction / Alignment modifiers
3500
- ========================================================================== */
3501
- /* Direction */
3502
- [class*='uk-drop-top'] {
3503
- margin-top: -20px;
3504
- }
3505
- [class*='uk-drop-bottom'] {
3506
- margin-top: 20px;
3507
- }
3508
- [class*='uk-drop-right'] {
3509
- margin-right: -20px;
3510
- }
3511
- [class*='uk-drop-left'] {
3512
- margin-right: 20px;
3513
- }
3514
3501
  /* Grid modifiers
3515
3502
  ========================================================================== */
3516
3503
  .uk-drop-stack .uk-drop-grid > * {
@@ -3531,9 +3518,11 @@ select.uk-form-width-xsmall {
3531
3518
  /* 2 */
3532
3519
  position: absolute;
3533
3520
  z-index: 1020;
3521
+ --uk-position-margin-offset: 10px;
3534
3522
  /* 3 */
3535
3523
  box-sizing: border-box;
3536
3524
  min-width: 200px;
3525
+ max-width: 100vw;
3537
3526
  /* 4 */
3538
3527
  padding: 25px;
3539
3528
  background: #fff;
@@ -3584,21 +3573,6 @@ select.uk-form-width-xsmall {
3584
3573
  .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
3585
3574
  color: #666;
3586
3575
  }
3587
- /* Direction / Alignment modifiers
3588
- ========================================================================== */
3589
- /* Direction */
3590
- [class*='uk-dropdown-top'] {
3591
- margin-top: -10px;
3592
- }
3593
- [class*='uk-dropdown-bottom'] {
3594
- margin-top: 10px;
3595
- }
3596
- [class*='uk-dropdown-right'] {
3597
- margin-right: -10px;
3598
- }
3599
- [class*='uk-dropdown-left'] {
3600
- margin-right: 10px;
3601
- }
3602
3576
  /* Grid modifiers
3603
3577
  ========================================================================== */
3604
3578
  .uk-dropdown-stack .uk-dropdown-grid > * {
@@ -4369,6 +4343,7 @@ select.uk-form-width-xsmall {
4369
4343
  /* 2 */
4370
4344
  position: absolute;
4371
4345
  z-index: 1030;
4346
+ --uk-position-margin-offset: 10px;
4372
4347
  /* 3 */
4373
4348
  top: 0;
4374
4349
  /* 4 */
@@ -4385,21 +4360,6 @@ select.uk-form-width-xsmall {
4385
4360
  .uk-tooltip.uk-active {
4386
4361
  display: block;
4387
4362
  }
4388
- /* Direction / Alignment modifiers
4389
- ========================================================================== */
4390
- /* Direction */
4391
- [class*='uk-tooltip-top'] {
4392
- margin-top: -10px;
4393
- }
4394
- [class*='uk-tooltip-bottom'] {
4395
- margin-top: 10px;
4396
- }
4397
- [class*='uk-tooltip-right'] {
4398
- margin-right: -10px;
4399
- }
4400
- [class*='uk-tooltip-left'] {
4401
- margin-right: 10px;
4402
- }
4403
4363
  /* ========================================================================
4404
4364
  Component: Sortable
4405
4365
  ========================================================================== */
@@ -5256,9 +5216,11 @@ ul.uk-nav-sub {
5256
5216
  /* 2 */
5257
5217
  position: absolute;
5258
5218
  z-index: 1020;
5219
+ --uk-position-margin-offset: 15px;
5259
5220
  /* 3 */
5260
5221
  box-sizing: border-box;
5261
5222
  width: 200px;
5223
+ max-width: 100vw;
5262
5224
  /* 4 */
5263
5225
  padding: 25px;
5264
5226
  background: #fff;
@@ -5269,22 +5231,6 @@ ul.uk-nav-sub {
5269
5231
  .uk-navbar-dropdown.uk-open {
5270
5232
  display: block;
5271
5233
  }
5272
- /*
5273
- * Direction / Alignment modifiers
5274
- */
5275
- /* Direction */
5276
- [class*='uk-navbar-dropdown-top'] {
5277
- margin-top: -15px;
5278
- }
5279
- [class*='uk-navbar-dropdown-bottom'] {
5280
- margin-top: 15px;
5281
- }
5282
- [class*='uk-navbar-dropdown-right'] {
5283
- margin-right: -15px;
5284
- }
5285
- [class*='uk-navbar-dropdown-left'] {
5286
- margin-right: 15px;
5287
- }
5288
5234
  /*
5289
5235
  * Grid
5290
5236
  * Adopts `uk-grid`
@@ -5321,10 +5267,16 @@ ul.uk-nav-sub {
5321
5267
  }
5322
5268
  /*
5323
5269
  * Dropbar modifier
5270
+ * 1. Set position
5271
+ * 2. Bottom padding for dropbar
5272
+ * 3. Horizontal padding
5324
5273
  */
5325
5274
  .uk-navbar-dropdown-dropbar {
5326
- margin-top: 0;
5275
+ /* 1 */
5276
+ --uk-position-margin-offset: 0;
5277
+ /* 2 */
5327
5278
  margin-bottom: 0;
5279
+ padding: 15px;
5328
5280
  box-shadow: none;
5329
5281
  }
5330
5282
  /* Dropdown Nav