instaskeleton 0.1.1 → 0.1.2
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/README.md +0 -27
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -23,7 +23,6 @@
|
|
|
23
23
|
- [HOC Pattern](#hoc-pattern)
|
|
24
24
|
- [API Reference](#api-reference)
|
|
25
25
|
- [Performance](#performance)
|
|
26
|
-
- [Examples](#example-app)
|
|
27
26
|
- [Browser Support](#browser-support)
|
|
28
27
|
- [License](#license)
|
|
29
28
|
|
|
@@ -270,38 +269,12 @@ Animations are disabled automatically when `prefers-reduced-motion: reduce` is s
|
|
|
270
269
|
| Lists with repeated items | `infer` + `cacheKey` | Cached after first render |
|
|
271
270
|
| Complex nested structures | `infer` + `inferOptions` | Tune depth/node limits |
|
|
272
271
|
|
|
273
|
-
## Example App
|
|
274
|
-
|
|
275
|
-
The local example app is a comprehensive visual reference covering:
|
|
276
|
-
|
|
277
|
-
- Profile cards, product grids, social feeds
|
|
278
|
-
- Tables, file lists, pricing cards
|
|
279
|
-
- Settings forms with mixed controls
|
|
280
|
-
- Chat threads, deeply nested comment threads
|
|
281
|
-
- Dashboard layouts with nested cards
|
|
282
|
-
- E-commerce product detail pages
|
|
283
|
-
- Multi-level navigation structures
|
|
284
|
-
- Mixed media galleries
|
|
285
|
-
- Complex forms with validation states
|
|
286
|
-
- Manual schema mirrors showing exact structure
|
|
287
|
-
- HOC usage patterns
|
|
288
|
-
- All primitive node types
|
|
289
|
-
- Animation comparison (shimmer, pulse, none)
|
|
290
|
-
|
|
291
|
-
Run it from the repo root:
|
|
292
|
-
|
|
293
|
-
```bash
|
|
294
|
-
npm run example:install
|
|
295
|
-
npm run example:dev
|
|
296
|
-
```
|
|
297
|
-
|
|
298
272
|
## Development
|
|
299
273
|
|
|
300
274
|
```bash
|
|
301
275
|
npm run build # Build the library
|
|
302
276
|
npm run typecheck # Run TypeScript checks
|
|
303
277
|
npm run dev # Watch mode
|
|
304
|
-
npm run example:dev # Run example app
|
|
305
278
|
```
|
|
306
279
|
|
|
307
280
|
## Browser Support
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "instaskeleton",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Ultra-light React skeleton loader with zero DOM scanning. Automatic JSX inference, manual schema support, shimmer & pulse animations. Only ~1.65KB gzipped.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|