@redseed/redseed-ui-tailwindcss 7.4.0 → 7.5.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.
- package/components/card.css +1 -1
- package/components/card_header.css +1 -1
- package/components/skeleton.css +51 -0
- package/components.css +1 -0
- package/package.json +17 -17
package/components/card.css
CHANGED
|
@@ -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,7 @@ 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/skeleton.css';
|
|
85
86
|
@import './components/single_column_layout.css';
|
|
86
87
|
@import './components/sorting.css';
|
|
87
88
|
@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.5.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
|
+
}
|