@startupjs-ui/scroll-view 0.1.5 → 0.1.16

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,22 @@
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.1.16](https://github.com/startupjs/startupjs-ui/compare/v0.1.15...v0.1.16) (2026-02-10)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/scroll-view
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.11](https://github.com/startupjs/startupjs-ui/compare/v0.1.10...v0.1.11) (2026-01-20)
15
+
16
+ **Note:** Version bump only for package @startupjs-ui/scroll-view
17
+
18
+
19
+
20
+
21
+
6
22
  ## [0.1.5](https://github.com/startupjs/startupjs-ui/compare/v0.1.4...v0.1.5) (2025-12-29)
7
23
 
8
24
  **Note:** Version bump only for package @startupjs-ui/scroll-view
package/README.mdx CHANGED
@@ -5,7 +5,9 @@ import Span from '@startupjs-ui/span'
5
5
 
6
6
  # ScrollView
7
7
 
8
- Reexported from [React Native](https://reactnative.dev/docs/scrollview) and [React Native Web](https://necolas.github.io/react-native-web/docs/scroll-view/).
8
+ A themed wrapper around the React Native [ScrollView](https://reactnative.dev/docs/scrollview) (also compatible with [React Native Web](https://necolas.github.io/react-native-web/docs/scroll-view/)). It supports all standard ScrollView props and adds the `full` prop to expand the content container to the full available height.
9
+
10
+ The component also accepts a `style` prop for custom styles, `children` for the scrollable content, and `ref` for imperative access to the underlying ScrollView instance.
9
11
 
10
12
  ```jsx
11
13
  import { ScrollView } from 'startupjs-ui'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/scroll-view",
3
- "version": "0.1.5",
3
+ "version": "0.1.16",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -8,12 +8,12 @@
8
8
  "types": "index.d.ts",
9
9
  "type": "module",
10
10
  "dependencies": {
11
- "@startupjs-ui/core": "^0.1.5"
11
+ "@startupjs-ui/core": "^0.1.11"
12
12
  },
13
13
  "peerDependencies": {
14
14
  "react": "*",
15
15
  "react-native": "*",
16
16
  "startupjs": "*"
17
17
  },
18
- "gitHead": "1b90893dc24a9b3ffde1284c58996b42e98913c6"
18
+ "gitHead": "9943aa3566d5d80f5b404473906eb3c0611f9ee5"
19
19
  }