juxscript 1.0.90 → 1.0.91

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/index.js CHANGED
@@ -12,7 +12,8 @@ export { Input } from './lib/componentsv2/input/component.js';
12
12
  export { List } from './lib/componentsv2/list/component.js';
13
13
 
14
14
  // Base Classes (for extension)
15
- export { BaseEngine, BaseState } from './lib/componentsv2/base/BaseEngine.js';
15
+ // Note: BaseState is a TypeScript interface, not exported at runtime
16
+ export { BaseEngine } from './lib/componentsv2/base/BaseEngine.js';
16
17
  export { BaseSkin } from './lib/componentsv2/base/BaseSkin.js';
17
18
  export { State } from './lib/componentsv2/base/State.js';
18
19
  export { GlobalBus } from './lib/componentsv2/base/GlobalBus.js';
package/lib/globals.d.ts CHANGED
@@ -1,5 +1,7 @@
1
- // CSS Module Support
2
- declare module '*.css' {
3
- const content: string;
4
- export default content;
5
- }
1
+ /**
2
+ * JUX Type Exports
3
+ * Re-export types for TypeScript consumers
4
+ */
5
+ export type { BaseState } from './componentsv2/base/BaseEngine.js';
6
+ export type { JuxServiceContract } from './componentsv2/base/BaseEngine.js';
7
+ export type { OptionsContractSchema, OptionDefinition, ValidationResult } from './componentsv2/base/OptionsContract.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "juxscript",
3
- "version": "1.0.90",
3
+ "version": "1.0.91",
4
4
  "type": "module",
5
5
  "description": "A JavaScript UX authorship platform",
6
6
  "main": "./index.js",
package/types/css.d.ts ADDED
@@ -0,0 +1,8 @@
1
+ /**
2
+ * CSS Module Support
3
+ * Allows importing .css files as strings
4
+ */
5
+ declare module '*.css' {
6
+ const content: string;
7
+ export default content;
8
+ }