@dataloop-ai/components 0.17.50 → 0.17.51

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.17.50",
3
+ "version": "0.17.51",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -312,9 +312,12 @@ export default defineComponent({
312
312
  filled: this.filled,
313
313
  color: this.color
314
314
  }),
315
- '--dl-button-text-color-pressed':
316
- 'var(--dl-button-text-color)',
317
- '--dl-button-bg-pressed': 'var(--dl-button-bg)',
315
+ '--dl-button-text-color-pressed': this.shaded
316
+ ? 'var(--dl-color-text-buttons)'
317
+ : 'var(--dl-button-text-color)',
318
+ '--dl-button-bg-pressed': this.shaded
319
+ ? 'var(--dl-color-secondary)'
320
+ : 'var(--dl-button-bg)',
318
321
  '--dl-button-border-pressed': 'var(--dl-button-border)'
319
322
  }
320
323
  }