@redseed/redseed-ui-tailwindcss 7.2.0 → 7.2.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.
@@ -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,9 @@
1
1
  .rsui-checkbox-card {
2
+ @apply @container/checkbox-card;
3
+ }
4
+
5
+ .rsui-checkbox-card .rsui-card-header__actions-mobile {
6
+ @apply pl-8;
2
7
  }
3
8
 
4
9
  .rsui-checkbox-card--disabled {
@@ -47,7 +52,7 @@
47
52
  }
48
53
 
49
54
  .rsui-checkbox-card__field {
50
- @apply inline-flex items-center p-0.5 mt-0;
55
+ @apply inline-flex items-center p-0 mt-0;
51
56
  }
52
57
 
53
58
  .rsui-checkbox-card__field .rsui-form-field-checkbox__checkbox {
@@ -60,11 +65,11 @@
60
65
 
61
66
  .rsui-checkbox-card__subtitle {
62
67
  @apply text-sm text-text-quaternary;
63
- @apply pl-[2.25rem];
68
+ @apply pl-8;
64
69
  }
65
70
 
66
71
  .rsui-checkbox-card__badge {
67
- @apply pl-[2.25rem] flex gap-space-xs;
72
+ @apply pl-8 flex gap-space-xs;
68
73
  }
69
74
  .rsui-checkbox-card__title-text--strikethrough {
70
75
  @apply line-through;
@@ -72,7 +77,7 @@
72
77
 
73
78
  /* Align body/meta content with the header title (account for checkbox width + gap) */
74
79
  .rsui-checkbox-card > .rsui-card__content--padded {
75
- @apply pl-[3.25rem] sm:pl-[3.75rem];
80
+ @apply pl-8 @sm/checkbox-card:pl-12;
76
81
  }
77
82
 
78
83
  /* Success state styling */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "7.2.0",
3
+ "version": "7.2.2",
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 */