@redseed/redseed-ui-tailwindcss 5.4.1 → 5.4.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.
@@ -6,7 +6,11 @@
6
6
  }
7
7
 
8
8
  .rsui-card-header--divider {
9
- @apply border-border-primary pb-4;
9
+ @apply border-border-primary;
10
+ }
11
+
12
+ .rsui-card-header--padded-bottom {
13
+ @apply pb-4;
10
14
  }
11
15
 
12
16
  .rsui-card-header__header {
@@ -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;
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.1",
3
+ "version": "5.4.3",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "repository": "https://github.com/redseedtraining/redseed-ui",