@dataloop-ai/components 0.19.62 → 0.19.63

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.62",
3
+ "version": "0.19.63",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -10,7 +10,7 @@
10
10
  :size="counterFontSizeComputed"
11
11
  :style="typographyStyles"
12
12
  >
13
- {{ formatCounter(counter) }}
13
+ {{ formatCounter(counter) }} {{ hasValue ? prefix : '' }}
14
14
  </dl-typography>
15
15
  </div>
16
16
  <div class="kpi_box__title">
@@ -124,7 +124,11 @@ export default defineComponent({
124
124
  default: false,
125
125
  required: false
126
126
  },
127
- dense: Boolean
127
+ dense: Boolean,
128
+ prefix: {
129
+ type: String,
130
+ default: null
131
+ }
128
132
  },
129
133
  setup(props) {
130
134
  const progressValue = (progress: DlKpiProgressType) => {