@dataloop-ai/components 0.20.104 → 0.20.105

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": "@dataloop-ai/components",
3
- "version": "0.20.104",
3
+ "version": "0.20.105",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -273,7 +273,7 @@ export default defineComponent({
273
273
  const getCellBackground = (value: number = 1): string => {
274
274
  return (
275
275
  (isDark.value ? '#7c8cff' : '#3452ff') +
276
- Math.round(value * 255).toString()
276
+ Math.round(value * 255).toString(16)
277
277
  )
278
278
  }
279
279