ywana-core8 0.0.155 → 0.0.156

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ywana-core8",
3
- "version": "0.0.155",
3
+ "version": "0.0.156",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -111,7 +111,7 @@ export const DropDown = (props) => {
111
111
  return (
112
112
  <div className="dropdown">
113
113
  <TextField {...props} onClick={toggle} value={label} onChange={change} />
114
- <Icon icon="expand_more" clickable size="small" action={toggle} />
114
+ {!readOnly ? <Icon icon="expand_more" clickable size="small" action={toggle} /> : null }
115
115
  {renderOptions()}
116
116
  </div>
117
117
  )