@bicharts/chart-host 0.5.70 → 0.5.71

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.
@@ -131,13 +131,23 @@ export declare function shouldOpenChooserOnGenerate(i: ChooserGateInput): boolea
131
131
  * a card that CLIPS, so past a certain smallness its buttons are simply not on screen and the
132
132
  * reader is trapped. A panel that flows inside a scrolling pane, with a wrapping button row,
133
133
  * cannot reach that state: swept across 63 pane sizes down to 200x120, every one stayed usable
134
- * - the footer wrapped from one line to three (38px to 86px) and stayed inside the panel, and
135
- * the list kept four or more rows because it carries its own max-height and scrolls.
136
- *
137
- * So a size clause here would not protect anybody; it would only switch the feature off for a
138
- * default task pane, which is narrower than the modal's floor. Two hosts, two layouts, two
139
- * honest answers - written next to each other so the difference reads as a decision rather than
140
- * as one of them having forgotten.
134
+ * - the footer wrapped from one line to three (38px to 86px) and stayed inside the panel.
135
+ *
136
+ * So a size clause here would not protect anybody. Two hosts, two layouts, two honest answers -
137
+ * written next to each other so the difference reads as a decision rather than as one of them
138
+ * having forgotten.
139
+ *
140
+ * TWO CLAIMS THIS COMMENT USED TO MAKE HAVE BEEN WITHDRAWN (2026-09-04), because the modal's
141
+ * re-measure discredits the sweep they came from rather than this function:
142
+ *
143
+ * * "a default task pane is narrower than the modal's floor" - it no longer is. The floor moved
144
+ * to 320x220 and an ordinary task pane clears it, so the two gates now agree on the pane that
145
+ * used to be the whole argument. The asymmetry survives only below the card's drawable
146
+ * minimum, which is the only place it ever described something real.
147
+ * * "the list kept four or more rows" - measured the same way the modal's rows were, which is
148
+ * to say without the DESCRIPTION every row carries. Whatever that number is, it is not four,
149
+ * and no claim is made here in its place. It was never the reason for having no size clause:
150
+ * the panel scrolls and the footer wraps, and THAT is the reason.
141
151
  */
142
152
  export declare function shouldOpenInlineChooserOnGenerate(i: {
143
153
  enabled: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bicharts/chart-host",
3
- "version": "0.5.70",
3
+ "version": "0.5.71",
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",