@onereach/idw-ui-components 0.2.0-beta.27.0 → 0.2.0
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 +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +543 -683
- package/dist/esm/index.js.map +1 -1
- package/dist/types/idw-card/bind/bindIdwCard.d.ts +1 -6
- package/dist/types/idw-card/bind/bindIdwCard.d.ts.map +1 -1
- package/dist/types/idw-card/index.d.ts +1 -1
- package/dist/types/idw-card/index.d.ts.map +1 -1
- package/dist/types/idw-card/templates/approval.d.ts +2 -93
- package/dist/types/idw-card/templates/approval.d.ts.map +1 -1
- package/dist/types/idw-card/templates/compile.d.ts +1 -1
- package/dist/types/idw-card/templates/compile.d.ts.map +1 -1
- package/dist/types/idw-card/templates/index.d.ts +3 -1
- package/dist/types/idw-card/templates/index.d.ts.map +1 -1
- package/dist/types/idw-card/templates/registry.d.ts +2 -15
- package/dist/types/idw-card/templates/registry.d.ts.map +1 -1
- package/dist/types/idw-card/templates/types.d.ts +2 -13
- package/dist/types/idw-card/templates/types.d.ts.map +1 -1
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -296,7 +296,7 @@ HTML/file rows get `fullscreenControl` by default and an unconstrained body max-
|
|
|
296
296
|
|
|
297
297
|
Schema-driven body documents for feed items, canvas, and other hosts. This is **not** Adaptive Cards. `FeedItemBase` / `FeedList` stay host chrome (envelope). `CardRenderer` renders **body + actions** only.
|
|
298
298
|
|
|
299
|
-
The `idw.card` schema and authoring skill live in [`@onereach/idw-contracts`](../contracts). Agents that **author** card JSON (or `templateId` + data) should follow [`../contracts/skills/idw-card-authoring/SKILL.md`](../contracts/skills/idw-card-authoring/SKILL.md). Hosts that **render** cards use `CardRenderer` below. This package re-exports the schema so existing imports keep working.
|
|
299
|
+
The `idw.card` schema, feed templates, and authoring skill live in [`@onereach/idw-contracts`](../contracts). Agents that **author** card JSON (or `templateId` + data) should follow [`../contracts/skills/idw-card-authoring/SKILL.md`](../contracts/skills/idw-card-authoring/SKILL.md) and fetch `GET /schemas/idw.card/1.0` plus `GET /schemas/feeds/templates`. Hosts that **render** cards use `CardRenderer` below. This package re-exports the schema so existing imports keep working.
|
|
300
300
|
|
|
301
301
|
Three layers:
|
|
302
302
|
|