pxengine 0.1.153 → 0.1.155
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 +15 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +15 -0
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -10849,6 +10849,19 @@ var FENCE_TAG_ALIASES = {
|
|
|
10849
10849
|
"google-sheets": "GoogleSheetsCard",
|
|
10850
10850
|
"google-sheets-connect": "GoogleSheetsConnectCard",
|
|
10851
10851
|
"google-sheets-list": "GoogleSheetsListCard",
|
|
10852
|
+
// The creators widget is registered as "CreatorWidget" and its canonical
|
|
10853
|
+
// fence tag is `creator-widget`. Agents (notably on smaller models like
|
|
10854
|
+
// Haiku) frequently emit near-synonym tags — `creator-list`, `creators`,
|
|
10855
|
+
// `creator-grid` — for the same widget. Without these aliases such a tag
|
|
10856
|
+
// kebab→PascalCases to a non-existent component ("CreatorList"), so the
|
|
10857
|
+
// block resolves to neither a built-in nor an organism and renders the
|
|
10858
|
+
// "Couldn't load this widget" placeholder. Map the synonyms to the one
|
|
10859
|
+
// real component so the creators widget renders regardless of the exact
|
|
10860
|
+
// tag the model chose. (DEV-342)
|
|
10861
|
+
"creator-list": "CreatorWidget",
|
|
10862
|
+
"creators": "CreatorWidget",
|
|
10863
|
+
"creator-grid": "CreatorWidget",
|
|
10864
|
+
"creator_list": "CreatorWidget",
|
|
10852
10865
|
// Acronym-cased components: kebab→PascalCase title-cases each part
|
|
10853
10866
|
// independently ("mcq" → "Mcq", "mcq-card" → "McqCard"), which does not match
|
|
10854
10867
|
// the exported acronym name "MCQCard". The agent emits the `mcq` fence tag
|
|
@@ -17686,6 +17699,7 @@ var PresentationJobCard = ({
|
|
|
17686
17699
|
const endpoint = approveOutlineUrl || `/api/presentations/${_job_id}/approve-outline`;
|
|
17687
17700
|
setApprovingOutline(true);
|
|
17688
17701
|
setApproveError(null);
|
|
17702
|
+
setProgress(void 0);
|
|
17689
17703
|
try {
|
|
17690
17704
|
const headers = { "Content-Type": "application/json" };
|
|
17691
17705
|
if (authToken) headers.Authorization = `Bearer ${authToken}`;
|
|
@@ -19045,6 +19059,7 @@ var ResearchReportJobCard = (props) => {
|
|
|
19045
19059
|
const endpoint = approveOutlineUrl || `/api/reports/${job_id}/approve-outline`;
|
|
19046
19060
|
setApprovingOutline(true);
|
|
19047
19061
|
setApproveError(null);
|
|
19062
|
+
setProgress(void 0);
|
|
19048
19063
|
try {
|
|
19049
19064
|
const headers = { "Content-Type": "application/json" };
|
|
19050
19065
|
if (authToken) headers.Authorization = `Bearer ${authToken}`;
|