@redseed/redseed-ui-tailwindcss 7.6.0 → 7.7.1
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
|
+
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
.rsui-section-slider {
|
|
2
|
-
@apply min-w-full max-w-full overflow-x-hidden rounded-3xl
|
|
2
|
+
@apply min-w-full max-w-full overflow-x-hidden rounded-3xl px-0;
|
|
3
3
|
}
|
|
4
4
|
|
|
5
5
|
.rsui-section-slider > .rsui-section__header {
|
|
6
|
-
@apply
|
|
6
|
+
@apply px-space-lg;
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.rsui-section-slider--featured {
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
.rsui-section-slider__container {
|
|
30
|
-
@apply relative flex gap-x-3 lg:gap-x-6 overflow-x-auto lg:overflow-x-hidden focus:outline-hidden scroll-smooth snap-x snap-mandatory;
|
|
30
|
+
@apply relative flex gap-x-3 lg:gap-x-6 overflow-x-auto lg:overflow-x-hidden focus:outline-hidden scroll-smooth snap-x snap-mandatory scroll-pl-space-lg;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.rsui-section-slider__container::-webkit-scrollbar {
|
package/components/skeleton.css
CHANGED
|
@@ -31,6 +31,10 @@
|
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
.rsui-skeleton__line--thick {
|
|
34
|
+
@apply h-6;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.rsui-skeleton__line--thicker {
|
|
34
38
|
@apply h-12;
|
|
35
39
|
}
|
|
36
40
|
|
|
@@ -42,10 +46,30 @@
|
|
|
42
46
|
@apply w-full aspect-square rounded-full bg-background-secondary-invert animate-pulse;
|
|
43
47
|
}
|
|
44
48
|
|
|
45
|
-
.rsui-
|
|
46
|
-
@apply w-full
|
|
49
|
+
.rsui-skeleton__aspect-ratio {
|
|
50
|
+
@apply w-full rounded-none bg-background-secondary-invert animate-pulse;
|
|
47
51
|
}
|
|
48
52
|
|
|
49
|
-
.rsui-
|
|
53
|
+
.rsui-skeleton__aspect-ratio--rounded {
|
|
50
54
|
@apply rounded-xl;
|
|
51
55
|
}
|
|
56
|
+
|
|
57
|
+
.rsui-skeleton__aspect-ratio--square {
|
|
58
|
+
@apply aspect-square;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.rsui-skeleton__aspect-ratio--3by1 {
|
|
62
|
+
@apply aspect-3/1;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.rsui-skeleton__aspect-ratio--9by16 {
|
|
66
|
+
@apply aspect-9/16;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.rsui-skeleton__aspect-ratio--16by9 {
|
|
70
|
+
@apply aspect-video;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.rsui-skeleton__aspect-ratio--64by25 {
|
|
74
|
+
@apply aspect-64/25;
|
|
75
|
+
}
|
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';
|