@databiosphere/findable-ui 28.0.0 → 28.0.1

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.
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "28.0.0"
2
+ ".": "28.0.1"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [28.0.1](https://github.com/DataBiosphere/findable-ui/compare/v28.0.0...v28.0.1) (2025-04-30)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix observable plot y-scale warning caused by numeric strings ([#449](https://github.com/DataBiosphere/findable-ui/issues/449)) ([#450](https://github.com/DataBiosphere/findable-ui/issues/450)) ([53df97a](https://github.com/DataBiosphere/findable-ui/commit/53df97a8508c822aef48aac4c71646cfddc0b605))
9
+
3
10
  ## [28.0.0](https://github.com/DataBiosphere/findable-ui/compare/v27.0.0...v28.0.0) (2025-04-30)
4
11
 
5
12
 
@@ -85,6 +85,7 @@ export function getPlotOptions(selectCategoryValueViews, width) {
85
85
  paddingOuter: getYPaddingOuter(),
86
86
  tickFormat: () => "",
87
87
  tickSize: 0,
88
+ type: "band", // Treats number-like strings as categorical labels to prevent numeric scale warnings.
88
89
  },
89
90
  };
90
91
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databiosphere/findable-ui",
3
- "version": "28.0.0",
3
+ "version": "28.0.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
@@ -105,6 +105,7 @@ export function getPlotOptions(
105
105
  paddingOuter: getYPaddingOuter(),
106
106
  tickFormat: () => "",
107
107
  tickSize: 0,
108
+ type: "band", // Treats number-like strings as categorical labels to prevent numeric scale warnings.
108
109
  },
109
110
  };
110
111
  }