Package Exports
- @binar/tree-view-component
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@binar/tree-view-component) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
tree-view
Web component for TreeView implemented with LitElement.
Installation
npm i @binar/tree-view-component
Then, import tree-view into your element:
import 'tree-view-component/tree-view.js';
or in an html file:
<script type="module" src="/path/to/tree-view.js"></script>
OR
<script
type="module"
src="https://unpkg.com/@binar/tree-view-component"
></script>
Usage
In your LitElement class:
static get styles() {
return css`
:host {
display: block;
}
`;
}
static get properties() {
return {};
}
constructor() {
super();
}
render() {
return html`
<tree-view id="chart" key="id" value="1" ></tree-view>
`;
}
JS
var TreeData={
categories: {
label: "Categories",
id:"1",
children: {
"patient": {
label: "Patients",
id:"2",
children: {
"patient:janeDoe": {
label: "Jane Doe",
icon: "Woman.png",
id:"3",
children: {
"jd:plans": {
label: "Plans",
id:"4",
children: {
"plan:JDHI1": {
label: "Health Insurance JDHI1",
icon: "Plan.png",
id:"5"
},
"plan:JDDI1": {
label: "Dental Insurance JDDI1",
icon: "Plan.png",
id:"6"
},
"plan:JDVI1": {
label: "Vision Insurance JDVI1",
icon: "Plan.png",
id:"7"
},
},
},
},
},
"person:briannen": {
label: "Briannen Storm",
icon: "Woman.png",
id:"8",
children: {
"bs:plans": {
label: "Plans",
id:"9",
children: {
"plan:BSHI1": {
label: "Health Insurance BSHI1",
id:"10",
icon: "Plan.png",
},
"plan:BSDI1": {
label: "Dental Insurance BSDI1",
id:"11",
icon: "Plan.png",
},
"plan:BSVI1": {
label: "Vision Insurance BSVI1",
icon: "Plan.png",
id:"12",
},
"plan:BSVI1": {
label: "Vision Insurance BSVI1",
icon: "Plan.png",
id:"13",
},
"plan:BSVI1": {
label: "Vision Insurance BSVI1",
icon: "Plan.png",
id:"14",
},
},
},
},
},
"person": {
label: "Thomas Key",
icon: "Man.png",
id:"15",
children: {
"group:KTplans": {
label: "Plans",
id:"16",
children: {
"plan:TKHI1": {
label: "Health Insurance HI2",
icon: "Plan.png",
id:"17",
},
"plan:TKDI1": {
label: "Dental Insurance DI2",
icon: "Plan.png",
id:"18",
},
"plan:TKVI1": {
label: "Vision Insurance VI2",
icon: "Plan.png",
id:"19",
},
},
},
},
},
},
},
},
}
}
window.onload = function (e) {
let temp= document.getElementById('chart');
temp.setAttribute('data',JSON.stringify(TreeData))
console.log(temp);
};
Here Icon Came from :https://s3-us-west-2.amazonaws.com/s.cdpn.io/620300/
properties | Default value |
---|---|
data | [] |
key | "" |
value | "" |
#Events
Events | Default value |
---|---|
item-selected | (param)=>{} |