mimir-ui-kit 1.38.5 → 1.38.7

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,13 @@ import { ReactNode } from 'react';
2
2
  import { SwiperProps } from 'swiper/react';
3
3
  import { EProgressBarPosition } from './constants';
4
4
 
5
+ type TSlideImage = {
6
+ image?: string;
7
+ imageDesktop?: string;
8
+ imageMobile?: string;
9
+ url?: string;
10
+ id?: number;
11
+ };
5
12
  type TProps = SwiperProps & {
6
13
  /**
7
14
  * Задержка перехода между слайдами
@@ -11,6 +18,14 @@ type TProps = SwiperProps & {
11
18
  * Ширина пагинации слайдера на весь размер родительского контейнера
12
19
  */
13
20
  isFullPaginationWidth?: boolean;
21
+ /**
22
+ * Показывать стрелки навигации и количество слайдов.
23
+ */
24
+ needNavigation?: boolean;
25
+ /**
26
+ * Функция, которая будет вызвана при клике на слайд.
27
+ */
28
+ onSlideClick?: VoidFunction;
14
29
  /**
15
30
  * Положение прогресс бара.
16
31
  */
@@ -35,16 +50,14 @@ type TProps = SwiperProps & {
35
50
  * Дополнительные классы для картинок
36
51
  */
37
52
  imageClassName?: string;
53
+ /**
54
+ * Контент для слайдера.
55
+ */
56
+ children?: ReactNode | ((props: TSlideImage) => ReactNode);
38
57
  /**
39
58
  * Массив данных для отрисовки слайдов.
40
59
  */
41
- images?: {
42
- image?: string;
43
- imageDesktop?: string;
44
- imageMobile?: string;
45
- url?: string;
46
- id?: number;
47
- }[];
60
+ images?: TSlideImage[];
48
61
  };
49
- export default function Slider({ images, swiperClassName, slideClassName, imageClassName, progressBarPosition, isFullPaginationWidth, leftDescription, rightDescription, delay, ...props }: TProps): import("react/jsx-runtime").JSX.Element;
62
+ export default function Slider({ images, children, onSlideClick, swiperClassName, slideClassName, imageClassName, progressBarPosition, isFullPaginationWidth, needNavigation, leftDescription, rightDescription, delay, ...props }: TProps): import("react/jsx-runtime").JSX.Element;
50
63
  export {};