@kiva/kv-components 3.5.1 → 3.5.2

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,17 @@
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
+ ## [3.5.2](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.5.1...@kiva/kv-components@3.5.2) (2022-09-15)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **KvCarousel:** slidesToScroll should not be 0 MARS-248 ([c2fc929](https://github.com/kiva/kv-ui-elements/commit/c2fc929fbdcf87a061b71fff14b91ab8064fc130))
12
+
13
+
14
+
15
+
16
+
6
17
  ## [3.5.1](https://github.com/kiva/kv-ui-elements/compare/@kiva/kv-components@3.5.0...@kiva/kv-components@3.5.1) (2022-09-13)
7
18
 
8
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kiva/kv-components",
3
- "version": "3.5.1",
3
+ "version": "3.5.2",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -68,5 +68,5 @@
68
68
  "optional": true
69
69
  }
70
70
  },
71
- "gitHead": "2d6daa94997131992d6c86f8367504c560ea9e20"
71
+ "gitHead": "0c86a3bf05ab8d27e7d48d7c6f9e67e559dc0155"
72
72
  }
@@ -265,7 +265,7 @@ export default {
265
265
  'resize',
266
266
  throttle(() => {
267
267
  embla.value.reInit({
268
- slidesToScroll: embla.value.slidesInView(true).length,
268
+ slidesToScroll: embla.value.slidesInView(true).length || 'auto',
269
269
  inViewThreshold: 0.9,
270
270
  });
271
271
  slides.value = embla.value.slideNodes();