@redseed/redseed-ui-vue3 2.0.1 → 2.0.2
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
|
@@ -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/
|
|
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/
|
|
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/
|
|
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-
|
|
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
|
|
@@ -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/
|
|
32
|
+
@apply disabled:text-tertiary-content/20 disabled:border-tertiary-content/20 disabled:bg-tertiary;
|
|
33
33
|
}
|
|
34
34
|
</style>
|