ywana-core8 0.0.425 → 0.0.426

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.425",
3
+ "version": "0.0.426",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -44,7 +44,6 @@ main.collection-page {
44
44
 
45
45
  .collection-page > article {
46
46
  display: flex;
47
- max-height: 50%;
48
47
  overflow: hidden;
49
48
  }
50
49
 
@@ -306,7 +306,7 @@ export const ListEditor = ({ field, value = [], onChange }) => {
306
306
 
307
307
  return (
308
308
  <div className="list-editor">
309
- <TokenField id={field.id} label={label} init={value} onChange={change} />
309
+ <TokenField id={field.id} label={label} tokens={value} onChange={change} />
310
310
  </div>
311
311
  )
312
312
  }