@wikicasa-dev/components 2.6.7-alpha.4 → 2.6.7-alpha.7
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/assets/SwiperRootPrimitive2.css +1 -1
- package/dist/components/carousel/Primitive/SwiperRootPrimitive.d.ts +12 -2
- package/dist/components/carousel/Primitive/SwiperRootPrimitive.js +6 -6
- package/dist/components/carousel/Primitive/SwiperRootPrimitive.vue.js +1 -1
- package/dist/lazyModules/Swiper/Autoplay/index.js +1 -1
- package/dist/lazyModules/Swiper/Controller/index.js +1 -1
- package/dist/lazyModules/Swiper/Keyboard/index.js +1 -1
- package/dist/lazyModules/Swiper/Thumbs/index.js +1 -1
- package/dist/types/index.d.ts +1 -1
- package/package.json +1 -1
- /package/dist/assets/{swiper-thumbs.css → swiper-keyboard.css} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
.swiper.uikit-carousel[data-v-
|
|
1
|
+
.swiper.uikit-carousel[data-v-e22604af]{opacity:0}.swiper.uikit-carousel.is-initialized[data-v-e22604af]{opacity:1}
|
|
@@ -6,6 +6,16 @@ import { ClassTypeProp } from '../../../UIKit/types';
|
|
|
6
6
|
export declare const setLazyImagesLoaderKey: InjectionKey<(v: boolean) => void>;
|
|
7
7
|
export declare const addModuleDescriptorKey: InjectionKey<(m: Nullable<SwiperModuleDescriptor>) => void>;
|
|
8
8
|
export type SwiperRootPrimitiveProps = Omit<SwiperOptions, "pagination" | "navigation">;
|
|
9
|
+
export type SwiperRootPrimitiveEmits = {
|
|
10
|
+
moved: [{
|
|
11
|
+
activeIndex: number;
|
|
12
|
+
}];
|
|
13
|
+
click: [];
|
|
14
|
+
/**
|
|
15
|
+
* Fired right after Swiper initialization.
|
|
16
|
+
*/
|
|
17
|
+
init: [Swiper];
|
|
18
|
+
};
|
|
9
19
|
declare const _default: typeof __VLS_export;
|
|
10
20
|
export default _default;
|
|
11
21
|
declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{
|
|
@@ -16,7 +26,7 @@ declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{
|
|
|
16
26
|
updateSlidesPerView: (value: number) => void;
|
|
17
27
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
18
28
|
click: () => any;
|
|
19
|
-
init: () => any;
|
|
29
|
+
init: (args_0: Swiper) => any;
|
|
20
30
|
moved: (args_0: {
|
|
21
31
|
activeIndex: number;
|
|
22
32
|
}) => any;
|
|
@@ -25,7 +35,7 @@ declare const __VLS_export: __VLS_WithSlots<import('vue').DefineComponent<{
|
|
|
25
35
|
swiperOptions?: SwiperRootPrimitiveProps;
|
|
26
36
|
}> & Readonly<{
|
|
27
37
|
onClick?: (() => any) | undefined;
|
|
28
|
-
onInit?: (() => any) | undefined;
|
|
38
|
+
onInit?: ((args_0: Swiper) => any) | undefined;
|
|
29
39
|
onMoved?: ((args_0: {
|
|
30
40
|
activeIndex: number;
|
|
31
41
|
}) => any) | undefined;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import o from "./SwiperRootPrimitive.vue.js";
|
|
2
|
-
import { addModuleDescriptorKey as
|
|
2
|
+
import { addModuleDescriptorKey as d, setLazyImagesLoaderKey as f } from "./SwiperRootPrimitive.vue.js";
|
|
3
3
|
import '../../../assets/SwiperRootPrimitive2.css';import '../../../assets/SwiperRootPrimitive.css';/* empty css */
|
|
4
4
|
/* empty css */
|
|
5
|
-
import
|
|
6
|
-
const
|
|
5
|
+
import e from "../../../_virtual/_plugin-vue_export-helper.js";
|
|
6
|
+
const m = /* @__PURE__ */ e(o, [["__scopeId", "data-v-e22604af"]]);
|
|
7
7
|
export {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
8
|
+
d as addModuleDescriptorKey,
|
|
9
|
+
m as default,
|
|
10
|
+
f as setLazyImagesLoaderKey
|
|
11
11
|
};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -24,7 +24,7 @@ export type { BaseTabsContentProps } from '../UIKit/Tab/v2/BaseTabsContent';
|
|
|
24
24
|
export type { BaseTabsIndicatorProps } from '../UIKit/Tab/v2/BaseTabsIndicator';
|
|
25
25
|
export type { BaseTabsListProps } from '../UIKit/Tab/v2/BaseTabsList';
|
|
26
26
|
export type { BaseTabsTriggerProps } from '../UIKit/Tab/v2/BaseTabsTrigger';
|
|
27
|
-
export type { SwiperRootPrimitiveProps } from '../components/carousel/Primitive/SwiperRootPrimitive';
|
|
27
|
+
export type { SwiperRootPrimitiveProps, SwiperRootPrimitiveEmits, } from '../components/carousel/Primitive/SwiperRootPrimitive';
|
|
28
28
|
export type { SwiperPaginationPrimitiveProps } from '../components/carousel/Primitive/SwiperPaginationPrimitive';
|
|
29
29
|
export type { SwiperNavigationPrimitiveProps } from '../components/carousel/Primitive/SwiperNavigationPrimitive';
|
|
30
30
|
export type { SwiperSlideImagePrimitiveProps } from '../components/carousel/Primitive/SwiperSlideImagePrimitive';
|
package/package.json
CHANGED
|
File without changes
|