myoperator-ui 0.0.129 → 0.0.131

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 +9 -6
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -619,7 +619,7 @@ const mapColorClassName: { [key in Color]: string } = {
619
619
  primary: "text-semantic-text-primary",
620
620
  secondary: "text-semantic-text-secondary",
621
621
  muted: "text-semantic-text-muted",
622
- placeholder: "text-semantic-text-placeholder",
622
+ placeholder: "tw-text-semantic-text-placeholder",
623
623
  link: "text-semantic-text-link",
624
624
  inverted: "text-semantic-text-inverted",
625
625
  error: "text-semantic-error-primary",
@@ -2867,7 +2867,7 @@ const DialogContent = React.forwardRef<
2867
2867
  <DialogOverlay />
2868
2868
  <DialogPrimitive.Content
2869
2869
  ref={ref}
2870
- className={cn(dialogContentVariants({ size, className }))}
2870
+ className={cn(dialogContentVariants({ size }), className)}
2871
2871
  {...props}
2872
2872
  >
2873
2873
  {children}
@@ -3380,7 +3380,7 @@ const DeleteConfirmationModal = React.forwardRef<
3380
3380
  <DialogContent ref={ref} size="sm" className={cn(className)}>
3381
3381
  <DialogHeader>
3382
3382
  <DialogTitle>{title || defaultTitle}</DialogTitle>
3383
- <DialogDescription className={description ? undefined : "sr-only"}>
3383
+ <DialogDescription className={description ? undefined : "tw-sr-only"}>
3384
3384
  {description ||
3385
3385
  "Delete confirmation dialog - this action cannot be undone"}
3386
3386
  </DialogDescription>
@@ -4292,7 +4292,7 @@ function useToast() {
4292
4292
  listeners.splice(index, 1);
4293
4293
  }
4294
4294
  };
4295
- }, [state]);
4295
+ }, []);
4296
4296
 
4297
4297
  return {
4298
4298
  ...state,
@@ -5440,7 +5440,7 @@ export const EventGroupComponent = React.forwardRef<
5440
5440
  >
5441
5441
  <AccordionItem value={group.id}>
5442
5442
  {/* Header row with checkbox OUTSIDE the trigger button to avoid nested buttons */}
5443
- <div className="flex items-center gap-3 p-4 hover:bg-semantic-bg-ui">
5443
+ <div className="flex items-center gap-3 p-4 hover:bg-neutral-200">
5444
5444
  <Checkbox
5445
5445
  checked={checkboxState}
5446
5446
  onCheckedChange={handleGroupCheckbox}
@@ -5522,7 +5522,10 @@ export const EventItemComponent = React.forwardRef<
5522
5522
  return (
5523
5523
  <div
5524
5524
  ref={ref}
5525
- className={cn("flex items-start gap-3 py-2 pl-8 pr-4", className)}
5525
+ className={cn(
5526
+ "flex items-start gap-3 py-2 pl-8 pr-4 hover:bg-neutral-200",
5527
+ className
5528
+ )}
5526
5529
  {...props}
5527
5530
  >
5528
5531
  <Checkbox
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.129",
3
+ "version": "0.0.131",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",