myoperator-ui 0.0.130 → 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.
- package/dist/index.js +4 -4
- 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
|
-
}, [
|
|
4295
|
+
}, []);
|
|
4296
4296
|
|
|
4297
4297
|
return {
|
|
4298
4298
|
...state,
|