@dataloop-ai/components 0.19.100 → 0.19.102

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.19.100",
3
+ "version": "0.19.102",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -25,6 +25,7 @@
25
25
  "@dataloop-ai/icons": "^3.0.18",
26
26
  "@types/flat": "^5.0.2",
27
27
  "@types/lodash": "^4.14.184",
28
+ "@types/sortablejs": "^1.15.7",
28
29
  "chart.js": "^3.9.1",
29
30
  "flat": "^5.0.2",
30
31
  "highlight.js": "^11.8.0",
@@ -53,7 +54,6 @@
53
54
  "@types/jsdom": "^16.2.14",
54
55
  "@types/node": "^18.7.18",
55
56
  "@types/resize-observer-browser": "^0.1.7",
56
- "@types/sortablejs": "^1.15.2",
57
57
  "@types/uuid": "^8.3.4",
58
58
  "@typescript-eslint/eslint-plugin": "^5.20.0",
59
59
  "@typescript-eslint/parser": "^5.20.0",
@@ -99,7 +99,7 @@ export default defineComponent({
99
99
  },
100
100
  kpiValue(item: DlCounterItem) {
101
101
  return {
102
- value: item.value ?? 0,
102
+ value: item.value ?? null,
103
103
  format: item.format ?? DlKpiCounterFormat.long
104
104
  } as DlKpiCounterType
105
105
  },