@triggerix-ai/component 0.0.0 → 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 +1 -1
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
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-
|
|
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-
|
|
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-
|
|
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,17 +1,17 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@triggerix-ai/component",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
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
|
-
"homepage": "https://github.com/triggerix-
|
|
7
|
+
"homepage": "https://github.com/triggerix-collective/triggerix-ai#readme",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git@github.com:triggerix-
|
|
10
|
+
"url": "git@github.com:triggerix-collective/triggerix-ai.git",
|
|
11
11
|
"directory": "packages/component"
|
|
12
12
|
},
|
|
13
13
|
"bugs": {
|
|
14
|
-
"url": "https://github.com/triggerix-
|
|
14
|
+
"url": "https://github.com/triggerix-collective/triggerix-ai/issues"
|
|
15
15
|
},
|
|
16
16
|
"publishConfig": {
|
|
17
17
|
"access": "public"
|