@dataloop-ai/components 0.20.230 → 0.20.232

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.230",
3
+ "version": "0.20.232",
4
4
  "exports": {
5
5
  ".": "./index.ts",
6
6
  "./models": "./models.ts",
@@ -61,21 +61,9 @@
61
61
  :key="idx"
62
62
  :label="action.label"
63
63
  :icon="action.icon"
64
- :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
- "
74
- :hover-bg-color="'transparent'"
75
- :pressed-bg-color="'transparent'"
76
- :styles="action.styles || defaultActionButtonStyles"
77
- :filled="false"
64
+ color="secondary"
78
65
  outlined
66
+ :styles="action.styles || defaultActionButtonStyles"
79
67
  no-wrap
80
68
  overflow
81
69
  @click="onActionClick(action)"
@@ -129,7 +129,7 @@ export default defineComponent({
129
129
  }
130
130
 
131
131
  &:active {
132
- color: var(--dl-typography-color-active);
132
+ color: var(--dl-typography-color-active, var(--dl-typography-color));
133
133
  }
134
134
  }
135
135
  </style>