anentrypoint-design 0.0.111 → 0.0.113

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.111",
3
+ "version": "0.0.113",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -2,4 +2,16 @@ export { icons } from './icons.js';
2
2
  export { createDesktopShell } from './shell.js';
3
3
  export { renderWindow } from './wm.js';
4
4
  export { renderDock } from './launcher.js';
5
+
6
+ // App modules — surfaced through the kit entry point so consumers can use a
7
+ // single import site. Each module also remains importable from its own path
8
+ // for tree-shaking and back-compat.
9
+ export { renderAboutApp } from './about-app.js';
10
+ export { renderBrowserPane } from './browser-app.js';
11
+ export { renderFilesApp } from './files-app.js';
12
+ export { renderMonitorApp } from './monitor-app.js';
13
+ export { renderTerminal } from './terminal-app.js';
14
+ export { renderValidator } from './validator-app.js';
15
+ export { createFreddieDashboard } from './freddie-dashboard.js';
16
+
5
17
  export const themeUrl = new URL('./theme.css', import.meta.url).href;