juxscript 1.0.110 → 1.0.112

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/create/index.jux CHANGED
@@ -69,11 +69,3 @@ const footer = Element('footer-content', { tag: 'div' })
69
69
  .html('© 2025 Jux Project. Open Source.')
70
70
  .style('display:flex; align-items:center; justify-content:center; height:100%; background:#111; color:#666;')
71
71
  .render('landing-layout-3-0');
72
-
73
- // 6. Global Reset (injected via Element)
74
- Element('reset-styles', { tag: 'style' })
75
- .text(`
76
- body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; background: #fff; color: #111; }
77
- button:hover { transform: scale(1.05); }
78
- `)
79
- .render('app');
@@ -213,6 +213,7 @@ export class JuxCompiler {
213
213
  if (this.themePath) {
214
214
  const themeName = path.basename(this.themePath);
215
215
  links.push(` <link rel="stylesheet" href="./themes/${themeName}" id="jux-theme">`);
216
+ console.log(`🎨 🎨 🎨 🎨 Included theme: ${themeName} 🎨 🎨 🎨 🎨 `);
216
217
  }
217
218
 
218
219
  return links.join('\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.0.110",
3
+ "version": "1.0.112",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./index.js",