ywana-core8 0.0.570 → 0.0.571

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.570",
3
+ "version": "0.0.571",
4
4
  "description": "ywana-core8",
5
5
  "homepage": "https://ywana.github.io/workspace",
6
6
  "author": "Ernesto Roldan Garcia",
@@ -156,7 +156,6 @@ export const DropDown = (props) => {
156
156
  setOpen(false)
157
157
  const label = verbose ? option.label : ""
158
158
  setLabel(label)
159
- console.log("dd.select", value)
160
159
  if (onChange) onChange(id, next)
161
160
  }
162
161
 
@@ -24,7 +24,6 @@ export const TokenField = ({ id, label, tokens = [], readOnly, options, onChange
24
24
 
25
25
  function changeDropDown(fid, value) {
26
26
  const next = Array.isArray(tokens) ? tokens.concat(value) : [value]
27
- console.log("next", next)
28
27
  if (onChange) onChange(id, next)
29
28
  setValue('')
30
29
  }
@@ -48,7 +47,6 @@ export const TokenField = ({ id, label, tokens = [], readOnly, options, onChange
48
47
  }
49
48
 
50
49
  const tks = Array.isArray(tokens) ? tokens : []
51
- console.log("render", tks)
52
50
  return (
53
51
  <div className='tokenField'>
54
52
  <label>{label}</label>
package/src/site/site.css CHANGED
@@ -52,6 +52,10 @@
52
52
  width: 20rem;
53
53
  }
54
54
 
55
+ .site6>menu.min {
56
+ overflow: visible;
57
+ }
58
+
55
59
  .site6>menu>main {
56
60
  padding: .4rem;
57
61
  }
@@ -95,6 +99,15 @@
95
99
  align-items: center;
96
100
  }
97
101
 
102
+ .site6>menu.min>main {
103
+ flex: 1;
104
+ overflow-x: visible;
105
+ overflow-y: visible;
106
+ display: flex;
107
+ flex-direction: column;
108
+ align-items: center;
109
+ }
110
+
98
111
  .site6>main {
99
112
  grid-area: main;
100
113
  overflow: hidden;
package/src/site/site.js CHANGED
@@ -234,7 +234,7 @@ const SiteMenu = ({ logo, title, children, min }) => {
234
234
  const styleItem = id === page ? 'selected' : ''
235
235
  return (
236
236
  <div className={`site-menu-item ${styleItem}`} key={id} onClick={() => goto(id)}>
237
- <Tooltip text={title}>
237
+ <Tooltip text={title} top=".5rem" left="2rem">
238
238
  <Icon key={id} icon={icon} clickable action={() => goto(id)} />
239
239
  </Tooltip>
240
240
  {sideNav === 'max' ? <label>{title}</label> : null}