@proximus/lavender-separator-native 0.1.0-alpha.5 → 0.1.0-beta.0

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/package.json CHANGED
@@ -1,41 +1,17 @@
1
1
  {
2
2
  "name": "@proximus/lavender-separator-native",
3
- "version": "0.1.0-alpha.5",
3
+ "version": "0.1.0-beta.0",
4
4
  "description": "Lavender separator component",
5
5
  "license": "MIT",
6
- "main": "src/index.ts",
6
+ "main": "dist/index.js",
7
+ "files": [
8
+ "dist"
9
+ ],
7
10
  "type": "module",
8
- "scripts": {
9
- "clean": "rm -rf dist",
10
- "transform-package-json": "node ../../../scripts/tranformPackageJson.js package.json dist/far/away",
11
- "prepublish": "yarn clean && yarn transform-package-json && yarn build",
12
- "build": "npx tsc -p tsconfig.json"
13
- },
14
11
  "peerDependencies": {
15
- "@proximus/lavender-styling-native": "workspace:*"
16
- },
17
- "devDependencies": {
18
- "@proximus/lavender-styling-native": "0.1.0-alpha.5"
12
+ "@proximus/lavender-styling-native": "*"
19
13
  },
20
14
  "publishConfig": {
21
15
  "access": "public"
22
- },
23
- "lerna": {
24
- "command": {
25
- "publish": {
26
- "assets": [
27
- {
28
- "from": "dist/far/away/package.json",
29
- "to": "."
30
- },
31
- "dist/*.js",
32
- "dist/*.d.ts",
33
- "dist/*.d.ts.map",
34
- "src",
35
- "package.json"
36
- ]
37
- }
38
- }
39
- },
40
- "gitHead": "e50a17526561b3eafb159e36c737173956093e0d"
16
+ }
41
17
  }
package/CHANGELOG.md DELETED
@@ -1,14 +0,0 @@
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.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
-
8
- **Note:** Version bump only for package @proximus/lavender-separator-native
9
-
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)
11
-
12
- ### Bug Fixes
13
-
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))
@@ -1,32 +0,0 @@
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/src/Separator.tsx DELETED
@@ -1,25 +0,0 @@
1
- import { StyleProp, StyleSheet, View, ViewStyle } from 'react-native';
2
- import React from 'react';
3
- import { useTheme } from '@proximus/lavender-styling-native';
4
-
5
- export function PxSeparator({ style }: { style?: StyleProp<ViewStyle> }) {
6
- const { theme } = useTheme();
7
-
8
- return (
9
- <View
10
- style={[
11
- styles.separator,
12
- {
13
- backgroundColor: theme.t('ColorBorderMainDefault'),
14
- },
15
- ...(Array.isArray(style) ? style : [style]),
16
- ]}
17
- />
18
- );
19
- }
20
-
21
- const styles = StyleSheet.create({
22
- separator: {
23
- height: 1,
24
- },
25
- });
package/src/index.ts DELETED
@@ -1 +0,0 @@
1
- export * from './Separator';
package/tsconfig.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "extends": "../../../tsconfig.npm.json",
3
- "compilerOptions": {
4
- "outDir": "dist",
5
- },
6
- "include": ["src","../../../lib.d.ts"],
7
- "exclude": ["dist", "node_modules", "src/**/*.spec.tsx", "src/**/*.spec.ts"]
8
- }