@smartnet360/svelte-components 0.0.120 → 0.0.121

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.
@@ -1,2 +1,3 @@
1
1
  export * from './antenna-pattern/index.js';
2
+ export * as AntennaTools from './antenna-tools/index.js';
2
3
  export * from './site-check/index.js';
@@ -1,7 +1,10 @@
1
1
  // Apps barrel export
2
2
  // Re-export all app modules for clean consumption
3
- // Antenna Pattern Analysis App
3
+ // Antenna Pattern Analysis App (legacy)
4
4
  export * from './antenna-pattern/index.js';
5
+ // Antenna Tools (new version with purge & database viewer)
6
+ // Use namespace export to avoid naming conflicts with antenna-pattern
7
+ export * as AntennaTools from './antenna-tools/index.js';
5
8
  // Test app (if needed for demos)
6
9
  // export * from './test/index.js';
7
10
  export * from './site-check/index.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartnet360/svelte-components",
3
- "version": "0.0.120",
3
+ "version": "0.0.121",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run prepack",