ywana-core8 0.0.983 → 0.0.984
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/dist/index.cjs +3 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.modern.js +3 -4
- package/dist/index.modern.js.map +1 -1
- package/dist/index.umd.js +3 -4
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/html/tree.js +1 -1
package/package.json
CHANGED
package/src/html/tree.js
CHANGED
@@ -32,7 +32,7 @@ export const TreeNode = ({ id, icon = 'folder', label, tooltip, open=false, chil
|
|
32
32
|
<details className="tree-node" open={open} >
|
33
33
|
<summary className="tree-item">
|
34
34
|
{ icon ? <Icon icon={icon} size="small" small /> : null }
|
35
|
-
<div className=
|
35
|
+
<div className={`label ${clickable}`} onClick={select} >{labelTxt}</div>
|
36
36
|
<div className="actions">{actions}</div>
|
37
37
|
</summary>
|
38
38
|
{children}
|