uikit 3.21.14-dev.028df7be8 → 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.
- package/CHANGELOG.md +34 -0
- package/dist/css/uikit-core-rtl.css +233 -85
- package/dist/css/uikit-core-rtl.min.css +1 -1
- package/dist/css/uikit-core.css +233 -85
- package/dist/css/uikit-core.min.css +1 -1
- package/dist/css/uikit-rtl.css +237 -81
- package/dist/css/uikit-rtl.min.css +1 -1
- package/dist/css/uikit.css +237 -81
- package/dist/css/uikit.min.css +1 -1
- package/dist/js/components/countdown.js +1 -1
- package/dist/js/components/countdown.min.js +1 -1
- package/dist/js/components/filter.js +2 -11
- package/dist/js/components/filter.min.js +1 -1
- package/dist/js/components/lightbox-panel.js +425 -126
- package/dist/js/components/lightbox-panel.min.js +1 -1
- package/dist/js/components/lightbox.js +442 -131
- package/dist/js/components/lightbox.min.js +1 -1
- package/dist/js/components/notification.js +1 -1
- package/dist/js/components/notification.min.js +1 -1
- package/dist/js/components/parallax.js +2 -2
- package/dist/js/components/parallax.min.js +1 -1
- package/dist/js/components/slider-parallax.js +2 -2
- package/dist/js/components/slider-parallax.min.js +1 -1
- package/dist/js/components/slider.js +17 -27
- package/dist/js/components/slider.min.js +1 -1
- package/dist/js/components/slideshow-parallax.js +2 -2
- package/dist/js/components/slideshow-parallax.min.js +1 -1
- package/dist/js/components/slideshow.js +22 -33
- package/dist/js/components/slideshow.min.js +1 -1
- package/dist/js/components/sortable.js +3 -3
- package/dist/js/components/sortable.min.js +1 -1
- package/dist/js/components/tooltip.js +8 -12
- package/dist/js/components/tooltip.min.js +1 -1
- package/dist/js/components/upload.js +1 -1
- package/dist/js/components/upload.min.js +1 -1
- package/dist/js/uikit-core.js +225 -221
- package/dist/js/uikit-core.min.js +1 -1
- package/dist/js/uikit-icons.js +20 -17
- package/dist/js/uikit-icons.min.js +1 -1
- package/dist/js/uikit.js +644 -530
- package/dist/js/uikit.min.js +1 -1
- package/package.json +2 -2
- package/src/images/icons/arrow-down-arrow-up.svg +6 -0
- package/src/images/icons/arrow-down.svg +3 -3
- package/src/images/icons/arrow-left.svg +3 -3
- package/src/images/icons/arrow-right.svg +3 -3
- package/src/images/icons/arrow-up-right.svg +3 -3
- package/src/images/icons/arrow-up.svg +3 -3
- package/src/images/icons/close-circle.svg +5 -0
- package/src/images/icons/cloud-download.svg +4 -4
- package/src/images/icons/cloud-upload.svg +4 -4
- package/src/images/icons/download.svg +4 -4
- package/src/images/icons/expand.svg +5 -5
- package/src/images/icons/link-external.svg +4 -4
- package/src/images/icons/pull.svg +4 -4
- package/src/images/icons/push.svg +3 -3
- package/src/images/icons/shrink.svg +5 -5
- package/src/images/icons/sign-in.svg +4 -3
- package/src/images/icons/sign-out.svg +4 -3
- package/src/images/icons/sorting.svg +6 -0
- package/src/images/icons/upload.svg +4 -4
- package/src/js/api/events.js +15 -14
- package/src/js/api/instance.js +1 -1
- package/src/js/components/internal/lightbox-animations.js +2 -1
- package/src/js/components/internal/slideshow-animations.js +5 -5
- package/src/js/components/lightbox-panel.js +180 -45
- package/src/js/components/lightbox.js +59 -6
- package/src/js/components/slideshow.js +1 -2
- package/src/js/components/sortable.js +2 -2
- package/src/js/core/grid.js +1 -1
- package/src/js/core/icon.js +2 -2
- package/src/js/core/img.js +3 -5
- package/src/js/core/navbar.js +6 -2
- package/src/js/core/scrollspy-nav.js +1 -1
- package/src/js/core/svg.js +8 -10
- package/src/js/core/video.js +4 -3
- package/src/js/mixin/internal/slideshow-animations.js +1 -6
- package/src/js/mixin/modal.js +1 -4
- package/src/js/mixin/slider-drag.js +5 -6
- package/src/js/mixin/slider-nav.js +1 -1
- package/src/js/mixin/slider.js +11 -13
- package/src/js/mixin/slideshow.js +1 -1
- package/src/js/mixin/togglable.js +7 -2
- package/src/js/util/dom.js +3 -1
- package/src/js/util/filter.js +3 -1
- package/src/js/util/player.js +0 -4
- package/src/less/components/background.less +1 -9
- package/src/less/components/breadcrumb.less +6 -2
- package/src/less/components/button.less +1 -1
- package/src/less/components/form-range.less +52 -0
- package/src/less/components/form.less +1 -1
- package/src/less/components/lightbox.less +57 -89
- package/src/less/components/margin.less +14 -0
- package/src/less/components/search.less +49 -23
- package/src/less/components/sticky.less +1 -10
- package/src/less/components/totop.less +1 -1
- package/src/less/components/transition.less +4 -4
- package/src/less/components/visibility.less +3 -2
- package/src/less/theme/form-range.less +12 -0
- package/src/less/theme/lightbox.less +2 -20
- package/src/less/theme/search.less +24 -10
- package/src/scss/components/background.scss +1 -9
- package/src/scss/components/breadcrumb.scss +6 -2
- package/src/scss/components/button.scss +1 -1
- package/src/scss/components/form-range.scss +12 -0
- package/src/scss/components/form.scss +1 -1
- package/src/scss/components/lightbox.scss +50 -77
- package/src/scss/components/margin.scss +13 -0
- package/src/scss/components/search.scss +30 -12
- package/src/scss/components/sticky.scss +1 -10
- package/src/scss/components/totop.scss +1 -1
- package/src/scss/components/transition.scss +4 -4
- package/src/scss/components/visibility.scss +3 -2
- package/src/scss/mixins-theme.scss +51 -12
- package/src/scss/mixins.scss +45 -6
- package/src/scss/theme/form-range.scss +10 -0
- package/src/scss/theme/lightbox.scss +2 -20
- package/src/scss/theme/search.scss +10 -6
- package/src/scss/variables-theme.scss +32 -20
- package/src/scss/variables.scss +29 -24
- package/tests/badge.html +2 -2
- package/tests/base.html +1 -1
- package/tests/breadcrumb.html +23 -5
- package/tests/card.html +24 -24
- package/tests/dropbar.html +15 -15
- package/tests/dropdown.html +6 -6
- package/tests/dropnav.html +100 -100
- package/tests/icon.html +8 -0
- package/tests/index.html +15 -15
- package/tests/lightbox.html +379 -28
- package/tests/margin.html +19 -0
- package/tests/nav.html +21 -21
- package/tests/navbar.html +292 -292
- package/tests/offcanvas.html +27 -27
- package/tests/placeholder.html +2 -2
- package/tests/slider.html +0 -1
- package/tests/slideshow.html +1 -1
- package/tests/sortable.html +5 -5
- package/tests/sticky-navbar.html +114 -114
- 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.14-dev.
|
|
5
|
+
"version": "3.21.14-dev.2e8a07c7e",
|
|
6
6
|
"main": "dist/js/uikit.js",
|
|
7
7
|
"style": "dist/css/uikit.css",
|
|
8
8
|
"sideEffects": [
|
|
@@ -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": "^
|
|
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
|
-
<
|
|
3
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
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,
|
|
3
|
-
<
|
|
4
|
-
<
|
|
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,
|
|
3
|
-
<
|
|
4
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<line
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path fill="none" stroke="#000" stroke-width="1.1" d="
|
|
5
|
-
<
|
|
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="
|
|
3
|
-
<
|
|
4
|
-
<
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<polyline fill="none" stroke="#000" points="
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<polyline fill="none" stroke="#000" points="6
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<path fill="none" stroke="#000" stroke-width="1.1" d="
|
|
5
|
-
<
|
|
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
|
-
<
|
|
4
|
-
|
|
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
|
|
3
|
-
<
|
|
4
|
-
|
|
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
|
-
<
|
|
3
|
-
<
|
|
4
|
-
<line fill="
|
|
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>
|
package/src/js/api/events.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { hasOwn,
|
|
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,27 +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]
|
|
9
|
+
registerEvent(instance, { name: key, handler: event[key] });
|
|
10
10
|
}
|
|
11
11
|
}
|
|
12
12
|
}
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
? event
|
|
18
|
-
: { name: key, handler: event };
|
|
19
|
-
el = el ? el.call(instance, instance) : 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
|
-
on(
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
21
|
+
on(
|
|
22
|
+
el ? el.call(instance, instance) : instance.$el,
|
|
23
|
+
name,
|
|
24
|
+
delegate?.call(instance, instance),
|
|
25
|
+
handler.bind(instance),
|
|
26
|
+
{
|
|
27
|
+
passive,
|
|
28
|
+
capture,
|
|
29
|
+
self,
|
|
30
|
+
},
|
|
31
|
+
),
|
|
31
32
|
);
|
|
32
33
|
}
|
package/src/js/api/instance.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { css } from 'uikit-util';
|
|
2
|
-
import 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
|
+
}
|