@biglogic/rgs 3.7.9 → 3.8.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/docs/SUMMARY.md +10 -19
- package/docs/chapters/{08-migration-guide.md → migration-guide.md} +1 -1
- package/index.js +1868 -43
- package/package.json +1 -3
- package/README.md +0 -470
- package/docs/README.md +0 -470
- package/docs/api.md +0 -381
- package/docs/chapters/05-plugin-sdk.md +0 -290
- package/docs/chapters/05-plugins-and-extensibility.md +0 -190
- package/docs/qa.md +0 -47
- /package/docs/chapters/{06-case-studies.md → case-studies.md} +0 -0
- /package/docs/chapters/{07-faq.md → faq.md} +0 -0
- /package/docs/chapters/{02-getting-started.md → getting-started.md} +0 -0
- /package/docs/chapters/{10-local-first-sync.md → local-first-sync.md} +0 -0
- /package/docs/chapters/{04-persistence-and-safety.md → persistence-and-safety.md} +0 -0
- /package/docs/chapters/{01-philosophy.md → philosophy.md} +0 -0
- /package/docs/chapters/{09-security-architecture.md → security-architecture.md} +0 -0
- /package/docs/chapters/{03-the-magnetar-way.md → the-magnetar-way.md} +0 -0
package/docs/SUMMARY.md
CHANGED
|
@@ -8,57 +8,48 @@ This documentation is written for everyone: from **easy setup** for those who ju
|
|
|
8
8
|
|
|
9
9
|
## 🗺️ Summary
|
|
10
10
|
|
|
11
|
-
- **[The Philosophy: Panzer vs. Bicycle](chapters/
|
|
11
|
+
- **[The Philosophy: Panzer vs. Bicycle](chapters/philosophy.md)**
|
|
12
12
|
- Reliability and Security as First-Class Citizens.
|
|
13
13
|
- The "Ironclad" Core: Simplicity meets Power.
|
|
14
14
|
|
|
15
|
-
- **[Quick Start: 30-Second Setup](chapters/
|
|
15
|
+
- **[Quick Start: 30-Second Setup](chapters/getting-started.md)**
|
|
16
16
|
- Deploying the RGS Panzer in your React project.
|
|
17
17
|
|
|
18
|
-
- **[The Magnetar Way: One-Liner Power](chapters/
|
|
18
|
+
- **[The Magnetar Way: One-Liner Power](chapters/the-magnetar-way.md)**
|
|
19
19
|
- Creating stores and hooks simultaneously. Types included.
|
|
20
20
|
|
|
21
|
-
- **[Persistence and Safety](chapters/
|
|
21
|
+
- **[Persistence and Safety](chapters/persistence-and-safety.md)**
|
|
22
22
|
- Never lose user data again (without localStorage headaches).
|
|
23
23
|
- Native immutability with Immer (Stellar Engine).
|
|
24
24
|
|
|
25
|
-
- **[Ecosystem and Plugins](chapters/
|
|
25
|
+
- **[Ecosystem and Plugins](chapters/plugins-and-extensibility.md)**
|
|
26
26
|
- DevTools, Cross-Tab Sync, Analytics, and Typed Plugins.
|
|
27
27
|
|
|
28
|
-
- **[Plugin SDK: Build Your Own Extensions](chapters/
|
|
28
|
+
- **[Plugin SDK: Build Your Own Extensions](chapters/plugin-sdk.md)**
|
|
29
29
|
- Create custom plugins with lifecycle hooks.
|
|
30
30
|
- Register methods via `store.plugins`.
|
|
31
31
|
- Full API reference and examples.
|
|
32
32
|
|
|
33
|
-
- **[Case Studies: Real World Strategies](chapters/
|
|
33
|
+
- **[Case Studies: Real World Strategies](chapters/case-studies.md)**
|
|
34
34
|
- **E-commerce**: Cart isolation and atomic updates.
|
|
35
35
|
- **Dashboards**: Multi-store strategies and complex flows.
|
|
36
36
|
|
|
37
37
|
- **[Architectural Insights (FAQ)](chapters/07-faq.md)**
|
|
38
38
|
- Honest answers on security, performance, and Proxies.
|
|
39
39
|
|
|
40
|
-
- **[Migration Guide](chapters/
|
|
40
|
+
- **[Migration Guide](chapters/migration-guide.md)**
|
|
41
41
|
- Upgrading to latest version (Enterprise Isolation)
|
|
42
42
|
- Upgrading to previous version (`secure` → `encoded`)
|
|
43
43
|
|
|
44
|
-
- **[Security Architecture & Hardening](chapters/
|
|
44
|
+
- **[Security Architecture & Hardening](chapters/security-architecture.md)**
|
|
45
45
|
- Advanced XSS prevention and deep cloning reliability.
|
|
46
46
|
- AES-256-GCM and RBAC.
|
|
47
47
|
|
|
48
|
-
- **[Local-First Sync Engine](chapters/
|
|
48
|
+
- **[Local-First Sync Engine](chapters/local-first-sync.md)**
|
|
49
49
|
- Offline-by-default with automatic background sync.
|
|
50
50
|
- Conflict resolution strategies (last-write-wins, merge, etc.).
|
|
51
51
|
- `useSyncedState` hook for React components.
|
|
52
52
|
|
|
53
53
|
---
|
|
54
54
|
|
|
55
|
-
## Reference
|
|
56
|
-
|
|
57
|
-
- **[API Reference](api.md)**
|
|
58
|
-
- Complete API documentation
|
|
59
|
-
- Type definitions
|
|
60
|
-
- Plugin hooks
|
|
61
|
-
|
|
62
|
-
---
|
|
63
|
-
|
|
64
55
|
> *"Make things simple, but not simpler than necessary."* – RGS Team
|
|
@@ -276,7 +276,7 @@ If you relied on `addAccessRule()` from the global export to affect a `createSto
|
|
|
276
276
|
|
|
277
277
|
## Need Help?
|
|
278
278
|
|
|
279
|
-
- **Issues:** [GitHub Issues](https://github.com/
|
|
279
|
+
- **Issues:** [GitHub Issues](https://github.com/@biglogic/rgs/issues)
|
|
280
280
|
- **Docs:** [Galaxy Documentation](../SUMMARY.md)
|
|
281
281
|
|
|
282
282
|
---
|