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 CHANGED
@@ -11197,6 +11197,19 @@ var FENCE_TAG_ALIASES = {
11197
11197
  "google-sheets": "GoogleSheetsCard",
11198
11198
  "google-sheets-connect": "GoogleSheetsConnectCard",
11199
11199
  "google-sheets-list": "GoogleSheetsListCard",
11200
+ // The creators widget is registered as "CreatorWidget" and its canonical
11201
+ // fence tag is `creator-widget`. Agents (notably on smaller models like
11202
+ // Haiku) frequently emit near-synonym tags — `creator-list`, `creators`,
11203
+ // `creator-grid` — for the same widget. Without these aliases such a tag
11204
+ // kebab→PascalCases to a non-existent component ("CreatorList"), so the
11205
+ // block resolves to neither a built-in nor an organism and renders the
11206
+ // "Couldn't load this widget" placeholder. Map the synonyms to the one
11207
+ // real component so the creators widget renders regardless of the exact
11208
+ // tag the model chose. (DEV-342)
11209
+ "creator-list": "CreatorWidget",
11210
+ "creators": "CreatorWidget",
11211
+ "creator-grid": "CreatorWidget",
11212
+ "creator_list": "CreatorWidget",
11200
11213
  // Acronym-cased components: kebab→PascalCase title-cases each part
11201
11214
  // independently ("mcq" → "Mcq", "mcq-card" → "McqCard"), which does not match
11202
11215
  // the exported acronym name "MCQCard". The agent emits the `mcq` fence tag
@@ -18034,6 +18047,7 @@ var PresentationJobCard = ({
18034
18047
  const endpoint = approveOutlineUrl || `/api/presentations/${_job_id}/approve-outline`;
18035
18048
  setApprovingOutline(true);
18036
18049
  setApproveError(null);
18050
+ setProgress(void 0);
18037
18051
  try {
18038
18052
  const headers = { "Content-Type": "application/json" };
18039
18053
  if (authToken) headers.Authorization = `Bearer ${authToken}`;
@@ -19381,6 +19395,7 @@ var ResearchReportJobCard = (props) => {
19381
19395
  const endpoint = approveOutlineUrl || `/api/reports/${job_id}/approve-outline`;
19382
19396
  setApprovingOutline(true);
19383
19397
  setApproveError(null);
19398
+ setProgress(void 0);
19384
19399
  try {
19385
19400
  const headers = { "Content-Type": "application/json" };
19386
19401
  if (authToken) headers.Authorization = `Bearer ${authToken}`;