@proximus/lavender-separator-native 0.1.0-alpha.2 → 0.1.0-alpha.5
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 +4 -14
- package/dist/Separator.js +18 -0
- package/dist/far/away/package.json +32 -0
- package/dist/index.js +1 -0
- package/package.json +12 -5
- package/tsconfig.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,22 +3,12 @@
|
|
|
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.0-alpha.
|
|
6
|
+
# [0.1.0-alpha.5](https://github.com/Pxs-Corporate/react-native-lavender/compare/@proximus/lavender-separator-native@0.1.0-alpha.4...@proximus/lavender-separator-native@0.1.0-alpha.5) (2025-09-26)
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
**Note:** Version bump only for package @proximus/lavender-separator-native
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
# [0.1.0-alpha.1](https://github.com/Pxs-Corporate/react-native-lavender/compare/@proximus/lavender-separator-native@0.1.0-alpha.0...@proximus/lavender-separator-native@0.1.0-alpha.1) (2025-08-13)
|
|
10
|
+
# [0.1.0-alpha.4](https://github.com/Pxs-Corporate/react-native-lavender/compare/@proximus/lavender-separator-native@0.1.0-alpha.3...@proximus/lavender-separator-native@0.1.0-alpha.4) (2025-09-25)
|
|
13
11
|
|
|
14
12
|
### Bug Fixes
|
|
15
13
|
|
|
16
|
-
- **BCRI-
|
|
17
|
-
|
|
18
|
-
# 0.1.0-alpha.0 (2025-08-13)
|
|
19
|
-
|
|
20
|
-
### Features
|
|
21
|
-
|
|
22
|
-
- **BCRI-3651640:** dialogbox module ([f81465e](https://github.com/Pxs-Corporate/react-native-lavender/commit/f81465ee7332fee42789700c468344ce3b3f5cc4))
|
|
23
|
-
- **BCRI-3660857:** cell components ([af9e45c](https://github.com/Pxs-Corporate/react-native-lavender/commit/af9e45cefc20d08d2338380ff4cd8cd6851abe24))
|
|
24
|
-
- **BCRI-4210372:** automatic versionning ([9c1f0a0](https://github.com/Pxs-Corporate/react-native-lavender/commit/9c1f0a00e19a9d1a277044ea627632032a674102))
|
|
14
|
+
- **BCRI-000000:** no free space on gh runner during build ([#27](https://github.com/Pxs-Corporate/react-native-lavender/issues/27)) ([a7c8604](https://github.com/Pxs-Corporate/react-native-lavender/commit/a7c86043b5cefcb10fd768d449c5718fbabe87ec))
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { StyleSheet, View } from 'react-native';
|
|
2
|
+
import React from 'react';
|
|
3
|
+
import { useTheme } from '@proximus/lavender-styling-native';
|
|
4
|
+
export function PxSeparator({ style }) {
|
|
5
|
+
const { theme } = useTheme();
|
|
6
|
+
return (React.createElement(View, { style: [
|
|
7
|
+
styles.separator,
|
|
8
|
+
{
|
|
9
|
+
backgroundColor: theme.t('ColorBorderMainDefault'),
|
|
10
|
+
},
|
|
11
|
+
...(Array.isArray(style) ? style : [style]),
|
|
12
|
+
] }));
|
|
13
|
+
}
|
|
14
|
+
const styles = StyleSheet.create({
|
|
15
|
+
separator: {
|
|
16
|
+
height: 1,
|
|
17
|
+
},
|
|
18
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@proximus/lavender-separator-native",
|
|
3
|
+
"version": "0.1.0-alpha.5",
|
|
4
|
+
"description": "Lavender separator component",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"peerDependencies": {
|
|
9
|
+
"@proximus/lavender-styling-native": "*"
|
|
10
|
+
},
|
|
11
|
+
"publishConfig": {
|
|
12
|
+
"access": "public"
|
|
13
|
+
},
|
|
14
|
+
"lerna": {
|
|
15
|
+
"command": {
|
|
16
|
+
"publish": {
|
|
17
|
+
"assets": [
|
|
18
|
+
{
|
|
19
|
+
"from": "dist/far/away/package.json",
|
|
20
|
+
"to": "."
|
|
21
|
+
},
|
|
22
|
+
"dist/*.js",
|
|
23
|
+
"dist/*.d.ts",
|
|
24
|
+
"dist/*.d.ts.map",
|
|
25
|
+
"src",
|
|
26
|
+
"package.json"
|
|
27
|
+
]
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
"gitHead": "e50a17526561b3eafb159e36c737173956093e0d"
|
|
32
|
+
}
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './Separator';
|
package/package.json
CHANGED
|
@@ -1,20 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@proximus/lavender-separator-native",
|
|
3
|
-
"version": "0.1.0-alpha.
|
|
3
|
+
"version": "0.1.0-alpha.5",
|
|
4
4
|
"description": "Lavender separator component",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "src/index.ts",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"scripts": {
|
|
9
9
|
"clean": "rm -rf dist",
|
|
10
|
-
"
|
|
10
|
+
"transform-package-json": "node ../../../scripts/tranformPackageJson.js package.json dist/far/away",
|
|
11
|
+
"prepublish": "yarn clean && yarn transform-package-json && yarn build",
|
|
11
12
|
"build": "npx tsc -p tsconfig.json"
|
|
12
13
|
},
|
|
13
14
|
"peerDependencies": {
|
|
14
15
|
"@proximus/lavender-styling-native": "workspace:*"
|
|
15
16
|
},
|
|
16
17
|
"devDependencies": {
|
|
17
|
-
"@proximus/lavender-styling-native": "0.1.0-alpha.
|
|
18
|
+
"@proximus/lavender-styling-native": "0.1.0-alpha.5"
|
|
18
19
|
},
|
|
19
20
|
"publishConfig": {
|
|
20
21
|
"access": "public"
|
|
@@ -23,12 +24,18 @@
|
|
|
23
24
|
"command": {
|
|
24
25
|
"publish": {
|
|
25
26
|
"assets": [
|
|
26
|
-
|
|
27
|
+
{
|
|
28
|
+
"from": "dist/far/away/package.json",
|
|
29
|
+
"to": "."
|
|
30
|
+
},
|
|
31
|
+
"dist/*.js",
|
|
32
|
+
"dist/*.d.ts",
|
|
33
|
+
"dist/*.d.ts.map",
|
|
27
34
|
"src",
|
|
28
35
|
"package.json"
|
|
29
36
|
]
|
|
30
37
|
}
|
|
31
38
|
}
|
|
32
39
|
},
|
|
33
|
-
"gitHead": "
|
|
40
|
+
"gitHead": "e50a17526561b3eafb159e36c737173956093e0d"
|
|
34
41
|
}
|
package/tsconfig.json
CHANGED