async function navio(data, _options = {}) {
const options = {
height: 300,
attribs: null,
x0: 0,
y0: 100,
maxNumDistictForCategorical: 10,
maxNumDistictForOrdered: 90,
howManyItemsShouldSearchForNotNull: 100,
margin: 10,
levelsSeparation: 40,
divisionsColor: "white",
levelConnectionsColor: "rgba(205, 220, 163, 0.5)",
divisionsThreshold: 4,
fmtCounts: d3.format(",.0d"),
legendFont: "14px sans-serif",
nestedFilters: true,
showAttribTitles: true,
attribWidth: 15,
attribRotation: -45,
attribFontSize: 13,
attribFontSizeSelected: 32,
filterFontSize: 10,
tooltipFontSize: 12,
tooltipBgColor: "#b2ddf1",
tooltipMargin: 50,
tooltipArrowSize: 10,
digitsForText: 2,
addAllAttribsRecursionLevel: Infinity,
addAllAttribsIncludeObjects: true,
addAllAttribsIncludeArrays: true,
nullColor: "#ffedfd",
defaultColorInterpolator: d3.interpolateBlues,
defaultColorInterpolatorDate: d3.interpolatePurples,
defaultColorInterpolatorDiverging: d3.interpolateBrBG,
defaultColorInterpolatorOrdered: d3.interpolateOranges,
defaultColorInterpolatorText: d3.interpolateGreys,
defaultColorRangeBoolean: ["#a1d76a", "#e9a3c9", "white"],
defaultColorRangeSelected: ["white", "#b5cf6b"],
defaultColorCategorical: d3.schemeCategory10,
showSelectedAttrib: true,
showSequenceIDAttrib: true,
..._options
};
let div = html`<div style="display:block; overflow-x:scroll"></div>`;
const nv = navio_npm(d3.select(div), options.height);
for (let opt in options) {
if (opt === "id") {
nv.id(options[opt]);
} else if (opt !== "attribs") {
nv[opt] = options[opt];
}
}
nv.data(data);
if (options.attribs) {
nv.addAllAttribs(options.attribs);
} else {
nv.addAllAttribs();
}
nv.updateCallback(() => {
div.value = nv.getVisible();
div.dispatchEvent(new Event("input", { bubbles: true }));
});
div.value = data;
div.nv = nv;
return div;
}