@redseed/redseed-ui-tailwindcss 5.4.2 → 5.4.4

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.
@@ -17,7 +17,7 @@
17
17
 
18
18
  .rsui-form-field-checkbox__check input[type="checkbox"] {
19
19
  @apply appearance-none absolute inset-0 z-0 rounded-md transition focus:outline-none cursor-pointer;
20
- @apply w-full h-full text-text-primary border border-border-secondary text-transparent bg-none;
20
+ @apply w-full h-full text-text-primary border border-border-primary text-transparent bg-none;
21
21
  @apply focus:ring focus:ring-border-primary focus:border-border-primary;
22
22
  @apply invalid:border-border-error invalid:ring-0;
23
23
  @apply disabled:text-text-disabled disabled:bg-background-disabled disabled:cursor-default;
@@ -1,5 +1,5 @@
1
1
  .rsui-section {
2
- @apply border border-solid rounded-xl p-6;
2
+ @apply border border-solid rounded-xl p-6 space-y-4;
3
3
  }
4
4
 
5
5
  .rsui-section--primary {
@@ -18,6 +18,10 @@
18
18
  @apply bg-background-success border-border-success text-text-primary;
19
19
  }
20
20
 
21
+ .rsui-section--info {
22
+ @apply bg-background-info border-border-info text-text-primary;
23
+ }
24
+
21
25
  .rsui-section--warning {
22
26
  @apply bg-background-warning border-border-warning text-text-primary;
23
27
  }
@@ -25,4 +29,3 @@
25
29
  .rsui-section--error {
26
30
  @apply bg-background-error border-border-error text-text-primary;
27
31
  }
28
-
package/index.js CHANGED
@@ -56,8 +56,8 @@ module.exports = {
56
56
  /**
57
57
  * Border colors.
58
58
  */
59
- 'border-primary': rsuiColors.grey['300'],
60
- 'border-secondary': rsuiColors.grey['200'],
59
+ 'border-primary': rsuiColors.grey['400'],
60
+ 'border-secondary': rsuiColors.grey['300'],
61
61
  'border-disabled': rsuiColors.grey['200'],
62
62
  'border-brand': rsuiColors.brand['200'],
63
63
  'border-success': rsuiColors.success['200'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "5.4.2",
3
+ "version": "5.4.4",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",