rahman-resources 1.12.0 → 1.12.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.
- package/lib/manifest.json +49 -0
- package/package.json +2 -2
package/lib/manifest.json
CHANGED
|
@@ -2634,6 +2634,26 @@
|
|
|
2634
2634
|
"basics"
|
|
2635
2635
|
]
|
|
2636
2636
|
},
|
|
2637
|
+
{
|
|
2638
|
+
"slug": "loading-states",
|
|
2639
|
+
"title": "Loading States — skeletons + spinners SSOT",
|
|
2640
|
+
"category": "ui",
|
|
2641
|
+
"description": "Configurable LoadingSkeleton composing the shadcn Skeleton primitive: kind presets text / card / list / table / form / page / block with overridable count + columns. Spinner-based LoadingState (inline / block / overlay) covers in-flight work where a skeleton would be wrong. The page kind drops straight into a route loading.tsx (recipe in README).",
|
|
2642
|
+
"source": "rr original",
|
|
2643
|
+
"install": "npx rahman-resources add loading-states",
|
|
2644
|
+
"npmPackages": [],
|
|
2645
|
+
"exampleCode": "",
|
|
2646
|
+
"agentRecipe": "Run `npx rr add loading-states`. Pick the LoadingSkeleton kind that mirrors the streamed content (<LoadingSkeleton kind=\"table\" count={8} />); use kind=\"page\" inside route loading.tsx. For in-flight work (submits, refetches) use <LoadingState variant=\"inline|block|overlay\" /> instead of a skeleton.",
|
|
2647
|
+
"tags": [
|
|
2648
|
+
"loading",
|
|
2649
|
+
"skeleton",
|
|
2650
|
+
"spinner",
|
|
2651
|
+
"suspense",
|
|
2652
|
+
"fallback",
|
|
2653
|
+
"placeholder",
|
|
2654
|
+
"basics"
|
|
2655
|
+
]
|
|
2656
|
+
},
|
|
2637
2657
|
{
|
|
2638
2658
|
"slug": "marketing-chrome",
|
|
2639
2659
|
"title": "Marketing Chrome — Header + Footer",
|
|
@@ -5135,6 +5155,35 @@
|
|
|
5135
5155
|
],
|
|
5136
5156
|
"agentRecipe": "Run `npx rr add empty-states`. Drop <EmptyState kind=\"no-results\" /> into zero-data spots; wrap with <ErrorPage kind=\"404\" /> in app/not-found.tsx and kind=\"500\" in app/error.tsx. Every preset's icon/title/description/action overridable per use."
|
|
5137
5157
|
},
|
|
5158
|
+
{
|
|
5159
|
+
"slug": "loading-states",
|
|
5160
|
+
"title": "Loading States — skeletons + spinners SSOT",
|
|
5161
|
+
"category": "ui",
|
|
5162
|
+
"kind": "ui",
|
|
5163
|
+
"version": "0.1.0",
|
|
5164
|
+
"description": "Configurable LoadingSkeleton composing the shadcn Skeleton primitive: kind presets text / card / list / table / form / page / block with overridable count + columns. Spinner-based LoadingState (inline / block / overlay) covers in-flight work where a skeleton would be wrong. The page kind drops straight into a route loading.tsx (recipe in README).",
|
|
5165
|
+
"source": "rr original",
|
|
5166
|
+
"slicePath": "frontend/slices/loading-states",
|
|
5167
|
+
"convexPaths": [],
|
|
5168
|
+
"npm": [],
|
|
5169
|
+
"shadcn": [
|
|
5170
|
+
"skeleton",
|
|
5171
|
+
"spinner"
|
|
5172
|
+
],
|
|
5173
|
+
"env": [],
|
|
5174
|
+
"peers": [],
|
|
5175
|
+
"providers": [],
|
|
5176
|
+
"tags": [
|
|
5177
|
+
"loading",
|
|
5178
|
+
"skeleton",
|
|
5179
|
+
"spinner",
|
|
5180
|
+
"suspense",
|
|
5181
|
+
"fallback",
|
|
5182
|
+
"placeholder",
|
|
5183
|
+
"basics"
|
|
5184
|
+
],
|
|
5185
|
+
"agentRecipe": "Run `npx rr add loading-states`. Pick the LoadingSkeleton kind that mirrors the streamed content (<LoadingSkeleton kind=\"table\" count={8} />); use kind=\"page\" inside route loading.tsx. For in-flight work (submits, refetches) use <LoadingState variant=\"inline|block|overlay\" /> instead of a skeleton."
|
|
5186
|
+
},
|
|
5138
5187
|
{
|
|
5139
5188
|
"slug": "marketing-chrome",
|
|
5140
5189
|
"title": "Marketing Chrome — Header + Footer",
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "rahman-resources",
|
|
3
|
-
"version": "1.12.
|
|
4
|
-
"description": "Rahman Resources (rr)
|
|
3
|
+
"version": "1.12.1",
|
|
4
|
+
"description": "Rahman Resources (rr) — shadcn-style installer for vertical slices. `npx resources add <slug>` copies slice into your project's `slices/<slug>/`. You own the files.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Rahman <casadezian@gmail.com>",
|