uikit 3.21.13 → 3.21.14-dev.2e8a07c7e

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 (142) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/dist/css/uikit-core-rtl.css +233 -85
  3. package/dist/css/uikit-core-rtl.min.css +1 -1
  4. package/dist/css/uikit-core.css +233 -85
  5. package/dist/css/uikit-core.min.css +1 -1
  6. package/dist/css/uikit-rtl.css +237 -81
  7. package/dist/css/uikit-rtl.min.css +1 -1
  8. package/dist/css/uikit.css +237 -81
  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 -11
  13. package/dist/js/components/filter.min.js +1 -1
  14. package/dist/js/components/lightbox-panel.js +432 -127
  15. package/dist/js/components/lightbox-panel.min.js +1 -1
  16. package/dist/js/components/lightbox.js +449 -132
  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 +20 -28
  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 +25 -34
  29. package/dist/js/components/slideshow.min.js +1 -1
  30. package/dist/js/components/sortable.js +4 -2
  31. package/dist/js/components/sortable.min.js +1 -1
  32. package/dist/js/components/tooltip.js +8 -12
  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 +242 -241
  37. package/dist/js/uikit-core.min.js +1 -1
  38. package/dist/js/uikit-icons.js +20 -17
  39. package/dist/js/uikit-icons.min.js +1 -1
  40. package/dist/js/uikit.js +668 -549
  41. package/dist/js/uikit.min.js +1 -1
  42. package/package.json +3 -3
  43. package/src/images/icons/arrow-down-arrow-up.svg +6 -0
  44. package/src/images/icons/arrow-down.svg +3 -3
  45. package/src/images/icons/arrow-left.svg +3 -3
  46. package/src/images/icons/arrow-right.svg +3 -3
  47. package/src/images/icons/arrow-up-right.svg +3 -3
  48. package/src/images/icons/arrow-up.svg +3 -3
  49. package/src/images/icons/close-circle.svg +5 -0
  50. package/src/images/icons/cloud-download.svg +4 -4
  51. package/src/images/icons/cloud-upload.svg +4 -4
  52. package/src/images/icons/download.svg +4 -4
  53. package/src/images/icons/expand.svg +5 -5
  54. package/src/images/icons/link-external.svg +4 -4
  55. package/src/images/icons/pull.svg +4 -4
  56. package/src/images/icons/push.svg +3 -3
  57. package/src/images/icons/shrink.svg +5 -5
  58. package/src/images/icons/sign-in.svg +4 -3
  59. package/src/images/icons/sign-out.svg +4 -3
  60. package/src/images/icons/sorting.svg +6 -0
  61. package/src/images/icons/upload.svg +4 -4
  62. package/src/js/api/boot.js +16 -20
  63. package/src/js/api/events.js +12 -13
  64. package/src/js/api/instance.js +1 -1
  65. package/src/js/components/internal/lightbox-animations.js +2 -1
  66. package/src/js/components/internal/slideshow-animations.js +5 -5
  67. package/src/js/components/lightbox-panel.js +184 -45
  68. package/src/js/components/lightbox.js +59 -6
  69. package/src/js/components/slideshow.js +1 -2
  70. package/src/js/components/sortable.js +3 -1
  71. package/src/js/core/drop.js +3 -1
  72. package/src/js/core/grid.js +1 -1
  73. package/src/js/core/icon.js +2 -2
  74. package/src/js/core/img.js +3 -5
  75. package/src/js/core/navbar.js +6 -2
  76. package/src/js/core/scrollspy-nav.js +1 -1
  77. package/src/js/core/svg.js +8 -10
  78. package/src/js/core/video.js +4 -3
  79. package/src/js/mixin/internal/slideshow-animations.js +1 -6
  80. package/src/js/mixin/modal.js +1 -4
  81. package/src/js/mixin/slider-drag.js +5 -6
  82. package/src/js/mixin/slider-nav.js +4 -2
  83. package/src/js/mixin/slider.js +11 -13
  84. package/src/js/mixin/slideshow.js +1 -1
  85. package/src/js/mixin/togglable.js +7 -2
  86. package/src/js/util/dom.js +3 -1
  87. package/src/js/util/filter.js +3 -1
  88. package/src/js/util/player.js +0 -4
  89. package/src/less/components/background.less +1 -9
  90. package/src/less/components/breadcrumb.less +6 -2
  91. package/src/less/components/button.less +1 -1
  92. package/src/less/components/form-range.less +52 -0
  93. package/src/less/components/form.less +1 -1
  94. package/src/less/components/lightbox.less +57 -89
  95. package/src/less/components/margin.less +14 -0
  96. package/src/less/components/search.less +49 -23
  97. package/src/less/components/sticky.less +1 -10
  98. package/src/less/components/totop.less +1 -1
  99. package/src/less/components/transition.less +4 -4
  100. package/src/less/components/visibility.less +3 -2
  101. package/src/less/theme/form-range.less +12 -0
  102. package/src/less/theme/lightbox.less +2 -20
  103. package/src/less/theme/search.less +24 -10
  104. package/src/scss/components/background.scss +1 -9
  105. package/src/scss/components/breadcrumb.scss +6 -2
  106. package/src/scss/components/button.scss +1 -1
  107. package/src/scss/components/form-range.scss +12 -0
  108. package/src/scss/components/form.scss +1 -1
  109. package/src/scss/components/lightbox.scss +50 -77
  110. package/src/scss/components/margin.scss +13 -0
  111. package/src/scss/components/search.scss +30 -12
  112. package/src/scss/components/sticky.scss +1 -10
  113. package/src/scss/components/totop.scss +1 -1
  114. package/src/scss/components/transition.scss +4 -4
  115. package/src/scss/components/visibility.scss +3 -2
  116. package/src/scss/mixins-theme.scss +51 -12
  117. package/src/scss/mixins.scss +45 -6
  118. package/src/scss/theme/form-range.scss +10 -0
  119. package/src/scss/theme/lightbox.scss +2 -20
  120. package/src/scss/theme/search.scss +10 -6
  121. package/src/scss/variables-theme.scss +32 -20
  122. package/src/scss/variables.scss +29 -24
  123. package/tests/badge.html +2 -2
  124. package/tests/base.html +1 -1
  125. package/tests/breadcrumb.html +23 -5
  126. package/tests/card.html +24 -24
  127. package/tests/dropbar.html +15 -15
  128. package/tests/dropdown.html +6 -6
  129. package/tests/dropnav.html +100 -100
  130. package/tests/icon.html +8 -0
  131. package/tests/index.html +15 -15
  132. package/tests/lightbox.html +379 -28
  133. package/tests/margin.html +19 -0
  134. package/tests/nav.html +21 -21
  135. package/tests/navbar.html +292 -292
  136. package/tests/offcanvas.html +27 -27
  137. package/tests/placeholder.html +2 -2
  138. package/tests/slider.html +0 -1
  139. package/tests/slideshow.html +1 -1
  140. package/tests/sortable.html +5 -5
  141. package/tests/sticky-navbar.html +114 -114
  142. package/tests/transition.html +2 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "uikit",
