pxengine 0.1.72 → 0.1.73
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.cjs +1169 -840
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +27 -1
- package/dist/index.d.ts +27 -1
- package/dist/index.mjs +1153 -825
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +68 -1
- package/package.json +1 -1
package/dist/registry.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pxengine/ui",
|
|
3
3
|
"version": "1.0.0",
|
|
4
|
-
"lastUpdated": "2026-05-
|
|
4
|
+
"lastUpdated": "2026-05-12T10:51:30.351Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -17498,6 +17498,73 @@
|
|
|
17498
17498
|
"preview": null,
|
|
17499
17499
|
"layoutHints": null
|
|
17500
17500
|
},
|
|
17501
|
+
"PresentationJobCard": {
|
|
17502
|
+
"name": "PresentationJobCard",
|
|
17503
|
+
"type": "molecule",
|
|
17504
|
+
"isBuilderComponent": true,
|
|
17505
|
+
"description": "",
|
|
17506
|
+
"props": {
|
|
17507
|
+
"job_id": {
|
|
17508
|
+
"type": "string",
|
|
17509
|
+
"required": true,
|
|
17510
|
+
"description": ""
|
|
17511
|
+
},
|
|
17512
|
+
"title": {
|
|
17513
|
+
"type": "string",
|
|
17514
|
+
"required": true,
|
|
17515
|
+
"description": ""
|
|
17516
|
+
},
|
|
17517
|
+
"status": {
|
|
17518
|
+
"type": "enum",
|
|
17519
|
+
"required": true,
|
|
17520
|
+
"description": "Current job status — the card auto-updates via pollUrl when pending/running.",
|
|
17521
|
+
"enums": [
|
|
17522
|
+
"complete",
|
|
17523
|
+
"failed",
|
|
17524
|
+
"pending",
|
|
17525
|
+
"running"
|
|
17526
|
+
]
|
|
17527
|
+
},
|
|
17528
|
+
"slide_count": {
|
|
17529
|
+
"type": "number",
|
|
17530
|
+
"required": false,
|
|
17531
|
+
"description": ""
|
|
17532
|
+
},
|
|
17533
|
+
"formats": {
|
|
17534
|
+
"type": "presentationformats",
|
|
17535
|
+
"required": false,
|
|
17536
|
+
"defaultValue": "{}",
|
|
17537
|
+
"description": ""
|
|
17538
|
+
},
|
|
17539
|
+
"error": {
|
|
17540
|
+
"type": "string",
|
|
17541
|
+
"required": false,
|
|
17542
|
+
"description": ""
|
|
17543
|
+
},
|
|
17544
|
+
"pollUrl": {
|
|
17545
|
+
"type": "string",
|
|
17546
|
+
"required": false,
|
|
17547
|
+
"description": "URL polled every 3 s while status is pending/running.\nExpected response shape: { status, output: { slide_count, formats } }\ne.g. /api/agents-proxy/jobs/{job_id}/status"
|
|
17548
|
+
},
|
|
17549
|
+
"className": {
|
|
17550
|
+
"type": "string",
|
|
17551
|
+
"required": false,
|
|
17552
|
+
"description": ""
|
|
17553
|
+
},
|
|
17554
|
+
"onAction": {
|
|
17555
|
+
"type": "(action: string, payload?: any) => void",
|
|
17556
|
+
"required": false,
|
|
17557
|
+
"description": ""
|
|
17558
|
+
},
|
|
17559
|
+
"sendMessage": {
|
|
17560
|
+
"type": "(message: string) => void",
|
|
17561
|
+
"required": false,
|
|
17562
|
+
"description": ""
|
|
17563
|
+
}
|
|
17564
|
+
},
|
|
17565
|
+
"preview": null,
|
|
17566
|
+
"layoutHints": null
|
|
17567
|
+
},
|
|
17501
17568
|
"PriorityActionsCard": {
|
|
17502
17569
|
"name": "PriorityActionsCard",
|
|
17503
17570
|
"type": "molecule",
|