@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.
- package/dist/apps/index.d.ts +1 -0
- package/dist/apps/index.js +4 -1
- package/package.json +1 -1
package/dist/apps/index.d.ts
CHANGED
package/dist/apps/index.js
CHANGED
|
@@ -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';
|