@biglogic/rgs 3.9.10 → 3.9.11

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 +61 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -435,13 +435,69 @@ graph TB
435
435
 
436
436
  ---
437
437
 
438
+ ## ✨ VScode extension
439
+
440
+ - [rgs.vsix](extension/rgs.vsix)
441
+
442
+ RGS (Reactive Global State) is a powerful Visual Studio Code extension that provides comprehensive IntelliSense, diagnostics, and a State Explorer sidebar for the RGS state management library.
443
+
444
+ ### Key Features:
445
+ - Intelligent IntelliSense - Full API autocomplete for createStore, initState, useStore, useSyncedState, and more
446
+ - Hover Documentation - Inline documentation on hover for all RGS functions and types
447
+ - Code Snippets - Pre-built templates for common patterns
448
+ - Go to Definition - Navigate directly to store definitions
449
+
450
+ ### Real-Time Diagnostics
451
+
452
+ Automatically detects issues in RGS code:
453
+
454
+ - ⚠️ Warnings: Undefined values, missing namespaces
455
+ - 💡 Hints: Type safety suggestions
456
+ - 🔒 Security: Detection of dangerous key assignments
457
+
458
+ ### State Explorer Sidebar
459
+ Four powerful views:
460
+
461
+ 1. Welcome - Quick access to extension features
462
+ 2. State Explorer - Visual tree of all stores in your project
463
+ 3. State Properties - Detailed view with types, defaults, and attributes (persisted, encrypted, readonly)
464
+ 4. Information - Documentation and help resources
465
+
466
+ ### Supported Languages
467
+
468
+ TypeScript (.ts, .tsx)
469
+ JavaScript (.js, .jsx)
470
+
471
+ ---
472
+
438
473
  ## 📚 Documentation
439
474
 
440
- - [Getting Started](docs/markdown/getting-started.md)
441
- - [Plugin SDK](docs/markdown/plugin-sdk.md)
442
- - [Security Architecture](docs/markdown/security-architecture.md)
443
- - [Migration Guide](docs/markdown/migration-guide.md)
444
- - [API Reference](docs/markdown/api.md)
475
+ - [SKILL](SKILL.md)
476
+ - [SUMMARY](SUMMARY.md)
477
+
478
+ ### Core Concepts
479
+
480
+ - [Getting Started](markdown/getting-started.md)
481
+ - [Philosophy](markdown/philosophy.md)
482
+ - [The Magnetar Way](markdown/the-magnetar-way.md)
483
+
484
+ ### Features & Architecture
485
+
486
+ - [Security Architecture](markdown/security-architecture.md)
487
+ - [Persistence and Safety](markdown/persistence-and-safety.md)
488
+ - [Local-First Sync](markdown/local-first-sync.md)
489
+ - [Plugins and Extensibility](markdown/plugins-and-extensibility.md)
490
+
491
+ ### Development
492
+
493
+ - [Plugin SDK](markdown/plugin-sdk.md)
494
+ - [API Reference](markdown/api.md)
495
+ - [Migration Guide](markdown/migration-guide.md)
496
+
497
+ ### Support
498
+
499
+ - [FAQ](markdown/faq.md)
500
+ - [Case Studies](markdown/case-studies.md)
445
501
 
446
502
  ---
447
503
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@biglogic/rgs",
3
3
  "code": "argis",
4
- "version": "3.9.10",
4
+ "version": "3.9.11",
5
5
  "description": "Argis (RGS) - Reactive Global State: A react state everywhere made easy",
6
6
  "main": "./index.cjs",
7
7
  "browser": "./index.cjs",