@startupjs-ui/layout 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/layout
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/layout
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/layout
package/README.mdx CHANGED
@@ -7,13 +7,12 @@ import './index.mdx.cssx.styl'
7
7
 
8
8
  # Layout
9
9
 
10
- `Layout` serves as the root element of the application. It purpose is to render content within the safe area boundaries of a device. Also it displays a [StatusBar](https://reactnative.dev/docs/statusbar) for `android` & `ios` native apps.
10
+ Layout serves as the root element of your application. Its purpose is to render content within the safe area boundaries of a device. It also displays a [StatusBar](https://reactnative.dev/docs/statusbar) on Android and iOS native apps.
11
11
 
12
12
  ```jsx
13
13
  import { Layout } from 'startupjs-ui'
14
14
  ```
15
15
 
16
-
17
16
  ## Simple example
18
17
 
19
18
  ```jsx example
@@ -29,6 +28,11 @@ return (
29
28
  )
30
29
  ```
31
30
 
31
+ ## Props
32
+
33
+ - **style** -- custom styles applied to the root safe area view
34
+ - **children** -- the content rendered inside the layout
35
+
32
36
  ## Sandbox
33
37
 
34
38
  <Sandbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@startupjs-ui/layout",
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
  }