From 86a6292d4a7fde09eeb1d97c461e8b1e1bd0d3ee Mon Sep 17 00:00:00 2001 From: Vladimir Kharlampidi Date: Tue, 24 Oct 2023 11:52:03 +0300 Subject: [PATCH] chore: docs --- src/types/modules/grid.d.ts | 2 +- src/types/swiper-options.d.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/types/modules/grid.d.ts b/src/types/modules/grid.d.ts index 24baa6c32..070b14a2d 100644 --- a/src/types/modules/grid.d.ts +++ b/src/types/modules/grid.d.ts @@ -13,7 +13,7 @@ export interface GridOptions { /** * Can be `'column'` or `'row'`. Defines how slides should fill rows, by column or by row * - * @note `row` fill is currently not compatible with loop mode (`loop: true`) + * @note if used with loop mode make sure number of slides is even specified in loop mode requirements, or enable `loopAddBlankSlides` parameter * * @default 'column' */ diff --git a/src/types/swiper-options.d.ts b/src/types/swiper-options.d.ts index 2bb9850e2..eec278de3 100644 --- a/src/types/swiper-options.d.ts +++ b/src/types/swiper-options.d.ts @@ -500,7 +500,7 @@ export interface SwiperOptions { touchMoveStopPropagation?: boolean; /** - * Enable to release Swiper events for swipe-back work in app. If set to `'prevent'` then it will prevent system swipe-back navigation instead + * Enable to release Swiper events for swipe-back work in app. If set to `'prevent'` then it will prevent system swipe-back navigation instead. This feature works only with "touch" events (and not pointer events), so it will work on iOS/Android devices and won't work on Windows devices with pointer (touch) events. * * @default false */ @@ -514,7 +514,7 @@ export interface SwiperOptions { edgeSwipeThreshold?: number; /** - * Enable to release touch events on slider edge position (beginning, end) to allow for further page scrolling + * Enable to release touch events on slider edge position (beginning, end) to allow for further page scrolling. This feature works only with "touch" events (and not pointer events), so it will work on iOS/Android devices and won't work on Windows devices with pointer events. Also `threshold` parameter must be set to `0` * * @default false */