@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.
@@ -69,7 +69,7 @@
69
69
  }
70
70
 
71
71
  .rsui-card__draft-border {
72
- @apply absolute inset-0 size-full pointer-events-none rounded-xl text-border-secondary;
72
+ @apply absolute inset-0 size-full pointer-events-none rounded-xl border-border-secondary;
73
73
  }
74
74
 
75
75
  .rsui-card--hoverable {
@@ -42,7 +42,7 @@
42
42
  }
43
43
 
44
44
  .rsui-card-header__title {
45
- @apply flex;
45
+ @apply flex w-full;
46
46
  @apply text-lg leading-6 font-semibold text-text-primary;
47
47
  }
48
48
 
@@ -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
- "name": "@redseed/redseed-ui-tailwindcss",
3
- "version": "7.4.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
- }
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
+ }