3
3
  "title": "UIkit",
4
4
  "description": "UIkit is a lightweight and modular front-end framework for developing fast and powerful web interfaces.",
5
- "version": "3.21.13",
5
+ "version": "3.21.14-dev.2e8a07c7e",
6
6
  "main": "dist/js/uikit.js",
7
7
  "style": "dist/css/uikit.css",
8
8
  "sideEffects": [
@@ -22,7 +22,7 @@
22
22
  "devDependencies": {
23
23
  "@eslint/js": "^9.6.0",
24
24
  "@rollup/plugin-alias": "^5.1.0",
25
- "@rollup/plugin-replace": "^5.0.5",
25
+ "@rollup/plugin-replace": "^6.0.1",
26
26
  "archiver": "^7.0.1",
27
27
  "camelcase": "^8.0.0",
28
28
  "chokidar-cli": "^3.0.0",
@@ -35,7 +35,7 @@
35
35
  "fs-extra": "^11.2.0",
36
36
  "glob": "^11.0.0",
37
37
  "globals": "^15.7.0",
38
- "inquirer": "^11.0.1",
38
+ "inquirer": "^12.0.0",
39
39
  "less": "^4.2.0",
40
40
  "minimist": "^1.2.8",
41
41
  "number-precision": "^1.6.0",
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38" />
3
+ <polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76" />
4
+ <line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62" />
5
+ <polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24" />
6
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="10.5,16.08 5.63,10.66 6.37,10 10.5,14.58 14.63,10 15.37,10.66" />
3
- <line fill="none" stroke="#000" x1="10.5" y1="4" x2="10.5" y2="15" />
4
- </svg>
2
+ <line fill="none" stroke="#000" x1="10" y1="3.48" x2="10" y2="15.48" />
3
+ <polyline fill="none" stroke="#000" points="6.16 12 10 15.84 13.84 12" />
4
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="10 14 5 9.5 10 5" />
3
- <line fill="none" stroke="#000" x1="16" y1="9.5" x2="5" y2="9.52" />
4
- </svg>
2
+ <line fill="none" stroke="#000" x1="16.53" y1="10" x2="4.53" y2="10" />
3
+ <polyline fill="none" stroke="#000" points="8 6.16 4.18 10 8 13.84" />
4
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="10 5 15 9.5 10 14" />
3
- <line fill="none" stroke="#000" x1="4" y1="9.5" x2="15" y2="9.5" />
4
- </svg>
2
+ <line fill="none" stroke="#000" x1="3.47" y1="10" x2="15.47" y2="10" />
3
+ <polyline fill="none" stroke="#000" points="11.98 13.84 15.82 10 11.98 6.16" />
4
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="16 10 16 4 10 4"/>
3
- <line fill="none" stroke="#000" x1="4" y1="16" x2="16" y2="4"/>
4
- </svg>
2
+ <line fill="none" stroke="#000" x1="4.5" y1="15.53" x2="16.5" y2="3.53" />
3
+ <polyline fill="none" stroke="#000" points="16.5 9 16.5 3.5 11 3.5" />
4
+ </svg>
@@ -1,4 +1,4 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="10.5,4 15.37,9.4 14.63,10.08 10.5,5.49 6.37,10.08 5.63,9.4" />
3
- <line fill="none" stroke="#000" x1="10.5" y1="16" x2="10.5" y2="5" />
4
- </svg>
2
+ <line fill="none" stroke="#000" x1="10" y1="16.53" x2="10" y2="4.53" />
3
+ <polyline fill="none" stroke="#000" points="13.84 8 10 4.17 6.16 8" />
4
+ </svg>
@@ -0,0 +1,5 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <circle fill="none" stroke="#000" stroke-width="1.1" cx="10" cy="10" r="9" />
3
+ <line fill="none" stroke="#000" x1="13.18" y1="6.82" x2="6.82" y2="13.18" />
4
+ <line fill="none" stroke="#000" x1="6.82" y1="6.82" x2="13.18" y2="13.18" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,14.61 L3.75,14.61 C1.96,14.61 0.5,13.17 0.5,11.39 C0.5,9.76 1.72,8.41 3.3,8.2 C3.38,5.31 5.75,3 8.68,3 C11.19,3 13.31,4.71 13.89,7.02 C14.39,6.8 14.93,6.68 15.5,6.68 C17.71,6.68 19.5,8.45 19.5,10.64 C19.5,12.83 17.71,14.6 15.5,14.6 L12.5,14.6" />
3
- <polyline fill="none" stroke="#000" points="11.75 16 9.5 18.25 7.25 16" />
4
- <path fill="none" stroke="#000" d="M9.5,18 L9.5,9.5" />
5
- </svg>
2
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.28h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.8-3.19.08-2.89,2.45-5.2,5.38-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3" />
3
+ <path fill="none" stroke="#000" d="M9.5,18.17v-10" />
4
+ <polyline fill="none" stroke="#000" points="12.67 15.66 9.5 18.83 6.33 15.66" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,14.61 L3.75,14.61 C1.96,14.61 0.5,13.17 0.5,11.39 C0.5,9.76 1.72,8.41 3.31,8.2 C3.38,5.31 5.75,3 8.68,3 C11.19,3 13.31,4.71 13.89,7.02 C14.39,6.8 14.93,6.68 15.5,6.68 C17.71,6.68 19.5,8.45 19.5,10.64 C19.5,12.83 17.71,14.6 15.5,14.6 L12.5,14.6" />
3
- <polyline fill="none" stroke="#000" points="7.25 11.75 9.5 9.5 11.75 11.75" />
4
- <path fill="none" stroke="#000" d="M9.5,18 L9.5,9.5" />
5
- </svg>
2
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M6.5,13.77h-2.75c-1.79,0-3.25-1.44-3.25-3.22,0-1.63,1.22-2.98,2.81-3.19.07-2.89,2.44-5.2,5.37-5.2,2.51,0,4.63,1.71,5.21,4.02.5-.22,1.04-.34,1.61-.34,2.21,0,4,1.77,4,3.96s-1.79,3.96-4,3.96h-3" />
3
+ <path fill="none" stroke="#000" d="M9.51,9.34v9" />
4
+ <polyline fill="none" stroke="#000" points="6.34 11.85 9.51 8.68 12.68 11.85" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="14,10 9.5,14.5 5,10" />
3
- <rect x="3" y="17" width="13" height="1" />
4
- <line fill="none" stroke="#000" x1="9.5" y1="13.91" x2="9.5" y2="3" />
5
- </svg>
2
+ <line fill="none" stroke="#000" x1="10" y1="2.09" x2="10" y2="14.09" />
3
+ <polyline fill="none" stroke="#000" points="6.16 10.62 10 14.46 13.84 10.62" />
4
+ <line stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5" />
5
+ </svg>
@@ -1,6 +1,6 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="13 2 18 2 18 7 17 7 17 3 13 3" />
3
- <polygon points="2 13 3 13 3 17 7 17 7 18 2 18" />
4
- <path fill="none" stroke="#000" stroke-width="1.1" d="M11,9 L17,3" />
5
- <path fill="none" stroke="#000" stroke-width="1.1" d="M3,17 L9,11" />
6
- </svg>
2
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M2.48,17.52l6.52-6.52" />
3
+ <polyline fill="none" stroke="#000" points="6.97 17.52 2.48 17.52 2.48 13.03" />
4
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M17.52,2.48l-6.52,6.52" />
5
+ <polyline fill="none" stroke="#000" points="13.03 2.48 17.52 2.48 17.52 6.97" />
6
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="14.5 10.5 14.5 16.5 3.5 16.5 3.5 5.5 8.5 5.5"/>
3
- <polyline fill="none" stroke="#000" points="17.5 8.5 17.5 2.5 11.5 2.5"/>
4
- <line fill="none" stroke="#000" x1="6.5" y1="13.5" x2="17.5" y2="2.5"/>
5
- </svg>
2
+ <polyline fill="none" stroke="#000" points="15 10.5 15 17 3 17 3 5 9.5 5" />
3
+ <line fill="none" stroke="#000" x1="8.22" y1="11.79" x2="17.01" y2="2.99" />
4
+ <polyline fill="none" stroke="#000" points="12.5 3 17 3 17 7.5" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="6.85,8 9.5,10.6 12.15,8 12.85,8.7 9.5,12 6.15,8.7" />
3
- <line fill="none" stroke="#000" x1="9.5" y1="11" x2="9.5" y2="2" />
4
- <polyline fill="none" stroke="#000" points="6,5.5 3.5,5.5 3.5,18.5 15.5,18.5 15.5,5.5 13,5.5" />
5
- </svg>
2
+ <line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="2" />
3
+ <polyline fill="none" stroke="#000" points="6.5 5.5 4 5.5 4 18.5 16 18.5 16 5.5 13.5 5.5" />
4
+ <polyline fill="none" stroke="#000" points="13.18 8.2 10 11.38 6.83 8.21" />
5
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="12.15,4 9.5,1.4 6.85,4 6.15,3.3 9.5,0 12.85,3.3" />
3
- <line fill="none" stroke="#000" x1="9.5" y1="10" x2="9.5" y2="1" />
4
- <polyline fill="none" stroke="#000" points="6 5.5 3.5 5.5 3.5 18.5 15.5 18.5 15.5 5.5 13 5.5" />
2
+ <line fill="none" stroke="#000" x1="10" y1="11" x2="10" y2="1" />
3
+ <polyline fill="none" stroke="#000" points="6.5 6.5 4 6.5 4 19.5 16 19.5 16 6.5 13.5 6.5" />
4
+ <polyline fill="none" stroke="#000" points="6.82 3.88 10 .71 13.17 3.88" />
5
5
  </svg>
@@ -1,6 +1,6 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="11 4 12 4 12 8 16 8 16 9 11 9" />
3
- <polygon points="4 11 9 11 9 16 8 16 8 12 4 12" />
4
- <path fill="none" stroke="#000" stroke-width="1.1" d="M12,8 L18,2" />
5
- <path fill="none" stroke="#000" stroke-width="1.1" d="M2,18 L8,12" />
6
- </svg>
2
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M2,18l6-6" />
3
+ <polyline fill="none" stroke="#000" points="4 11.5 8.49 11.5 8.49 15.99" />
4
+ <path fill="none" stroke="#000" stroke-width="1.1" d="M18,2l-6,6" />
5
+ <polyline fill="none" stroke="#000" points="15.99 8.49 11.5 8.49 11.5 4" />
6
+ </svg>
@@ -1,4 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3" />
3
- <polygon points="9.1 13.4 8.5 12.8 11.28 10 4 10 4 9 11.28 9 8.5 6.2 9.1 5.62 13 9.5" />
4
- </svg>
2
+ <polygon points="7 2 17 2 17 17 7 17 7 16 16 16 16 3 7 3 7 2" />
3
+ <line stroke="#000" x1="3" y1="9.5" x2="12" y2="9.5" />
4
+ <polyline fill="none" stroke="#000" points="9.2 6.33 12.37 9.5 9.2 12.67" />
5
+ </svg>
@@ -1,4 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polygon points="13.1 13.4 12.5 12.8 15.28 10 8 10 8 9 15.28 9 12.5 6.2 13.1 5.62 17 9.5" />
3
- <polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3" />
4
- </svg>
2
+ <polygon points="13 2 3 2 3 17 13 17 13 16 4 16 4 3 13 3 13 2" />
3
+ <line stroke="#000" x1="7.96" y1="9.49" x2="16.96" y2="9.49" />
4
+ <polyline fill="none" stroke="#000" points="14.17 6.31 17.35 9.48 14.17 12.66" />
5
+ </svg>
@@ -0,0 +1,6 @@
1
+ <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
+ <line fill="none" stroke="#000" x1="7" y1="3.38" x2="7" y2="15.38" />
3
+ <polyline fill="none" stroke="#000" points="10.18 12.75 7 15.93 3.83 12.76" />
4
+ <line fill="none" stroke="#000" x1="13" y1="16.62" x2="13" y2="4.62" />
5
+ <polyline fill="none" stroke="#000" points="9.82 7.25 13 4.07 16.17 7.24" />
6
+ </svg>
@@ -1,5 +1,5 @@
1
1
  <svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg">
2
- <polyline fill="none" stroke="#000" points="5 8 9.5 3.5 14 8 " />
3
- <rect x="3" y="17" width="13" height="1" />
4
- <line fill="none" stroke="#000" x1="9.5" y1="15" x2="9.5" y2="4" />
5
- </svg>
2
+ <line fill="none" stroke="#000" x1="10" y1="15.17" x2="10" y2="3.17" />
3
+ <polyline fill="none" stroke="#000" points="13.84 6.63 10 2.8 6.16 6.64" />
4
+ <line fill="#fff" stroke="#000" x1="3.5" y1="17.5" x2="16.5" y2="17.5" />
5
+ </svg>
@@ -24,37 +24,33 @@ function init(App) {
24
24
  apply(document.body, connect);
25
25
  }
26
26
 
27
- new MutationObserver((records) => records.forEach(applyChildListMutation)).observe(document, {
27
+ new MutationObserver(handleMutation).observe(document, {
28
28
  subtree: true,
29
29
  childList: true,
30
- });
31
-
32
- new MutationObserver((records) => records.forEach(applyAttributeMutation)).observe(document, {
33
- subtree: true,
34
30
  attributes: true,
35
31
  });
36
32
 
37
33
  App._initialized = true;
38
34
  }
39
35
 
40
- function applyChildListMutation({ addedNodes, removedNodes }) {
41
- for (const node of addedNodes) {
42
- apply(node, connect);
43
- }
36
+ function handleMutation(records) {
37
+ for (const { addedNodes, removedNodes, target, attributeName } of records) {
38
+ for (const node of addedNodes) {
39
+ apply(node, connect);
40
+ }
44
41
 
45
- for (const node of removedNodes) {
46
- apply(node, disconnect);
47
- }
48
- }
42
+ for (const node of removedNodes) {
43
+ apply(node, disconnect);
44
+ }
49
45
 
50
- function applyAttributeMutation({ target, attributeName }) {
51
- const name = getComponentName(attributeName);
46
+ const name = attributeName && getComponentName(attributeName);
52
47
 
53
- if (name) {
54
- if (hasAttr(target, attributeName)) {
55
- createComponent(name, target);
56
- } else {
57
- getComponent(target, name)?.$destroy();
48
+ if (name) {
49
+ if (hasAttr(target, attributeName)) {
50
+ createComponent(name, target);
51
+ } else {
52
+ getComponent(target, name)?.$destroy();
53
+ }
58
54
  }
59
55
  }
60
56
  }
@@ -1,4 +1,4 @@
1
- import { hasOwn, isArray, isFunction, isPlainObject, isString, on } from 'uikit-util';
1
+ import { hasOwn, on } from 'uikit-util';
2
2
 
3
3
  export function initEvents(instance) {
4
4
  for (const event of instance.$options.events || []) {
@@ -6,29 +6,28 @@ export function initEvents(instance) {
6
6
  registerEvent(instance, event);
7
7
  } else {
8
8
  for (const key in event) {
9
- registerEvent(instance, event[key], key);
9
+ registerEvent(instance, { name: key, handler: event[key] });
10
10
  }
11
11
  }
12
12
  }
13
13
  }
14
14
 
15
- export function registerEvent(instance, event, key) {
16
- let { name, el, handler, capture, passive, delegate, filter, self } = isPlainObject(event)
17
- ? event
18
- : { name: key, handler: event };
19
- el = isFunction(el) ? el.call(instance, instance) : el || instance.$el;
20
-
21
- if (!el || (isArray(el) && !el.length) || (filter && !filter.call(instance, instance))) {
15
+ function registerEvent(instance, { name, el, handler, capture, passive, delegate, filter, self }) {
16
+ if (filter && !filter.call(instance, instance)) {
22
17
  return;
23
18
  }
24
19
 
25
20
  instance._disconnect.push(
26
21
  on(
27
- el,
22
+ el ? el.call(instance, instance) : instance.$el,
28
23
  name,
29
- delegate ? (isString(delegate) ? delegate : delegate.call(instance, instance)) : null,
30
- isString(handler) ? instance[handler] : handler.bind(instance),
31
- { passive, capture, self },
24
+ delegate?.call(instance, instance),
25
+ handler.bind(instance),
26
+ {
27
+ passive,
28
+ capture,
29
+ self,
30
+ },
32
31
  ),
33
32
  );
34
33
  }
@@ -11,7 +11,7 @@ export default function (App) {
11
11
 
12
12
  instance.$options.el = el;
13
13
 
14
- if (document.contains(el)) {
14
+ if (el.isConnected) {
15
15
  callConnected(instance);
16
16
  }
17
17
  };
@@ -1,5 +1,6 @@
1
1
  import { css } from 'uikit-util';
2
- import Animations, { scale3d } from '../../mixin/internal/slideshow-animations';
2
+ import Animations from '../../mixin/internal/slideshow-animations';
3
+ import { scale3d } from './slideshow-animations';
3
4
 
4
5
  export default {
5
6
  ...Animations,
@@ -1,9 +1,5 @@
1
1
  import { css } from 'uikit-util';
2
- import Animations, {
3
- scale3d,
4
- translate,
5
- translated,
6
- } from '../../mixin/internal/slideshow-animations';
2
+ import Animations, { translate, translated } from '../../mixin/internal/slideshow-animations';
7
3
 
8
4
  export default {
9
5
  ...Animations,
@@ -98,3 +94,7 @@ export default {
98
94
  },
99
95
  },
100
96
  };
97
+
98
+ export function scale3d(value) {
99
+ return `scale3d(${value}, ${value}, 1)`;
100
+ }