@dataloop-ai/components 0.20.244 → 0.20.246

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.246",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -23,7 +23,7 @@
23
23
  "check-only": "if grep -E -H -r --exclude-dir=.git --exclude-dir=node_modules --exclude=*.json --exclude=*.yml '^(describe|it).only' .; then echo 'Found only in test files' && exit 1; fi"
24
24
  },
25
25
  "dependencies": {
26
- "@dataloop-ai/icons": "^3.1.72",
26
+ "@dataloop-ai/icons": "^3.1.77",
27
27
  "@monaco-editor/loader": "^1.4.0",
28
28
  "@types/flat": "^5.0.2",
29
29
  "@types/lodash": "^4.14.184",
@@ -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