@dataloop-ai/components 0.20.244 → 0.20.245

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.244",
3
+ "version": "0.20.245",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -73,7 +73,7 @@
73
73
  ref="label"
74
74
  class="dl-smart-search-input__search-label"
75
75
  :text="computedStatus.message"
76
- :color="computedStatus.type === 'error' ? 'red' : 'gray'"
76
+ :color="computedStatus.type === 'error' ? 'var(--dell-red-500)' : 'gray'"
77
77
  :style="labelStyles"
78
78
  />
79
79
  </div>
@@ -1037,7 +1037,7 @@ export default defineComponent({
1037
1037
 
1038
1038
  const labelStyles = computed<Record<string, string | number>>(() => {
1039
1039
  return {
1040
- color: computedStatus.value.type === 'error' ? 'red' : 'gray'
1040
+ color: computedStatus.value.type === 'error' ? 'var(--dell-red-500)' : 'gray'
1041
1041
  }
1042
1042
  })
1043
1043