@nexart/ui-renderer 0.2.0 → 0.2.1

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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @nexart/ui-renderer
2
2
 
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
 
5
5
  **Declarative System Authoring SDK for NexArt Protocol**
6
6
 
package/dist/index.d.ts CHANGED
@@ -26,7 +26,7 @@ export { previewSystem } from './preview/renderer';
26
26
  export { getCapabilities, getPrimitiveTypes, getMotionSources, getBackgroundTextures, } from './capabilities';
27
27
  export type { NexArtSystemInput, NexArtSystem, SystemElement, DotsElement, LinesElement, WavesElement, GridElement, FlowFieldElement, OrbitsElement, BackgroundConfig, MotionConfig, PreviewOptions, ValidationResult, } from './types';
28
28
  export type { Capabilities, PrimitiveCapability, ParameterSpec, } from './capabilities';
29
- export declare const SDK_VERSION = "0.2.0";
29
+ export declare const SDK_VERSION = "0.2.1";
30
30
  export declare const PROTOCOL_VERSION = "0.2";
31
31
  export declare const IS_CANONICAL = false;
32
32
  export declare const IS_ARCHIVAL = false;
package/dist/index.js CHANGED
@@ -24,7 +24,7 @@ export { createSystem, validateSystem } from './system';
24
24
  export { compileSystem, serializeSystem } from './compiler';
25
25
  export { previewSystem } from './preview/renderer';
26
26
  export { getCapabilities, getPrimitiveTypes, getMotionSources, getBackgroundTextures, } from './capabilities';
27
- export const SDK_VERSION = '0.2.0';
27
+ export const SDK_VERSION = '0.2.1';
28
28
  export const PROTOCOL_VERSION = '0.2';
29
29
  export const IS_CANONICAL = false;
30
30
  export const IS_ARCHIVAL = false;
package/package.json CHANGED
@@ -1,11 +1,18 @@
1
1
  {
2
2
  "name": "@nexart/ui-renderer",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Declarative system authoring SDK for NexArt Protocol (non-canonical, preview only)",
5
5
  "license": "MIT",
6
- "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
8
6
  "type": "module",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
9
16
  "files": [
10
17
  "dist"
11
18
  ],