@cloud-ru/uikit-product-mobile-carousel 0.1.17 → 0.2.0

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 CHANGED
@@ -3,6 +3,26 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # 0.2.0 (2025-12-17)
7
+
8
+
9
+ ### Features
10
+
11
+ * **DOCDEV-2456:** moved useLocalStorage to utils pckg ([9809058](https://gitverse.ru/cloud-ru-tech/uikit-product/commits/98090588fc37da109dd01b9f2b89f0fe776df565))
12
+
13
+
14
+
15
+
16
+
17
+ ## 0.1.18 (2025-12-08)
18
+
19
+ ### Only dependencies have been changed
20
+ * [@cloud-ru/uikit-product-utils@8.0.2](https://gitverse.ru/cloud-ru-tech/uikit-product/-/blob/master/packages/utils/CHANGELOG.md)
21
+
22
+
23
+
24
+
25
+
6
26
  ## 0.1.17 (2025-11-24)
7
27
 
8
28
  ### Only dependencies have been changed
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@cloud-ru/uikit-product-mobile-carousel",
3
3
  "title": "Mobile Carousel",
4
- "version": "0.1.17",
4
+ "version": "0.2.0",
5
5
  "sideEffects": [
6
6
  "*.css",
7
7
  "*.woff",
@@ -36,7 +36,7 @@
36
36
  },
37
37
  "scripts": {},
38
38
  "dependencies": {
39
- "@cloud-ru/uikit-product-utils": "8.0.1",
39
+ "@cloud-ru/uikit-product-utils": "8.1.0",
40
40
  "@snack-uikit/carousel": "0.6.4",
41
41
  "@snack-uikit/pagination": "0.10.18",
42
42
  "classnames": "2.5.1",
@@ -45,5 +45,5 @@
45
45
  "devDependencies": {
46
46
  "@types/lodash.debounce": "4.0.9"
47
47
  },
48
- "gitHead": "8968606769e5da46db696dfa70d7ad999564388d"
48
+ "gitHead": "1a98d6d9bff32edcbb3f9b0be0a14dce3f2abe5d"
49
49
  }
@@ -132,7 +132,7 @@ export function ItemList({
132
132
  const isScrolledRight = () =>
133
133
  Boolean(
134
134
  containerRef.current &&
135
- containerRef.current.scrollWidth - containerRef.current.scrollLeft - containerRef.current.offsetWidth <= DELTA,
135
+ containerRef.current.scrollWidth - containerRef.current.scrollLeft - containerRef.current.offsetWidth <= DELTA,
136
136
  );
137
137
 
138
138
  const handleTouchStart = () => {