juxscript 1.0.98 → 1.0.99

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.
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
@@ -0,0 +1,2 @@
1
+ declare const styles: string;
2
+ export default styles;
@@ -39,8 +39,9 @@ const indexBackup = fs.readFileSync(INDEX_FILE, 'utf-8');
39
39
  const stubs = {
40
40
  'ComponentComposition.ts.stub': `component.ts`,
41
41
  'ComponentEngine.ts.stub': `engine.ts`,
42
- 'ComponentSkin.ts.stub': `skin.ts`, // Reverted path
43
- 'ComponentStructure.css.stub': `structure.css` // Reverted path
42
+ 'ComponentSkin.ts.stub': `skin.ts`,
43
+ 'ComponentStructure.css.stub': `structure.css`,
44
+ 'ComponentStructure.css.d.ts.stub': `structure.css.d.ts` // ✅ Added CSS type declaration
44
45
  };
45
46
 
46
47
  Object.entries(stubs).forEach(([stub, file]) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.0.98",
3
+ "version": "1.0.99",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./index.js",