ywana-core8 0.0.170 → 0.0.171

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.170",
3
+ "version": "0.0.171",
4
4
  "description": "ywana-core8",
5
5
  "author": "Ernesto Roldan Garcia",
6
6
  "license": "MIT",
@@ -245,6 +245,8 @@ export const StringEditor = ({ field, value = '', onChange, content, outlined })
245
245
  return opts
246
246
  }
247
247
 
248
+ console.log('StringEditor: ', label, value, content )
249
+
248
250
  return (
249
251
  <div className='field-editor string-editor'>
250
252
  {
@@ -114,7 +114,8 @@ input:read-only ~ label,
114
114
  .dropdown>.textfield-outlined>.icon {
115
115
  position: absolute;
116
116
  top: 1.7rem;
117
- right: 4rem;
117
+ right: 2rem;
118
+ color: rgba(150,150,150,1);
118
119
  }
119
120
 
120
121
  .dropdown>menu {
package/src/html/tree.css CHANGED
@@ -13,12 +13,12 @@
13
13
  display: flex;
14
14
  align-items: center;
15
15
  font: 1rem;
16
- color: rgba(0,0,0,.7);
16
+ color: var(--text-color-light);
17
17
  }
18
18
 
19
19
  .tree-item:hover {
20
20
  cursor: pointer;
21
- background-color: rgba(200,200,200,.7);
21
+ background-color: var(--background-color);
22
22
  font-weight: 500;
23
23
  }
24
24