@redseed/redseed-ui-tailwindcss 7.6.0 → 7.7.0

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.
@@ -0,0 +1,43 @@
1
+ .rsui-progress-bar {
2
+ @apply flex items-center gap-3 w-full;
3
+ }
4
+
5
+ .rsui-progress-bar__track {
6
+ @apply flex-1 relative h-2 rounded-full bg-background-secondary-invert overflow-hidden;
7
+ }
8
+
9
+ .rsui-progress-bar__fill {
10
+ @apply absolute inset-y-0 left-0 rounded-full bg-button-primary transition-all duration-300;
11
+ }
12
+
13
+ .rsui-progress-bar__fill--secondary {
14
+ @apply bg-background-secondary-contrast;
15
+ }
16
+
17
+ .rsui-progress-bar__fill--disabled {
18
+ @apply bg-background-disabled-contrast;
19
+ }
20
+
21
+ .rsui-progress-bar__fill--success {
22
+ @apply bg-background-success-contrast;
23
+ }
24
+
25
+ .rsui-progress-bar__fill--warning {
26
+ @apply bg-background-warning-contrast;
27
+ }
28
+
29
+ .rsui-progress-bar__fill--error {
30
+ @apply bg-background-error-contrast;
31
+ }
32
+
33
+ .rsui-progress-bar__fill--info {
34
+ @apply bg-background-info-contrast;
35
+ }
36
+
37
+ .rsui-progress-bar__fill--ai {
38
+ @apply bg-linear-to-r from-background-ai-from to-background-ai-to;
39
+ }
40
+
41
+ .rsui-progress-bar__label {
42
+ @apply shrink-0 text-sm font-medium text-text-secondary whitespace-nowrap;
43
+ }
package/components.css CHANGED
@@ -73,6 +73,7 @@ Please be careful when adding new components and updating the order.
73
73
  @import './components/pagination_item.css';
74
74
  @import './components/pagination_item_previous.css';
75
75
  @import './components/pagination_item_next.css';
76
+ @import './components/progress_bar.css';
76
77
  @import './components/progress_circle.css';
77
78
  @import './components/progress_tracker.css';
78
79
  @import './components/progress_tracker_step.css';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "7.6.0",
3
+ "version": "7.7.0",
4
4
  "description": "RedSeed UI Tailwindcss",
5
5
  "main": "index.js",
6
6
  "style": "index.css",