@dataloop-ai/components 0.20.227 → 0.20.229

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.227",
3
+ "version": "0.20.229",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -2,7 +2,7 @@
2
2
  <div class="kpi_box" :style="cssVars">
3
3
  <div class="kpi_box__counter">
4
4
  <dl-typography
5
- :color="hasValue ? 'dell-gray-800' : 'dell-gray-600'"
5
+ :color="hasValue ? 'dell-gray-800' : 'dell-gray-500'"
6
6
  variant="h1"
7
7
  :size="counterFontSizeComputed"
8
8
  :style="typographyStyles"
@@ -14,7 +14,7 @@
14
14
  <div class="kpi_box__title__text">
15
15
  <div>
16
16
  <dl-typography
17
- color="dl-color-darker"
17
+ color="dell-gray-600"
18
18
  variant="h3"
19
19
  :size="titleFontSizeComputed"
20
20
  >
@@ -1421,8 +1421,8 @@ export default defineComponent({
1421
1421
  }
1422
1422
  }
1423
1423
 
1424
- &::placeholder {
1425
- color: var(--dl-color-lighter);
1424
+ & input::placeholder {
1425
+ color: var(--placeholder-color);
1426
1426
  opacity: 1;
1427
1427
  }
1428
1428
 
@@ -177,7 +177,10 @@ export default defineComponent({
177
177
  }
178
178
  }
179
179
  &-active {
180
- background-color: var(--dell-blue-200);
180
+ background-color: var(--dell-blue-100);
181
+ }
182
+ &:hover {
183
+ background-color: var(--dell-blue-100);
181
184
  }
182
185
  }
183
186
 
@@ -62,9 +62,15 @@
62
62
  :label="action.label"
63
63
  :icon="action.icon"
64
64
  :color="action.textColor || 'dl-alert-border-color'"
65
- :text-color="action.textColor || 'dl-alert-border-color'"
66
- :hover-border-color="action.textColor || 'dl-alert-border-color'"
67
- :hover-text-color="action.textColor || 'dl-alert-border-color'"
65
+ :text-color="
66
+ action.textColor || 'dl-alert-border-color'
67
+ "
68
+ :hover-border-color="
69
+ action.textColor || 'dl-alert-border-color'
70
+ "
71
+ :hover-text-color="
72
+ action.textColor || 'dl-alert-border-color'
73
+ "
68
74
  :hover-bg-color="'transparent'"
69
75
  :pressed-bg-color="'transparent'"
70
76
  :styles="action.styles || defaultActionButtonStyles"