@triggerix-ai/component 0.0.1 → 0.0.2

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/dist/index.d.cts CHANGED
@@ -140,7 +140,7 @@ declare function createComponentRegistry(): ComponentRegistry;
140
140
 
141
141
  /**
142
142
  * Renderer interface — turns AI output into renderer-native elements.
143
- * Implementations live in downstream packages (e.g. `triggerix-ai-ui-native`).
143
+ * Implementations live in downstream packages (e.g. `triggerix-ai-component-native`).
144
144
  */
145
145
  interface Renderer<T = unknown> {
146
146
  mount: (output: AIOutput, container: T) => Scope;
package/dist/index.d.mts CHANGED
@@ -140,7 +140,7 @@ declare function createComponentRegistry(): ComponentRegistry;
140
140
 
141
141
  /**
142
142
  * Renderer interface — turns AI output into renderer-native elements.
143
- * Implementations live in downstream packages (e.g. `triggerix-ai-ui-native`).
143
+ * Implementations live in downstream packages (e.g. `triggerix-ai-component-native`).
144
144
  */
145
145
  interface Renderer<T = unknown> {
146
146
  mount: (output: AIOutput, container: T) => Scope;
package/dist/index.d.ts CHANGED
@@ -140,7 +140,7 @@ declare function createComponentRegistry(): ComponentRegistry;
140
140
 
141
141
  /**
142
142
  * Renderer interface — turns AI output into renderer-native elements.
143
- * Implementations live in downstream packages (e.g. `triggerix-ai-ui-native`).
143
+ * Implementations live in downstream packages (e.g. `triggerix-ai-component-native`).
144
144
  */
145
145
  interface Renderer<T = unknown> {
146
146
  mount: (output: AIOutput, container: T) => Scope;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@triggerix-ai/component",
3
3
  "type": "module",
4
- "version": "0.0.1",
4
+ "version": "0.0.2",
5
5
  "description": "Component protocol layer for Triggerix AI — AI metadata definitions, component registry, and renderer abstraction",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/triggerix-collective/triggerix-ai#readme",