@opendata-ai/openchart-vanilla 2.3.1 → 2.3.2

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@opendata-ai/openchart-vanilla",
3
- "version": "2.3.1",
3
+ "version": "2.3.2",
4
4
  "description": "Vanilla JS renderer for openchart: SVG charts, HTML tables, force-directed graphs",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Riley Hilliard",
@@ -46,8 +46,8 @@
46
46
  "typecheck": "tsc --noEmit"
47
47
  },
48
48
  "dependencies": {
49
- "@opendata-ai/openchart-core": "2.3.1",
50
- "@opendata-ai/openchart-engine": "2.3.1",
49
+ "@opendata-ai/openchart-core": "2.3.2",
50
+ "@opendata-ai/openchart-engine": "2.3.2",
51
51
  "d3-force": "^3.0.0",
52
52
  "d3-quadtree": "^3.0.1"
53
53
  },
@@ -354,7 +354,7 @@ export function renderTable(layout: TableLayout, container: HTMLElement): HTMLEl
354
354
  brandLink.href = 'https://tryopendata.ai';
355
355
  brandLink.target = '_blank';
356
356
  brandLink.rel = 'noopener';
357
- brandLink.style.cssText = `font-size: 20px; color: ${brandColor}; opacity: 0.55; text-decoration: none; font-family: ${theme ? theme.fonts.family : 'sans-serif'};`;
357
+ brandLink.style.cssText = `font-size: 20px; font-weight: 600; color: ${brandColor}; opacity: 0.55; text-decoration: none; font-family: ${theme ? theme.fonts.family : 'sans-serif'};`;
358
358
  brandLink.textContent = 'OpenData';
359
359
  brand.appendChild(brandLink);
360
360
  wrapper.appendChild(brand);