@redseed/redseed-ui-tailwindcss 6.2.7 → 6.2.9

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.
@@ -28,6 +28,10 @@
28
28
  @apply text-text-error bg-background-error border border-border-error;
29
29
  }
30
30
 
31
+ .rsui-badge--ai {
32
+ @apply text-text-ai bg-linear-45 from-background-ai-from to-background-ai-to;
33
+ }
34
+
31
35
  .rsui-badge svg {
32
36
  @apply size-4;
33
37
  }
@@ -1,13 +1,9 @@
1
1
  .rsui-section {
2
- @apply border border-solid rounded-xl p-6 border-border-primary;
2
+ @apply flex flex-col border border-solid rounded-xl p-6 border-border-primary;
3
3
  }
4
4
 
5
- .rsui-section__content {
6
- @apply pt-4;
7
- }
8
-
9
- .rsui-section__content--no-header {
10
- @apply pt-0;
5
+ .rsui-section--show-gap {
6
+ @apply gap-y-4;
11
7
  }
12
8
 
13
9
  .rsui-section--primary {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "6.2.7",
3
+ "version": "6.2.9",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "style": "index.css",
package/tokens.css CHANGED
@@ -7,6 +7,7 @@
7
7
  --color-text-warning: var(--Colors-Warning-600);
8
8
  --color-text-error: var(--Colors-Error-600);
9
9
  --color-text-on-color: var(--Colors-Base-white);
10
+ --color-text-ai: var(--Colors-RedSeed-Purple-500);
10
11
 
11
12
  --color-background-primary: var(--Colors-Base-white);
12
13
  --color-background-secondary: var(--Colors-Grey-50);