@redseed/redseed-ui-tailwindcss 7.4.1 → 7.6.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,35 @@
|
|
|
1
|
+
.rsui-section-slider {
|
|
2
|
+
@apply min-w-full max-w-full overflow-x-hidden rounded-3xl pr-0;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rsui-section-slider > .rsui-section__header {
|
|
6
|
+
@apply pr-space-lg;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.rsui-section-slider--featured {
|
|
10
|
+
@apply bg-brand-600;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rsui-section-slider--featured .rsui-section-header__title {
|
|
14
|
+
@apply text-white;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.rsui-section-slider--featured .rsui-section-header__subtitle {
|
|
18
|
+
@apply text-white/80;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.rsui-section-slider--ai {
|
|
22
|
+
@apply bg-linear-to-tr from-background-ai-from to-background-ai-to border border-brand-500;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rsui-section-slider__action {
|
|
26
|
+
@apply shrink-0 inline-flex items-center justify-center size-14 rounded-full no-underline transition-all disabled:opacity-50 disabled:text-grey-400 hover:cursor-pointer disabled:hover:cursor-default border border-grey-400 bg-transparent;
|
|
27
|
+
}
|
|
28
|
+
|
|
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;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.rsui-section-slider__container::-webkit-scrollbar {
|
|
34
|
+
@apply hidden;
|
|
35
|
+
}
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
.rsui-skeleton {
|
|
2
|
+
@apply w-full;
|
|
3
|
+
}
|
|
4
|
+
|
|
5
|
+
.rsui-skeleton--full {
|
|
6
|
+
@apply w-full;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.rsui-skeleton--half {
|
|
10
|
+
@apply w-1/2;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.rsui-skeleton--one-third {
|
|
14
|
+
@apply w-1/3;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.rsui-skeleton--two-thirds {
|
|
18
|
+
@apply w-2/3;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.rsui-skeleton--start {
|
|
22
|
+
@apply me-auto;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.rsui-skeleton--end {
|
|
26
|
+
@apply ms-auto;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.rsui-skeleton__line {
|
|
30
|
+
@apply h-3 w-full rounded-none bg-background-secondary-invert animate-pulse;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.rsui-skeleton__line--thick {
|
|
34
|
+
@apply h-12;
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.rsui-skeleton__line--rounded {
|
|
38
|
+
@apply rounded-xl;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.rsui-skeleton__circle {
|
|
42
|
+
@apply w-full aspect-square rounded-full bg-background-secondary-invert animate-pulse;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.rsui-skeleton__square {
|
|
46
|
+
@apply w-full aspect-square rounded-none bg-background-secondary-invert animate-pulse;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.rsui-skeleton__square--rounded {
|
|
50
|
+
@apply rounded-xl;
|
|
51
|
+
}
|
package/components.css
CHANGED
|
@@ -82,6 +82,9 @@ Please be careful when adding new components and updating the order.
|
|
|
82
82
|
@import './components/section.css';
|
|
83
83
|
@import './components/section_header.css';
|
|
84
84
|
@import './components/section_footer.css';
|
|
85
|
+
@import './components/section_slider.css';
|
|
86
|
+
@import './components/section_slider_item.css';
|
|
87
|
+
@import './components/skeleton.css';
|
|
85
88
|
@import './components/single_column_layout.css';
|
|
86
89
|
@import './components/sorting.css';
|
|
87
90
|
@import './components/switcher.css';
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
2
|
+
"name": "@redseed/redseed-ui-tailwindcss",
|
|
3
|
+
"version": "7.6.0",
|
|
4
|
+
"description": "RedSeed UI Tailwindcss",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"style": "index.css",
|
|
7
|
+
"repository": "https://github.com/redseedtraining/redseed-ui",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
10
|
+
},
|
|
11
|
+
"keywords": [],
|
|
12
|
+
"author": "",
|
|
13
|
+
"license": "ISC",
|
|
14
|
+
"dependencies": {
|
|
15
|
+
"@tailwindcss/vite": "4.1.18",
|
|
16
|
+
"tailwindcss": "4.1.18"
|
|
17
|
+
}
|
|
18
|
+
}
|