@startupjs-ui/flat-list 0.1.3

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 ADDED
@@ -0,0 +1,19 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ ## [0.1.3](https://github.com/startupjs/startupjs-ui/compare/v0.1.2...v0.1.3) (2025-12-29)
7
+
8
+ **Note:** Version bump only for package @startupjs-ui/flat-list
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.1.2](https://github.com/startupjs/startupjs-ui/compare/v0.1.1...v0.1.2) (2025-12-29)
15
+
16
+
17
+ ### Features
18
+
19
+ * **flat-list:** refactor FlatList component ([768664f](https://github.com/startupjs/startupjs-ui/commit/768664fdde6592ed91327574c328aa8f48da14ad))
package/README.mdx ADDED
@@ -0,0 +1,7 @@
1
+ # FlatList
2
+
3
+ Reexported from [React Native](https://reactnative.dev/docs/flatlist) and [React Native Web](https://necolas.github.io/react-native-web/docs/lists/).
4
+
5
+ ```jsx
6
+ import { FlatList } from 'startupjs-ui'
7
+ ```
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ // DO NOT MODIFY THIS FILE - IT IS AUTOMATICALLY GENERATED ON COMMITS.
3
+
4
+ export { FlatList as default } from 'react-native';
package/index.tsx ADDED
@@ -0,0 +1 @@
1
+ export { FlatList as default } from 'react-native'
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@startupjs-ui/flat-list",
3
+ "version": "0.1.3",
4
+ "publishConfig": {
5
+ "access": "public"
6
+ },
7
+ "main": "index.tsx",
8
+ "types": "index.d.ts",
9
+ "type": "module",
10
+ "dependencies": {
11
+ "@startupjs-ui/core": "^0.1.3"
12
+ },
13
+ "peerDependencies": {
14
+ "react": "*",
15
+ "react-native": "*",
16
+ "startupjs": "*"
17
+ },
18
+ "gitHead": "fd964ebc3892d3dd0a6c85438c0af619cc50c3f0"
19
+ }