uikit 3.13.2-dev.13a8eb3ff → 3.13.2-dev.aa6a91433

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 (59) hide show
  1. package/.eslintrc.json +9 -0
  2. package/CHANGELOG.md +6 -0
  3. package/dist/css/uikit-core-rtl.css +12 -63
  4. package/dist/css/uikit-core-rtl.min.css +1 -1
  5. package/dist/css/uikit-core.css +12 -63
  6. package/dist/css/uikit-core.min.css +1 -1
  7. package/dist/css/uikit-rtl.css +12 -63
  8. package/dist/css/uikit-rtl.min.css +1 -1
  9. package/dist/css/uikit.css +12 -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 +21 -36
  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 +25 -41
  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/sticky.js +1 -1
  47. package/src/js/mixin/media.js +4 -4
  48. package/src/js/mixin/position.js +4 -9
  49. package/src/js/util/style.js +8 -15
  50. package/src/less/components/drop.less +1 -10
  51. package/src/less/components/dropdown.less +1 -10
  52. package/src/less/components/navbar.less +9 -11
  53. package/src/less/components/tooltip.less +1 -10
  54. package/src/scss/components/drop.scss +1 -10
  55. package/src/scss/components/dropdown.scss +1 -10
  56. package/src/scss/components/navbar.scss +9 -11
  57. package/src/scss/components/tooltip.scss +1 -10
  58. package/src/scss/variables-theme.scss +1 -0
  59. package/src/scss/variables.scss +1 -0
@@ -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.aa6a91433 | https://www.getuikit.com | (c) 2014 - 2022 YOOtheme | MIT License */
2
2
  /* ========================================================================
3
3
  Component: Base
4
4
  ========================================================================== */
@@ -3227,6 +3227,7 @@ select.uk-form-width-xsmall {
3227
3227
  /* 2 */
3228
3228
  position: absolute;
3229
3229
  z-index: 1020;
3230
+ --uk-position-margin-offset: 20px;
3230
3231
  /* 3 */
3231
3232
  box-sizing: border-box;
3232
3233
  width: 300px;
@@ -3235,21 +3236,6 @@ select.uk-form-width-xsmall {
3235
3236
  .uk-drop.uk-open {
3236
3237
  display: block;
3237
3238
  }
3238
- /* Direction / Alignment modifiers
3239
- ========================================================================== */
3240
- /* Direction */
3241
- [class*='uk-drop-top'] {
3242
- margin-top: -20px;
3243
- }
3244
- [class*='uk-drop-bottom'] {
3245
- margin-top: 20px;
3246
- }
3247
- [class*='uk-drop-left'] {
3248
- margin-left: -20px;
3249
- }
3250
- [class*='uk-drop-right'] {
3251
- margin-left: 20px;
3252
- }
3253
3239
  /* Grid modifiers
3254
3240
  ========================================================================== */
3255
3241
  .uk-drop-stack .uk-drop-grid > * {
@@ -3270,6 +3256,7 @@ select.uk-form-width-xsmall {
3270
3256
  /* 2 */
3271
3257
  position: absolute;
3272
3258
  z-index: 1020;
3259
+ --uk-position-margin-offset: 10px;
3273
3260
  /* 3 */
3274
3261
  box-sizing: border-box;
3275
3262
  min-width: 200px;
@@ -3321,21 +3308,6 @@ select.uk-form-width-xsmall {
3321
3308
  .uk-dropdown-nav .uk-nav-sub li.uk-active > a {
3322
3309
  color: #666;
3323
3310
  }
3324
- /* Direction / Alignment modifiers
3325
- ========================================================================== */
3326
- /* Direction */
3327
- [class*='uk-dropdown-top'] {
3328
- margin-top: -10px;
3329
- }
3330
- [class*='uk-dropdown-bottom'] {
3331
- margin-top: 10px;
3332
- }
3333
- [class*='uk-dropdown-left'] {
3334
- margin-left: -10px;
3335
- }
3336
- [class*='uk-dropdown-right'] {
3337
- margin-left: 10px;
3338
- }
3339
3311
  /* Grid modifiers
3340
3312
  ========================================================================== */
3341
3313
  .uk-dropdown-stack .uk-dropdown-grid > * {
@@ -4098,6 +4070,7 @@ select.uk-form-width-xsmall {
4098
4070
  /* 2 */
4099
4071
  position: absolute;
4100
4072
  z-index: 1030;
4073
+ --uk-position-margin-offset: 10px;
4101
4074
  /* 3 */
4102
4075
  top: 0;
4103
4076
  /* 4 */
@@ -4114,21 +4087,6 @@ select.uk-form-width-xsmall {
4114
4087
  .uk-tooltip.uk-active {
4115
4088
  display: block;
4116
4089
  }
4117
- /* Direction / Alignment modifiers
4118
- ========================================================================== */
4119
- /* Direction */
4120
- [class*='uk-tooltip-top'] {
4121
- margin-top: -10px;
4122
- }
4123
- [class*='uk-tooltip-bottom'] {
4124
- margin-top: 10px;
4125
- }
4126
- [class*='uk-tooltip-left'] {
4127
- margin-left: -10px;
4128
- }
4129
- [class*='uk-tooltip-right'] {
4130
- margin-left: 10px;
4131
- }
4132
4090
  /* ========================================================================
4133
4091
  Component: Sortable
4134
4092
  ========================================================================== */
@@ -4979,6 +4937,7 @@ ul.uk-nav-sub {
4979
4937
  /* 2 */
4980
4938
  position: absolute;
4981
4939
  z-index: 1020;
4940
+ --uk-position-margin-offset: 0;
4982
4941
  /* 3 */
4983
4942
  box-sizing: border-box;
4984
4943
  width: 200px;
@@ -4991,22 +4950,6 @@ ul.uk-nav-sub {
4991
4950
  .uk-navbar-dropdown.uk-open {
4992
4951
  display: block;
4993
4952
  }
4994
- /*
4995
- * Direction / Alignment modifiers
4996
- */
4997
- /* Direction */
4998
- [class*='uk-navbar-dropdown-top'] {
4999
- margin-top: 0;
5000
- }
5001
- [class*='uk-navbar-dropdown-bottom'] {
5002
- margin-top: 0;
5003
- }
5004
- [class*='uk-navbar-dropdown-left'] {
5005
- margin-left: 0;
5006
- }
5007
- [class*='uk-navbar-dropdown-right'] {
5008
- margin-left: 0;
5009
- }
5010
4953
  /*
5011
4954
  * Grid
5012
4955
  * Adopts `uk-grid`
@@ -5043,10 +4986,16 @@ ul.uk-nav-sub {
5043
4986
  }
5044
4987
  /*
5045
4988
  * Dropbar modifier
4989
+ * 1. Set position
4990
+ * 2. Bottom padding for dropbar
4991
+ * 3. Horizontal padding
5046
4992
  */
5047
4993
  .uk-navbar-dropdown-dropbar {
5048
- margin-top: 0;
4994
+ /* 1 */
4995
+ --uk-position-margin-offset: 0;
4996
+ /* 2 */
5049
4997
  margin-bottom: 0;
4998
+ padding: 15px;
5050
4999
  }
5051
5000
  /* Dropdown Nav
5052
5001
  * Adopts `uk-nav`