ywana-core8 0.0.528 → 0.0.529

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.528",
3
+ "version": "0.0.529",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -64,13 +64,13 @@ export const CollectionPage = (props) => {
64
64
  <Button icon="refresh" label="Reload" action={reload} />
65
65
  {renderActions()}
66
66
  </Header>
67
- <menu className="collection-page">
67
+ <menu className={`collection-page ${className}`}>
68
68
  <Header title={<Text>Lista de {name}</Text>} >
69
69
  </Header>
70
70
  {canFilter ? <CollectionFilters schema={schema}/> : null }
71
71
  {levels ? <CollectionTree icon={icon} levels={levels} onSelect={onSelect} sorter={sorter}/> : <CollectionList groupBy={groupBy} onSelect={onSelect}/>}
72
72
  </menu>
73
- <main key={id} className="collection-page">
73
+ <main key={id} className={`collection-page ${className}`}>
74
74
  <CollectionEditor icon={icon} schema={schema} layout={editor} autosave={autosave} delay={delay} />
75
75
  {children ? <article>{children}</article> : null}
76
76
  </main>