@startupjs-ui/layout 0.1.11 → 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 +8 -0
- package/README.mdx +6 -2
- package/package.json +2 -2
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.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
|
+
|
|
6
14
|
## [0.1.11](https://github.com/startupjs/startupjs-ui/compare/v0.1.10...v0.1.11) (2026-01-20)
|
|
7
15
|
|
|
8
16
|
**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
|
-
|
|
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.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
"react-native": "*",
|
|
16
16
|
"startupjs": "*"
|
|
17
17
|
},
|
|
18
|
-
"gitHead": "
|
|
18
|
+
"gitHead": "9943aa3566d5d80f5b404473906eb3c0611f9ee5"
|
|
19
19
|
}
|