@redseed/redseed-ui-vue3 1.5.4 → 1.5.5

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": "@redseed/redseed-ui-vue3",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -26,15 +26,15 @@ const buttonClass = computed(() => [
26
26
  <style lang="scss" scoped>
27
27
  .button-tertiary {
28
28
  // default colors
29
- @apply bg-white text-tertiary-dark ring-tertiary-dark/20 border-tertiary-dark;
29
+ @apply bg-white text-default-black ring-tertiary-dark/20 border-tertiary-dark;
30
30
  // default hover state
31
- @apply hover:bg-white hover:text-tertiary hover:border-tertiary;
31
+ @apply hover:bg-white hover:text-tertiary-dark hover:border-tertiary-dark;
32
32
  // default focus state
33
33
  @apply focus-visible:border-transparent focus-visible:text-tertiary;
34
34
  // default active state
35
- @apply active:ring-0 active:text-tertiary-dark active:border-tertiary-dark;
35
+ @apply active:ring-0 active:text-tertiary active:border-tertiary active:bg-white;
36
36
  // default disabled state
37
- @apply disabled:text-tertiary-dark/30 disabled:border-tertiary-dark/30 disabled:bg-white;
37
+ @apply disabled:text-tertiary/40 disabled:border-tertiary/40 disabled:bg-white;
38
38
  @apply disabled:active:ring-0 disabled:focus:ring-0;
39
39
  }
40
40
  </style>