From c770151192bed28b92ab96ce09665cb1ab718883 Mon Sep 17 00:00:00 2001 From: bartoszboruta Date: Fri, 30 Jan 2026 14:23:30 +0100 Subject: [PATCH 1/2] chore: update voltra version in example app --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index a5a4b9e..3161e4c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "voltra", - "version": "1.0.1", + "version": "1.1.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "voltra", - "version": "1.0.1", + "version": "1.1.2", "license": "MIT", "dependencies": { "dedent": "^1.7.1", From 2e8ab85fe85e67706750ec2b40bf34a9d241c596 Mon Sep 17 00:00:00 2001 From: bartoszboruta Date: Fri, 30 Jan 2026 14:30:29 +0100 Subject: [PATCH 2/2] chore: add lineHeight to ios VoltraTextStyle --- src/styles/types.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/styles/types.ts b/src/styles/types.ts index 9dba3f8..ec26f07 100644 --- a/src/styles/types.ts +++ b/src/styles/types.ts @@ -46,7 +46,14 @@ export type VoltraViewStyle = Pick< export type VoltraTextStyle = VoltraViewStyle & Pick< RNTextStyle, - 'fontSize' | 'fontWeight' | 'fontFamily' | 'color' | 'letterSpacing' | 'fontVariant' | 'textDecorationLine' + 'fontSize' + | 'fontWeight' + | 'fontFamily' + | 'color' + | 'letterSpacing' + | 'fontVariant' + | 'textDecorationLine' + | 'lineHeight' > export type VoltraStyleProp = StyleProp