From 8cbed2ec6f05ace14d748f4f2b2e8923f857b5e9 Mon Sep 17 00:00:00 2001 From: Mickael Lecoq Date: Wed, 30 Mar 2022 22:28:50 +0200 Subject: [PATCH] fix: #59 seeMoreContainerStyleSecondary is optional (#60) * fix: #59 seeMoreContainerStyleSecondary is optional * bump version to 2.3.5 --- index.d.ts | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index 1717901..6d3b77f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -16,7 +16,7 @@ export interface ReadMoreProps extends TextProps { seeMoreOverlapCount?: number; debounceSeeMoreCalc?: number; onReady?: () => void; - seeMoreContainerStyleSecondary: StyleProp; + seeMoreContainerStyleSecondary?: StyleProp; } declare const ReadMore: React.FC; export default ReadMore; \ No newline at end of file diff --git a/package.json b/package.json index 8fa31c0..a873f6e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@fawazahmed/react-native-read-more", - "version": "2.3.4", + "version": "2.3.5", "description": "A simple react native library to show large blocks of text in a condensed manner with the ability to collapse and expand.", "main": "dist/index.js", "types": "index.d.ts",