ywana-core8 0.1.74 → 0.1.75

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.1.74",
3
+ "version": "0.1.75",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -209,7 +209,7 @@ export const DropDown = (props) => {
209
209
 
210
210
  const title = editable ? <div className='row'>{props.label}<Icon className="decorator" icon="edit" size="small" /></div> : props.label
211
211
  return (
212
- <div className={`dropdown ${className}`}>
212
+ <div className={`dropdown ${className} ${id}`}>
213
213
  <TextField {...props} label={title} onClick={onFocus} value={label} onChange={change} onBlur={blur} readOnly={!predictive && !editable} />
214
214
  {!readOnly ? <Icon icon="expand_more" clickable size="small" action={toggle} /> : null}
215
215
  {renderOptions()}