ywana-core8 0.0.624 → 0.0.625

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.624",
3
+ "version": "0.0.625",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -301,7 +301,7 @@ export const StringEditor = ({ field, value = '', onChange, content, outlined })
301
301
  return <TokenField id={id} label={label} onChange={change} options={buildOptions()} tokens={value} />
302
302
  default:
303
303
  return options ? (
304
- <DropDown outlined={outlined} id={id} label={label} value={value} onChange={change} options={buildOptions()} readOnly={!editable} predictive={predictive} />
304
+ <DropDown outlined={outlined} id={id} label={label} value={value} onChange={change} options={buildOptions()} readOnly={!editable} predictive={predictive} editable={editable} />
305
305
  ) : multivalue ? (
306
306
  <TokenField id={id} label={label} onChange={change} readOnly={!editable} />
307
307
  ) : (