@bicharts/chart-host 0.5.39 → 0.5.41

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.
@@ -112,7 +112,7 @@ function resolveOptions(p2) {
112
112
  // synced; only an explicit false switches it.
113
113
  flipSync: p2.flipSync === void 0 || p2.flipSync === null ? true : !!p2.flipSync,
114
114
  // WHERE the controls live, which is a different question from whether the cards move
115
- // together (Joel 2026-08-13: "the ability to flip individual cards shouldn't necessarily
115
+ // together (2026-08-13: "the ability to flip individual cards shouldn't necessarily
116
116
  // stop being able to flip all together too"). Resolution order matters and is the whole
117
117
  // back-compat story:
118
118
  // 1. an explicit, recognised flipMode wins;
package/dist/index.mjs CHANGED
@@ -47,7 +47,7 @@ import {
47
47
  requiredD3Plugins,
48
48
  resolveOptions,
49
49
  stripEsmExports
50
- } from "./chunk-XEVWH2RK.mjs";
50
+ } from "./chunk-BMYEYUEN.mjs";
51
51
  import "./chunk-A2GMXZP7.mjs";
52
52
 
53
53
  // src/trivial.ts
package/dist/react.mjs CHANGED
@@ -4,7 +4,7 @@ import {
4
4
  createChartHost,
5
5
  geoFromCache,
6
6
  loadGeo
7
- } from "./chunk-XEVWH2RK.mjs";
7
+ } from "./chunk-BMYEYUEN.mjs";
8
8
  import "./chunk-A2GMXZP7.mjs";
9
9
 
10
10
  // src/react.tsx
@@ -1,4 +1,4 @@
1
- export * from "./contract";
1
+ export { HOST_CONTRACT_VERSION, GEO_POINT_PRECISIONS, MARK_CLASS, LEGEND_MARK_CLASS, AXIS_FILTER_CLASS, ROW_IDX_ATTR, XFILTER_REFRESH_EVENT, CONTAINER_SLOT_ANIM_STOP, CONTAINER_SLOT_XF_CLEAR, CONTAINER_SLOT_INITIAL_XF_MARK, CONTAINER_SLOT_UI_STATE, HOST_CONTAINER_CLASS, SELECTION_ACTIVE_CLASS, MARK_SELECTED_CLASS, ACTIVE_TICK_CLASS, DIM_OPACITY_VAR, DIM_OPACITY_DEFAULT, chartOwnsTimeline, periodTickSuppressesFeedback, ANIM_PLAY_SPEED_DEFAULT, ANIM_PLAY_SPEED_MIN, ANIM_PLAY_SPEED_MAX, ANIM_LOOP_DELAY_DEFAULT, ANIM_LOOP_DELAY_MIN, ANIM_MAX_IDEAL_FRAMES_DEFAULT, ANIM_MAX_IDEAL_FRAMES_MIN, ANIM_MAX_IDEAL_FRAMES_MAX, COLOR_SCALE_SELF_CLAMP_PCT_DEFAULT, COLOR_SCALE_SELF_CLAMP_PCT_MIN, COLOR_SCALE_SELF_CLAMP_PCT_MAX, FLIP_MODE_DEFAULT, type GeoPointPrecision, type GeoMapKind, type TimelineStyle, type FlipMode, type ColorScaleScope, type RenderOptions, } from "./contract";
2
2
  export { resolveOptions, type ResolveOptionsInput } from "./defaults";
3
3
  export { loadGeo, geoFromCache, registerGeo, registerGeoAsset, geoAssetFor, clearGeoCache, type GeoAssetName, } from "./geoLazy";
4
4
  /** REPLACE the bundled city gazetteer with another packed table. Rarely needed — see the
@@ -44,7 +44,7 @@ export interface RenderPayload {
44
44
  * reason ("only 95.5% of values are country identifiers") and no way to say it.
45
45
  *
46
46
  * Present whenever a point binding was attempted and something was refused, whether or not
47
- * a map came out of it. Joel 2026-08-02: "be sure to provide feedback in the output that
47
+ * a map came out of it. 2026-08-02: "be sure to provide feedback in the output that
48
48
  * helps call out exceptions / decisions like this, if possible."
49
49
  */
50
50
  geoPointRefused?: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bicharts/chart-host",
3
- "version": "0.5.39",
3
+ "version": "0.5.41",
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",