@bicharts/chart-host 0.5.64 → 0.5.65

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.
Files changed (2) hide show
  1. package/dist/index.mjs +1 -4
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -558,10 +558,7 @@ function askApplyImprovements(container, reason, opts = {}) {
558
558
  };
559
559
  no.addEventListener("click", () => finish(false));
560
560
  yes.addEventListener("click", () => finish(true));
561
- ov.addEventListener("click", (e) => {
562
- if (e.target === ov) finish(false);
563
- });
564
- card.addEventListener("click", (e) => e.stopPropagation());
561
+ ov.addEventListener("click", (e) => e.stopPropagation());
565
562
  doc.addEventListener("keydown", onKey, true);
566
563
  row.append(no, yes);
567
564
  card.append(head, why, cost, row);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bicharts/chart-host",
3
- "version": "0.5.64",
3
+ "version": "0.5.65",
4
4
  "description": "Run a BIC-generated D3 chart in any web host: compiles the generated render() function, applies the shared option defaults, resolves mark clicks (through tooltip overlays), owns the selection affordance, and translates row indices between cross-filtered charts. The same contract the BIC Power BI visual implements, minus Power BI. React bindings at @bicharts/chart-host/react.",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",