@page-speed/agent-everywhere 1.0.0 → 1.1.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 +12 -0
- package/dist/index.cjs +818 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +195 -2
- package/dist/index.d.ts +195 -2
- package/dist/index.js +814 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -256,6 +256,18 @@ prop-driven and individually importable:
|
|
|
256
256
|
`TemplateSelector`, `InlineSuggestionsInput`, `FileDropZone`, `PromptLibrary`.
|
|
257
257
|
- **Specialty** — `ImageGenerator`, `WritingAssistant`, `OnboardingWizard`,
|
|
258
258
|
`QuizCard`, `GuidedLessonFlow`, `MediaEditorCanvas`.
|
|
259
|
+
- **Payload artifacts** — the prop-driven cards an agent emits as
|
|
260
|
+
`message.data` and the library renders via `DataPayloadView`: KPI/chart cards
|
|
261
|
+
(`KpiCardWithChart`, `KpiCardWithSparklines`, `PieChartArtifact`,
|
|
262
|
+
`StackedSparklines`, `StatCardHalfCircle`), tables/lists
|
|
263
|
+
(`TableListArtifact`, `LocationsRevenueCard`, `RowBasedDataList`,
|
|
264
|
+
`BadgesArtifact`, `OrderedListArtifact`), progress
|
|
265
|
+
(`DeepResearchProgress`, `Tracker`), and interactive **form** artifacts
|
|
266
|
+
(`BuiltInQuestions`, `AudioPlayer`, `LinkInput`, `MediaCheckboxes`,
|
|
267
|
+
`IconCheckboxes`).
|
|
268
|
+
|
|
269
|
+
> 📖 **Full prop reference, payload schemas, and copy-paste examples for every
|
|
270
|
+
> artifact: [docs/ARTIFACTS.md](docs/ARTIFACTS.md).**
|
|
259
271
|
|
|
260
272
|
## Streaming transport
|
|
261
273
|
|