@commercetools-uikit/selectable-search-input 19.3.0 → 19.4.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/README.md +1 -0
- package/dist/commercetools-uikit-selectable-search-input.cjs.dev.js +52 -37
- package/dist/commercetools-uikit-selectable-search-input.cjs.prod.js +39 -28
- package/dist/commercetools-uikit-selectable-search-input.esm.js +53 -38
- package/dist/declarations/src/selectable-search-input.d.ts +2 -0
- package/package.json +9 -9
package/README.md
CHANGED
|
@@ -77,6 +77,7 @@ export default Example;
|
|
|
77
77
|
| `hasWarning` | `boolean` | | | Indicates if the input has warning values |
|
|
78
78
|
| `placeholder` | `string` | | | Placeholder text for the input |
|
|
79
79
|
| `isClearable` | `boolean` | | `true` | Indicates if the input should be cleared when the clear button is clicked.
Defaults to true. |
|
|
80
|
+
| `isCondensed` | `boolean` | | | Use this property to reduce the paddings of the component for a ui compact variant |
|
|
80
81
|
| `horizontalConstraint` | `union`<br/>Possible values:<br/>`10 , 11 , 12 , 13 , 14 , 15 , 16 , 'scale' , 'auto'` | | `'scale'` | Horizontal size limit of the input fields. |
|
|
81
82
|
| `options` | `union`<br/>Possible values:<br/>`TOption[] , TOptionObject[]` | | `[]` | Array of options that populate the select menu |
|
|
82
83
|
| `menuPortalZIndex` | `number` | | `1` | z-index value for the menu portal
<br>
Use in conjunction with `menuPortalTarget` |
|