myoperator-ui 0.0.201-beta.1 → 0.0.201-beta.3

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 +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -4625,7 +4625,7 @@ const AlertDescription = React.forwardRef<
4625
4625
  HTMLParagraphElement,
4626
4626
  React.HTMLAttributes<HTMLParagraphElement>
4627
4627
  >(({ className, ...props }, ref) => (
4628
- <p ref={ref} className={cn("mt-1 text-sm", className)} {...props} />
4628
+ <p ref={ref} className={cn("m-0 mt-1 text-sm", className)} {...props} />
4629
4629
  ));
4630
4630
  AlertDescription.displayName = "AlertDescription";
4631
4631
 
@@ -9958,7 +9958,7 @@ const summaryPanelVariants = cva(
9958
9958
  "flex flex-col gap-5 rounded border border-semantic-border-layout bg-semantic-bg-ui p-4"
9959
9959
  );
9960
9960
 
9961
- const statusTitleVariants = cva("text-sm font-semibold leading-5 tracking-[0.014px]", {
9961
+ const statusTitleVariants = cva("m-0 text-sm font-semibold leading-5 tracking-[0.014px]", {
9962
9962
  variants: {
9963
9963
  tone: {
9964
9964
  warning: "text-semantic-warning-text",
@@ -9970,7 +9970,7 @@ const statusTitleVariants = cva("text-sm font-semibold leading-5 tracking-[0.014
9970
9970
  },
9971
9971
  });
9972
9972
 
9973
- const statusMessageVariants = cva("text-xs leading-normal", {
9973
+ const statusMessageVariants = cva("m-0 text-xs leading-normal", {
9974
9974
  variants: {
9975
9975
  tone: {
9976
9976
  warning: "text-semantic-warning-text",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.201-beta.1",
3
+ "version": "0.0.201-beta.3",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",