@dataloop-ai/components 0.20.225 → 0.20.226

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.225",
3
+ "version": "0.20.226",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -1,8 +1,8 @@
1
1
  export const itemHoverColor = (isActionable: boolean) =>
2
- isActionable ? 'var(--dl-color-fill-hover)' : 'transparent'
2
+ isActionable ? 'var(--dell-blue-100)' : 'transparent'
3
3
 
4
4
  export const itemActiveColor = (isActionable: boolean) =>
5
- isActionable ? 'var(--dl-color-fill)' : 'transparent'
5
+ isActionable ? 'var(--dell-blue-100)' : 'transparent'
6
6
 
7
7
  export const itemCursor = (actionable: boolean, disabled: boolean) =>
8
8
  actionable ? 'pointer' : disabled ? 'not-allowed' : 'cursor'
@@ -281,7 +281,7 @@ export default defineComponent({
281
281
  right: 0;
282
282
  bottom: 0;
283
283
  left: 0;
284
- background-color: var(--dl-backdrop-color);
284
+ background-color: var(--dell-overlay);
285
285
  z-index: var(
286
286
  --dialog-z-index
287
287
  ); // todo: check if this should be overlay instead.
@@ -292,7 +292,7 @@ export default defineComponent({
292
292
  width: 100%;
293
293
  background-color: var(--dl-color-panel-background);
294
294
  border: 1px solid var(--dl-color-separator);
295
- color: var(--dell-gray-200);
295
+ color: var(--dell-gray-800);
296
296
  display: flex;
297
297
  flex-direction: column;
298
298
  z-index: var(--dialog-z-index);
@@ -177,7 +177,7 @@ export default defineComponent({
177
177
  }
178
178
  }
179
179
  &-active {
180
- background-color: var(--dl-color-back-tint-light);
180
+ background-color: var(--dell-blue-200);
181
181
  }
182
182
  }
183
183