myoperator-ui 0.0.182-beta.0 → 0.0.182-beta.2

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 +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -10623,7 +10623,6 @@ export type { PricingToggleProps, PricingToggleTab } from "./types";
10623
10623
  {
10624
10624
  name: "talk-to-us-modal.tsx",
10625
10625
  content: prefixTailwindClasses(`import * as React from "react";
10626
- import { cn } from "../../../lib/utils";
10627
10626
  import { MyOperatorChatIcon } from "./icon";
10628
10627
  import { Button } from "../button";
10629
10628
  import {
@@ -10676,7 +10675,8 @@ const TalkToUsModal: React.FC<TalkToUsModalProps> = ({
10676
10675
  <DialogContent
10677
10676
  size="sm"
10678
10677
  hideCloseButton
10679
- className={cn("p-0", className)}
10678
+ className={className}
10679
+ style={{ padding: 0 }}
10680
10680
  >
10681
10681
  <div className="flex flex-col items-center gap-6 px-[60px] py-10 text-center">
10682
10682
  {/* Icon + Text section */}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "myoperator-ui",
3
- "version": "0.0.182-beta.0",
3
+ "version": "0.0.182-beta.2",
4
4
  "description": "CLI for adding myOperator UI components to your project",
5
5
  "type": "module",
6
6
  "exports": "./dist/index.js",