@startupjs-ui/carousel 0.2.0-alpha.1 → 0.2.0-alpha.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,14 @@
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-alpha.2](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.1...v0.2.0-alpha.2) (2026-04-20)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/carousel
9
+
10
+
11
+
12
+
13
+
6
14
  # [0.2.0-alpha.1](https://github.com/startupjs/startupjs-ui/compare/v0.2.0-alpha.0...v0.2.0-alpha.1) (2026-04-10)
7
15
 
8
16
  **Note:** Version bump only for package @startupjs-ui/carousel
package/index.tsx CHANGED
@@ -471,7 +471,7 @@ function Carousel ({
471
471
  return pug`
472
472
  View(
473
473
  key=index
474
- onLayout=e=> onLayoutChild(e, index)
474
+ onLayout=e => onLayoutChild(e, index)
475
475
  )= child
476
476
  `
477
477
  })
@@ -554,7 +554,7 @@ function Carousel ({
554
554
  - _dummy?.noop?.()
555
555
  Div.dot(
556
556
  key=index
557
- onPress=()=> toIndex(index)
557
+ onPress=() => toIndex(index)
558
558
  styleName={ dotActive: activeIndex === (isEndless ? (index + children.length) : index) }
559
559
  )
560
560
  `
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/carousel",
3
- "version": "0.2.0-alpha.1",
3
+ "version": "0.2.0-alpha.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -17,5 +17,5 @@
17
17
  "react-native": "*",
18
18
  "startupjs": "*"
19
19
  },
20
- "gitHead": "b48004779559b16c96a2a1995dab13b998eafce9"
20
+ "gitHead": "8a6ae7871e4c82f3e24d5911a9df42338e057e7a"
21
21
  }