pxengine 0.1.156 → 0.1.157
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 +9 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -18047,7 +18047,11 @@ var PresentationJobCard = ({
|
|
|
18047
18047
|
const endpoint = approveOutlineUrl || `/api/presentations/${_job_id}/approve-outline`;
|
|
18048
18048
|
setApprovingOutline(true);
|
|
18049
18049
|
setApproveError(null);
|
|
18050
|
-
setProgress(
|
|
18050
|
+
setProgress((prev) => ({
|
|
18051
|
+
percentage: Math.max(prev?.percentage ?? 0, 30),
|
|
18052
|
+
current_step: "Starting build...",
|
|
18053
|
+
step_type: "processing"
|
|
18054
|
+
}));
|
|
18051
18055
|
try {
|
|
18052
18056
|
const headers = { "Content-Type": "application/json" };
|
|
18053
18057
|
if (authToken) headers.Authorization = `Bearer ${authToken}`;
|
|
@@ -21513,6 +21517,10 @@ A: ${label}`);
|
|
|
21513
21517
|
{
|
|
21514
21518
|
"data-testid": "mcq-option",
|
|
21515
21519
|
"data-option-key": key,
|
|
21520
|
+
role: isMulti ? "checkbox" : "radio",
|
|
21521
|
+
"aria-checked": isSelected,
|
|
21522
|
+
"aria-disabled": isLoading || isOptionsDisabled || atCap,
|
|
21523
|
+
"aria-label": label,
|
|
21516
21524
|
onClick: (e) => handleOptionClick(key, e),
|
|
21517
21525
|
className: cn(
|
|
21518
21526
|
"cursor-pointer rounded-lg p-3 transition-colors",
|