From 7687cd23aa12ca0efe062d03b03a46481467c294 Mon Sep 17 00:00:00 2001 From: Marco Cesarato Date: Mon, 21 Jun 2021 23:35:29 +0200 Subject: [PATCH] docs(props): add button text props --- PROPS.md | 1 + README.md | 1 + 2 files changed, 2 insertions(+) diff --git a/PROPS.md b/PROPS.md index 3148b75..2a4cf08 100644 --- a/PROPS.md +++ b/PROPS.md @@ -74,6 +74,7 @@ | `step` | Value to increment or decrement the current spinner value | String
Number | `1` | | | `style` | Container style | Object | | Could overwrite other props | | `speed` | Speed acceleration ratio of increase or decrease `onLongPress` | Number | `7` | (value from `1` to `10`) | +| `buttonTextProps` | Customized text button props | Object | `null` | | | `textColor` | Custom number color | String | Auto | | | `type` | Type of spinner | String | `int` | Can be `int` or `real`/`float`... | | `typingTime` | Time before debounce and trigger `onChange` event | Number | `750` | | diff --git a/README.md b/README.md index 6a993c1..beaca0f 100644 --- a/README.md +++ b/README.md @@ -141,6 +141,7 @@ Check the "[Props List](PROPS.md)" file to have the complete list of component p | `step` | Value to increment or decrement the current spinner value | String
Number | `1` | | | `longStep` | Value to increment or decrement the current spinner value `onLongPress` | String
Number | `step` | | | `speed` | Speed acceleration ratio of increase or decrease `onLongPress` | Number | `7` | (value from `1` to `10`) | +| `buttonTextProps` | Customized text button props | Object | `null` | | | `typingTime` | Time before debounce and trigger `onChange` event | Number | `750` | | | `type` | Type of spinner | String | `int` | Can be `int` or `real`/`float`... | | `value` | Controlled value of the Spinner | String
Number | `0` | |