@redseed/redseed-ui-vue3 2.0.1 → 2.0.3

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": "2.0.1",
3
+ "version": "2.0.3",
4
4
  "description": "RedSeed UI Vue 3 components",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -29,6 +29,6 @@ const buttonClass = computed(() => [
29
29
  // default active state
30
30
  @apply active:border-danger active:bg-danger/10;
31
31
  // default disabled state
32
- @apply disabled:text-danger/10 disabled:border-danger/10 disabled:bg-danger-content;
32
+ @apply disabled:text-danger/20 disabled:border-danger/20 disabled:bg-danger-content;
33
33
  }
34
34
  </style>
@@ -27,6 +27,6 @@ const buttonClass = computed(() => [
27
27
  // default active state
28
28
  @apply active:border-primary active:bg-primary/80;
29
29
  // default disabled state
30
- @apply disabled:text-primary-content disabled:border-transparent disabled:bg-primary/20;
30
+ @apply disabled:text-primary-content disabled:border-transparent disabled:bg-primary/30;
31
31
  }
32
32
  </style>
@@ -27,6 +27,6 @@ const buttonClass = computed(() => [
27
27
  // default active state
28
28
  @apply active:border-secondary active:bg-secondary/80;
29
29
  // default disabled state
30
- @apply disabled:text-secondary-content disabled:border-transparent disabled:bg-secondary/20;
30
+ @apply disabled:text-secondary-content disabled:border-transparent disabled:bg-secondary/30;
31
31
  }
32
32
  </style>
@@ -83,7 +83,7 @@ const buttonSlotClass = computed(() => [
83
83
  // default control
84
84
  @apply w-fit h-fit inline-flex shrink-0 items-center justify-center select-none outline-none whitespace-nowrap;
85
85
  // default shape
86
- @apply font-semibold gap-1 rounded-md border transition;
86
+ @apply font-semibold gap-2 rounded-md border transition;
87
87
  // default colors
88
88
  @apply bg-black text-white ring-black/20 border-black;
89
89
  // default focus state
@@ -123,7 +123,7 @@ const buttonSlotClass = computed(() => [
123
123
  }
124
124
  // modifier md size
125
125
  &--md {
126
- @apply text-base px-4 py-2;
126
+ @apply text-base px-3 py-2;
127
127
  &-icon {
128
128
  @apply p-2;
129
129
  }
@@ -29,6 +29,6 @@ const buttonClass = computed(() => [
29
29
  // default active state
30
30
  @apply active:border-tertiary-content active:bg-tertiary-content/10;
31
31
  // default disabled state
32
- @apply disabled:text-tertiary-content/10 disabled:border-tertiary-content/10 disabled:bg-tertiary;
32
+ @apply disabled:text-tertiary-content/20 disabled:border-tertiary-content/20 disabled:bg-tertiary;
33
33
  }
34
34
  </style>