ywana-core8 0.0.711 → 0.0.712

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.711",
3
+ "version": "0.0.712",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -14,16 +14,18 @@ export const CollectionPage = (props) => {
14
14
  const {
15
15
  host, url, schema,
16
16
  layout,
17
- title,
17
+ title, actions,
18
18
  canFilter, customFilters,
19
19
  listGroupBy, listSearchBy, listItemRenderer,
20
- customEditor
20
+ customEditor,
21
21
  } = props
22
22
 
23
23
  return (
24
24
  <div className={`collection-page ${layout}`}>
25
25
  <CollectionContextProvider host={host} url={url}>
26
- <Header title={title} />
26
+ <Header title={title} >
27
+ {actions}
28
+ </Header>
27
29
  {canFilter ? <CollectionFilters schema={schema} >{customFilters}</CollectionFilters> : null}
28
30
  <CollectionList itemRenderer={listItemRenderer} groupBy={listGroupBy} searchBy={listSearchBy} />
29
31
  <CollectionEditor customEditor={customEditor} />
package/src/html/list.css CHANGED
@@ -6,7 +6,7 @@
6
6
  }
7
7
 
8
8
  .list.grouped {
9
- overflow: auto;
9
+ overflow: unset;
10
10
  }
11
11
 
12
12
  .list>header {