pxengine 0.1.84 → 0.1.86
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 +1125 -874
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +65 -1
- package/dist/index.d.ts +65 -1
- package/dist/index.mjs +1104 -854
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +99 -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-22T13:38:24.774Z",
|
|
5
5
|
"components": {
|
|
6
6
|
"AccordionAtom": {
|
|
7
7
|
"name": "AccordionAtom",
|
|
@@ -17933,6 +17933,12 @@
|
|
|
17933
17933
|
"type": "(error: string) => void",
|
|
17934
17934
|
"required": false,
|
|
17935
17935
|
"description": "Callback when job fails"
|
|
17936
|
+
},
|
|
17937
|
+
"compact": {
|
|
17938
|
+
"type": "boolean",
|
|
17939
|
+
"required": false,
|
|
17940
|
+
"defaultValue": "false",
|
|
17941
|
+
"description": "Compact mode - only shows title and action buttons.\nThe embedded iframe preview is hidden; use Preview button to view full report."
|
|
17936
17942
|
}
|
|
17937
17943
|
},
|
|
17938
17944
|
"preview": null,
|
|
@@ -18240,6 +18246,98 @@
|
|
|
18240
18246
|
},
|
|
18241
18247
|
"preview": null,
|
|
18242
18248
|
"layoutHints": null
|
|
18249
|
+
},
|
|
18250
|
+
"WebSearchJobCard": {
|
|
18251
|
+
"name": "WebSearchJobCard",
|
|
18252
|
+
"type": "molecule",
|
|
18253
|
+
"isBuilderComponent": true,
|
|
18254
|
+
"description": "",
|
|
18255
|
+
"props": {
|
|
18256
|
+
"job_id": {
|
|
18257
|
+
"type": "string",
|
|
18258
|
+
"required": true,
|
|
18259
|
+
"description": "Unique job identifier"
|
|
18260
|
+
},
|
|
18261
|
+
"title": {
|
|
18262
|
+
"type": "string",
|
|
18263
|
+
"required": false,
|
|
18264
|
+
"description": "Card title — typically the search query"
|
|
18265
|
+
},
|
|
18266
|
+
"status": {
|
|
18267
|
+
"type": "enum",
|
|
18268
|
+
"required": true,
|
|
18269
|
+
"description": "Current job status",
|
|
18270
|
+
"enums": [
|
|
18271
|
+
"complete",
|
|
18272
|
+
"failed",
|
|
18273
|
+
"pending",
|
|
18274
|
+
"running"
|
|
18275
|
+
]
|
|
18276
|
+
},
|
|
18277
|
+
"query": {
|
|
18278
|
+
"type": "string",
|
|
18279
|
+
"required": false,
|
|
18280
|
+
"description": "The search query string"
|
|
18281
|
+
},
|
|
18282
|
+
"result_count": {
|
|
18283
|
+
"type": "number",
|
|
18284
|
+
"required": false,
|
|
18285
|
+
"description": "Total number of results returned"
|
|
18286
|
+
},
|
|
18287
|
+
"search_count": {
|
|
18288
|
+
"type": "number",
|
|
18289
|
+
"required": false,
|
|
18290
|
+
"description": "Number of web searches performed"
|
|
18291
|
+
},
|
|
18292
|
+
"summary": {
|
|
18293
|
+
"type": "string",
|
|
18294
|
+
"required": false,
|
|
18295
|
+
"description": "2-3 sentence summary of findings"
|
|
18296
|
+
},
|
|
18297
|
+
"results": {
|
|
18298
|
+
"type": "websearchresult[]",
|
|
18299
|
+
"required": false,
|
|
18300
|
+
"description": "Structured search results"
|
|
18301
|
+
},
|
|
18302
|
+
"error": {
|
|
18303
|
+
"type": "string",
|
|
18304
|
+
"required": false,
|
|
18305
|
+
"description": "Error message if job failed"
|
|
18306
|
+
},
|
|
18307
|
+
"pollUrl": {
|
|
18308
|
+
"type": "string",
|
|
18309
|
+
"required": false,
|
|
18310
|
+
"description": "URL to poll for status updates"
|
|
18311
|
+
},
|
|
18312
|
+
"authToken": {
|
|
18313
|
+
"type": "string",
|
|
18314
|
+
"required": false,
|
|
18315
|
+
"description": "Auth token for polling requests"
|
|
18316
|
+
},
|
|
18317
|
+
"className": {
|
|
18318
|
+
"type": "string",
|
|
18319
|
+
"required": false,
|
|
18320
|
+
"description": "Additional CSS classes"
|
|
18321
|
+
},
|
|
18322
|
+
"onComplete": {
|
|
18323
|
+
"type": "(output: websearchjoboutput) => void",
|
|
18324
|
+
"required": false,
|
|
18325
|
+
"description": "Callback when job completes"
|
|
18326
|
+
},
|
|
18327
|
+
"onFailed": {
|
|
18328
|
+
"type": "(error: string) => void",
|
|
18329
|
+
"required": false,
|
|
18330
|
+
"description": "Callback when job fails"
|
|
18331
|
+
},
|
|
18332
|
+
"compact": {
|
|
18333
|
+
"type": "boolean",
|
|
18334
|
+
"required": false,
|
|
18335
|
+
"defaultValue": "false",
|
|
18336
|
+
"description": "Compact mode — hides the results list, shows only header and summary."
|
|
18337
|
+
}
|
|
18338
|
+
},
|
|
18339
|
+
"preview": null,
|
|
18340
|
+
"layoutHints": null
|
|
18243
18341
|
}
|
|
18244
18342
|
}
|
|
18245
18343
|
}
|