@wikicasa-dev/components 2.1.28-alpha.2 → 2.1.28-alpha.4
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/dist/lib/components/carousel/SwiperCarousel.vue.js +7 -7
- package/package.json +3 -3
- /package/dist/{lazyModules/Swiper → Swiper}/autoplay.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/controller.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/free-mode.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/keyboard.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/navigation.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/pagination.js +0 -0
- /package/dist/{lazyModules/Swiper → Swiper}/thumbs.js +0 -0
|
@@ -72,11 +72,11 @@ const te = ["id"], se = ["id", "data-cy"], ie = ["data-idx", "alt", "width", "he
|
|
|
72
72
|
};
|
|
73
73
|
return Y(async () => {
|
|
74
74
|
if (R(), W.value) {
|
|
75
|
-
const { Keyboard: t } = await import("../../../
|
|
75
|
+
const { Keyboard: t } = await import("../../../Swiper/keyboard.js");
|
|
76
76
|
a.swiperParams.modules?.push(t), a.swiperParams.keyboard = s.swiperOptions.keyboard;
|
|
77
77
|
}
|
|
78
78
|
if (I.value) {
|
|
79
|
-
const { Pagination: t } = await import("../../../
|
|
79
|
+
const { Pagination: t } = await import("../../../Swiper/pagination.js");
|
|
80
80
|
a.swiperParams.modules?.push(t), a.swiperParams.pagination = {
|
|
81
81
|
el: ".swiper-pagination",
|
|
82
82
|
renderFraction: (r, o) => `<div class="uikit-rounded-xs uikit-border-w-black uikit-border uikit-border-solid uikit-px-3 uikit-bg-white uikit-pt-[3px] uikit-pb-[3px]">
|
|
@@ -88,7 +88,7 @@ const te = ["id"], se = ["id", "data-cy"], ie = ["data-idx", "alt", "width", "he
|
|
|
88
88
|
};
|
|
89
89
|
}
|
|
90
90
|
if (C.value) {
|
|
91
|
-
const { Navigation: t } = await import("../../../
|
|
91
|
+
const { Navigation: t } = await import("../../../Swiper/navigation.js");
|
|
92
92
|
a.swiperParams.modules?.push(t);
|
|
93
93
|
const r = {
|
|
94
94
|
...s.swiperOptions.navigation.nextEl ?? {
|
|
@@ -104,7 +104,7 @@ const te = ["id"], se = ["id", "data-cy"], ie = ["data-idx", "alt", "width", "he
|
|
|
104
104
|
};
|
|
105
105
|
}
|
|
106
106
|
if (q.value) {
|
|
107
|
-
const { Autoplay: t } = await import("../../../
|
|
107
|
+
const { Autoplay: t } = await import("../../../Swiper/autoplay.js");
|
|
108
108
|
a.swiperParams.modules?.push(t), a.swiperParams.autoplay = s.swiperOptions.autoplay;
|
|
109
109
|
}
|
|
110
110
|
const e = {
|
|
@@ -121,9 +121,9 @@ const te = ["id"], se = ["id", "data-cy"], ie = ["data-idx", "alt", "width", "he
|
|
|
121
121
|
let i = null;
|
|
122
122
|
if (s.thumbSwiperOptions) {
|
|
123
123
|
const [t, r, o] = await Promise.all([
|
|
124
|
-
import("../../../
|
|
125
|
-
import("../../../
|
|
126
|
-
import("../../../
|
|
124
|
+
import("../../../Swiper/thumbs.js"),
|
|
125
|
+
import("../../../Swiper/free-mode.js"),
|
|
126
|
+
import("../../../Swiper/controller.js")
|
|
127
127
|
]);
|
|
128
128
|
a.swiperParams.modules?.push(t.Thumbs), a.swiperParams.modules?.push(o.Controller), i = new T(`#thumb_${p.value}`, {
|
|
129
129
|
...s.thumbSwiperOptions,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wikicasa-dev/components",
|
|
3
|
-
"version": "2.1.28-alpha.
|
|
3
|
+
"version": "2.1.28-alpha.4",
|
|
4
4
|
"description": "Wikicasa frontend components",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -43,10 +43,10 @@
|
|
|
43
43
|
"peerDependencies": {
|
|
44
44
|
"vue": "^3.5.0",
|
|
45
45
|
"date-fns": "^4.0.0",
|
|
46
|
-
"@wikicasa-dev/svg-icons": "^1.2.
|
|
46
|
+
"@wikicasa-dev/svg-icons": "^1.2.24-alpha.0",
|
|
47
47
|
"@wikicasa-dev/vue-composables": "^0.0.25",
|
|
48
48
|
"@wikicasa-dev/types": "^2.4.0",
|
|
49
|
-
"@wikicasa-dev/utilities": "^1.1.0"
|
|
49
|
+
"@wikicasa-dev/utilities": "^1.1.23-alpha.0"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
52
|
"chart.js": "4.5.1",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|