loading-state-zoo 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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -9,7 +9,7 @@ Think of it as a small zoo of loading animals. You pick an animal, put it in you
9
9
  - **Smooth.** Only `transform` and `opacity` ever animate, so it stays at 60fps even on phones.
10
10
  - **Tunable.** Every color, size, speed AND every keyframe number is customizable (see [Colors & sizes](#colors-and-sizes) and [Tune the keyframes](#tune-the-keyframes)).
11
11
 
12
- > Looking for AI-friendly docs? See **[docs/AI.md](./docs/AI.md)** and the machine-readable **[docs/components.json](./docs/components.json)**.
12
+ > Looking for AI-friendly docs? See the **Loading State Zoo documentation site** → <https://loading-state-zoo.pages.dev/docs>
13
13
 
14
14
  ---
15
15
 
@@ -563,7 +563,7 @@ Variables: `--lz-surface` · `--lz-sheen` (sweep light color) · `--lz-radius`
563
563
 
564
564
  **Q: Do I need a privacy policy for this package?** No. It's a code library, not a service, and it collects nothing.
565
565
 
566
- **Q: Can I use it in my commercial app?** Yes — MIT license.
566
+ **Q: Can I use it in my commercial app?** Yes — it's free for personal and commercial projects.
567
567
 
568
568
  **Q: Can I change sizes and colors?** Yes — attributes, React props, or CSS variables. See [Colors and sizes](#colors-and-sizes).
569
569
 
@@ -573,7 +573,7 @@ Variables: `--lz-surface` · `--lz-sheen` (sweep light color) · `--lz-radius`
573
573
 
574
574
  ## For AI assistants (LLMs, coding agents)
575
575
 
576
- A condensed, machine-honest summary lives in **[docs/AI.md](./docs/AI.md)** and the full structured spec for every component in **[docs/components.json](./docs/components.json)**.
576
+ Full human- and AI-friendly documentation lives at **<https://loading-state-zoo.pages.dev/docs>**. The packaged release also ships `docs/AI.md` (a condensed, machine-honest summary) and `docs/components.json` (the full structured spec for every component) if you want them offline.
577
577
 
578
578
  Key facts an AI should always know:
579
579
 
@@ -585,4 +585,4 @@ Key facts an AI should always know:
585
585
 
586
586
  ## License
587
587
 
588
- MIT — free to use in commercial projects, no attribution required (but appreciated).
588
+ Free to use in personal and commercial projects. No fee, no attribution required (but appreciated).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "loading-state-zoo",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "17 smooth, transform-only loading patterns as framework-agnostic web components with a thin React wrapper. Works in React, plain web, iOS and Android WebViews.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",