@commercetools-uikit/money-input 13.0.2 → 13.0.3
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/README.md +1 -1
- package/dist/commercetools-uikit-money-input.cjs.dev.js +5 -5
- package/dist/commercetools-uikit-money-input.cjs.prod.js +1 -1
- package/dist/commercetools-uikit-money-input.esm.js +5 -5
- package/dist/declarations/src/export-types.d.ts +1 -0
- package/dist/declarations/src/index.d.ts +1 -0
- package/dist/declarations/src/money-input.d.ts +6 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ export default Example;
|
|
|
62
62
|
| `isDisabled` | `boolean` | | | Indicates that the input cannot be modified (e.g not authorized, or changes currently saving). |
|
|
63
63
|
| `isReadOnly` | `boolean` | | | Indicates that the field is displaying read-only content |
|
|
64
64
|
| `isAutofocussed` | `boolean` | | | Focus the input on initial render |
|
|
65
|
-
| `onChange` | `Function`<br/>[See signature.](#signature-onChange) | ✅ | | Called with the event of the input or dropdown when either the currency or the amount have changed
|
|
65
|
+
| `onChange` | `Function`<br/>[See signature.](#signature-onChange) | ✅ | | Called with the event of the input or dropdown when either the currency or the amount have changed. |
|
|
66
66
|
| `menuPortalTarget` | `ReactSelectProps['menuPortalTarget']` | | | Dom element to portal the currency select menu to
<br>
[Props from React select was used](https://react-select.com/props) |
|
|
67
67
|
| `menuPortalZIndex` | `number` | | `1` | z-index value for the currency select menu portal |
|
|
68
68
|
| `menuShouldBlockScroll` | `ReactSelectProps['menuShouldBlockScroll']` | ✅ | | whether the menu should block scroll while open
<br>
[Props from React select was used](https://react-select.com/props) |
|