myoperator-mcp 0.2.51 → 0.2.53

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1263,7 +1263,7 @@ const DeleteConfirmationModal = React.forwardRef<
1263
1263
  <DialogContent ref={ref} size="sm" className={cn(className)}>
1264
1264
  <DialogHeader>
1265
1265
  <DialogTitle>{title || defaultTitle}</DialogTitle>
1266
- <DialogDescription className={description ? undefined : "sr-only"}>
1266
+ <DialogDescription className={description ? undefined : "tw-sr-only"}>
1267
1267
  {description ||
1268
1268
  "Delete confirmation dialog - this action cannot be undone"}
1269
1269
  </DialogDescription>
@@ -1393,7 +1393,7 @@ const DialogContent = React.forwardRef<
1393
1393
  <DialogOverlay />
1394
1394
  <DialogPrimitive.Content
1395
1395
  ref={ref}
1396
- className={cn(dialogContentVariants({ size, className }))}
1396
+ className={cn(dialogContentVariants({ size }), className)}
1397
1397
  {...props}
1398
1398
  >
1399
1399
  {children}
@@ -4142,7 +4142,7 @@ function useToast() {
4142
4142
  listeners.splice(index, 1);
4143
4143
  }
4144
4144
  };
4145
- }, [state]);
4145
+ }, []);
4146
4146
 
4147
4147
  return {
4148
4148
  ...state,
@@ -4417,7 +4417,7 @@ const mapColorClassName: { [key in Color]: string } = {
4417
4417
  primary: "text-semantic-text-primary",
4418
4418
  secondary: "text-semantic-text-secondary",
4419
4419
  muted: "text-semantic-text-muted",
4420
- placeholder: "text-semantic-text-placeholder",
4420
+ placeholder: "tw-text-semantic-text-placeholder",
4421
4421
  link: "text-semantic-text-link",
4422
4422
  inverted: "text-semantic-text-inverted",
4423
4423
  error: "text-semantic-error-primary",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-mcp",
3
- "version": "0.2.51",
3
+ "version": "0.2.53",
4
4
  "description": "MCP server for myOperator UI components - enables AI assistants to access component metadata, examples, and design tokens",
5
5
  "type": "module",
6
6
  "bin": "./dist/index.js",