myoperator-mcp 0.2.33 → 0.2.34
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.js +6 -6
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1097,9 +1097,9 @@ const ConfirmationModal = React.forwardRef<
|
|
|
1097
1097
|
<DialogContent ref={ref} size="sm" className={cn(className)}>
|
|
1098
1098
|
<DialogHeader>
|
|
1099
1099
|
<DialogTitle>{title}</DialogTitle>
|
|
1100
|
-
{description
|
|
1101
|
-
|
|
1102
|
-
|
|
1100
|
+
<DialogDescription className={description ? undefined : "sr-only"}>
|
|
1101
|
+
{description || "Confirmation dialog"}
|
|
1102
|
+
</DialogDescription>
|
|
1103
1103
|
</DialogHeader>
|
|
1104
1104
|
<DialogFooter className="gap-2 sm:gap-0">
|
|
1105
1105
|
<Button variant="outline" onClick={handleCancel} disabled={loading}>
|
|
@@ -1249,9 +1249,9 @@ const DeleteConfirmationModal = React.forwardRef<
|
|
|
1249
1249
|
<DialogContent ref={ref} size="sm" className={cn(className)}>
|
|
1250
1250
|
<DialogHeader>
|
|
1251
1251
|
<DialogTitle>{title || defaultTitle}</DialogTitle>
|
|
1252
|
-
{description
|
|
1253
|
-
|
|
1254
|
-
|
|
1252
|
+
<DialogDescription className={description ? undefined : "sr-only"}>
|
|
1253
|
+
{description || "Delete confirmation dialog - this action cannot be undone"}
|
|
1254
|
+
</DialogDescription>
|
|
1255
1255
|
</DialogHeader>
|
|
1256
1256
|
<div className="grid gap-2 py-4">
|
|
1257
1257
|
<label
|
package/package.json
CHANGED