ywana-core8 0.0.710 → 0.0.711

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.710",
3
+ "version": "0.0.711",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -47,7 +47,7 @@ export const CollectionList = (props) => {
47
47
  {searchBy.length > 0 ? (
48
48
  <div className="search-box">
49
49
  <Icon icon="search" size="small" />
50
- <TextField placeholder="Search" onChange={changeSearch} outlined />
50
+ <TextField onChange={changeSearch} outlined />
51
51
  </div>
52
52
  ) : null}
53
53
  </div>
package/src/html/list.css CHANGED
@@ -5,6 +5,10 @@
5
5
  flex-direction: column;
6
6
  }
7
7
 
8
+ .list.grouped {
9
+ overflow: auto;
10
+ }
11
+
8
12
  .list>header {
9
13
  padding: .5rem 0 0 1.5rem;
10
14
  color: var(--text-color-light);
@@ -22,6 +26,10 @@
22
26
  flex-direction: column;
23
27
  }
24
28
 
29
+ .list.grouped>ul {
30
+ overflow: none;
31
+ }
32
+
25
33
  .list > ul li {
26
34
  flex: 0;
27
35
  overflow: hidden;
package/src/html/list.js CHANGED
@@ -41,7 +41,7 @@ const GroupedList = (props) => {
41
41
  }, [])
42
42
 
43
43
  return (
44
- <div className="list">
44
+ <div className="list grouped">
45
45
  {groups.map(group => (
46
46
  <Fragment key={group.name}>
47
47
  <header key={`${group.name}-header`}><Text>{group.name}</Text></header>