@redseed/redseed-ui-tailwindcss 7.2.1 → 7.2.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.
@@ -3,7 +3,7 @@
3
3
  @apply inline-flex justify-center items-center select-none outline-hidden p-2 font-semibold text-sm transition cursor-pointer;
4
4
 
5
5
  /* default shape */
6
- @apply first:rounded-l-md last:rounded-r-md first:border-l border-r border-y ring-0;
6
+ @apply first:rounded-l-lg last:rounded-r-lg first:border-l border-r border-y ring-0;
7
7
 
8
8
  /* default colors */
9
9
  @apply text-button-secondary bg-background-primary border-button-secondary;
@@ -18,13 +18,13 @@
18
18
  @apply active:bg-background-primary active:border-button-secondary-active;
19
19
 
20
20
  /* default disabled state */
21
- @apply disabled:bg-button-disabled disabled:border-button-disabled disabled:text-text-primary;
22
- @apply disabled:active:bg-button-disabled disabled:active:border-button-disabled;
21
+ @apply disabled:bg-button-disabled disabled:text-text-disabled;
22
+ @apply disabled:active:bg-button-disabled disabled:active:text-text-disabled;
23
23
  @apply disabled:cursor-default;
24
24
  }
25
25
 
26
26
  .rsui-button-group-item--selected {
27
- @apply bg-background-primary active:bg-background-primary cursor-default;
27
+ @apply bg-background-primary-invert active:bg-background-primary-invert hover:bg-background-primary-invert cursor-default;
28
28
  }
29
29
 
30
30
  .rsui-button-group-item__label {
@@ -12,6 +12,6 @@
12
12
  @apply active:bg-button-primary-active active:border-button-primary-active;
13
13
 
14
14
  /* default disabled state */
15
- @apply disabled:bg-button-disabled disabled:border-button-disabled disabled:text-text-primary;
15
+ @apply disabled:bg-button-disabled disabled:border-button-disabled disabled:text-text-disabled;
16
16
  @apply disabled:active:bg-button-disabled disabled:active:border-button-disabled;
17
17
  }
@@ -12,6 +12,6 @@
12
12
  @apply active:bg-background-primary active:border-button-secondary-active;
13
13
 
14
14
  /* default disabled state */
15
- @apply disabled:bg-button-disabled disabled:border-button-disabled disabled:text-text-primary;
15
+ @apply disabled:bg-button-disabled disabled:border-button-disabled disabled:text-text-disabled;
16
16
  @apply disabled:active:bg-button-disabled disabled:active:border-button-disabled;
17
17
  }
@@ -1,4 +1,4 @@
1
1
  .rsui-form-field-suffix .rsui-form-field-text__suffix {
2
- @apply border rounded-r-md;
2
+ @apply border rounded-r-lg;
3
3
  @apply bg-background-secondary border-background-secondary border-l-border-primary;
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "7.2.1",
3
+ "version": "7.2.3",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "style": "index.css",
package/tokens.css CHANGED
@@ -3,7 +3,7 @@
3
3
  --color-text-secondary: var(--Colors-Grey-700);
4
4
  --color-text-tertiary: var(--Colors-Grey-600);
5
5
  --color-text-quaternary: var(--Colors-Grey-500);
6
- --color-text-disabled: var(--Colors-Grey-300);
6
+ --color-text-disabled: var(--Colors-Grey-400);
7
7
  --color-text-brand: var(--Colors-Brand-500);
8
8
  --color-text-success: var(--Colors-RedSeed-Green-500);
9
9
  --color-text-warning: var(--Colors-RedSeed-Yellow-500);
@@ -68,7 +68,7 @@
68
68
  --color-button-danger-hover: var(--Colors-Error-700);
69
69
  --color-button-danger-active: var(--Colors-Error-800);
70
70
  --color-button-separator: var(--Colors-Grey-200);
71
- --color-button-disabled: var(--Colors-Grey-300);
71
+ --color-button-disabled: var(--Colors-Grey-200);
72
72
 
73
73
  /* Spacing */
74
74
  --spacing-space-xs: 0.5rem; /* 8px */