myoperator-ui 0.0.154-beta.1 → 0.0.154
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 +12 -12
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5679,7 +5679,7 @@ export { PageHeader, pageHeaderVariants };
|
|
|
5679
5679
|
{
|
|
5680
5680
|
name: "event-selector.tsx",
|
|
5681
5681
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
5682
|
-
import { cn } from "
|
|
5682
|
+
import { cn } from "../../../lib/utils";
|
|
5683
5683
|
import { EventGroupComponent } from "./event-group";
|
|
5684
5684
|
import type { EventSelectorProps, EventCategory, EventGroup } from "./types";
|
|
5685
5685
|
|
|
@@ -5872,7 +5872,7 @@ EventSelector.displayName = "EventSelector";
|
|
|
5872
5872
|
{
|
|
5873
5873
|
name: "event-group.tsx",
|
|
5874
5874
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
5875
|
-
import { cn } from "
|
|
5875
|
+
import { cn } from "../../../lib/utils";
|
|
5876
5876
|
import { Checkbox, type CheckedState } from "../checkbox";
|
|
5877
5877
|
import {
|
|
5878
5878
|
Accordion,
|
|
@@ -6058,7 +6058,7 @@ EventGroupComponent.displayName = "EventGroupComponent";
|
|
|
6058
6058
|
{
|
|
6059
6059
|
name: "event-item.tsx",
|
|
6060
6060
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
6061
|
-
import { cn } from "
|
|
6061
|
+
import { cn } from "../../../lib/utils";
|
|
6062
6062
|
import { Checkbox } from "../checkbox";
|
|
6063
6063
|
import type { EventItemComponentProps } from "./types";
|
|
6064
6064
|
|
|
@@ -6236,7 +6236,7 @@ export interface EventItemComponentProps {
|
|
|
6236
6236
|
name: "key-value-input.tsx",
|
|
6237
6237
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
6238
6238
|
import { Plus } from "lucide-react";
|
|
6239
|
-
import { cn } from "
|
|
6239
|
+
import { cn } from "../../../lib/utils";
|
|
6240
6240
|
import { Button } from "../button";
|
|
6241
6241
|
import { KeyValueRow } from "./key-value-row";
|
|
6242
6242
|
import type { KeyValueInputProps, KeyValuePair } from "./types";
|
|
@@ -6479,7 +6479,7 @@ KeyValueInput.displayName = "KeyValueInput";
|
|
|
6479
6479
|
name: "key-value-row.tsx",
|
|
6480
6480
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
6481
6481
|
import { Trash2 } from "lucide-react";
|
|
6482
|
-
import { cn } from "
|
|
6482
|
+
import { cn } from "../../../lib/utils";
|
|
6483
6483
|
import { Input } from "../input";
|
|
6484
6484
|
import { Button } from "../button";
|
|
6485
6485
|
import type { KeyValueRowProps } from "./types";
|
|
@@ -6669,7 +6669,7 @@ export interface KeyValueRowProps {
|
|
|
6669
6669
|
name: "api-feature-card.tsx",
|
|
6670
6670
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
6671
6671
|
import { Button } from "../button";
|
|
6672
|
-
import { cn } from "
|
|
6672
|
+
import { cn } from "../../../lib/utils";
|
|
6673
6673
|
|
|
6674
6674
|
export interface Capability {
|
|
6675
6675
|
/** Unique identifier for the capability */
|
|
@@ -6834,7 +6834,7 @@ export type { ApiFeatureCardProps, Capability } from "./api-feature-card";
|
|
|
6834
6834
|
name: "endpoint-details.tsx",
|
|
6835
6835
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
6836
6836
|
import { XCircle } from "lucide-react";
|
|
6837
|
-
import { cn } from "
|
|
6837
|
+
import { cn } from "../../../lib/utils";
|
|
6838
6838
|
import { ReadableField } from "../readable-field";
|
|
6839
6839
|
|
|
6840
6840
|
export interface EndpointDetailsProps
|
|
@@ -7068,7 +7068,7 @@ export type { EndpointDetailsProps } from "./endpoint-details";
|
|
|
7068
7068
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
7069
7069
|
import { Button } from "../button";
|
|
7070
7070
|
import { Pencil } from "lucide-react";
|
|
7071
|
-
import { cn } from "
|
|
7071
|
+
import { cn } from "../../../lib/utils";
|
|
7072
7072
|
|
|
7073
7073
|
export interface AlertConfigurationProps {
|
|
7074
7074
|
/** Minimum balance threshold */
|
|
@@ -7359,7 +7359,7 @@ export type { AlertValuesModalProps } from "./alert-values-modal";
|
|
|
7359
7359
|
{
|
|
7360
7360
|
name: "auto-pay-setup.tsx",
|
|
7361
7361
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
7362
|
-
import { cn } from "
|
|
7362
|
+
import { cn } from "../../../lib/utils";
|
|
7363
7363
|
import { Button } from "../button";
|
|
7364
7364
|
import {
|
|
7365
7365
|
Accordion,
|
|
@@ -7549,7 +7549,7 @@ export type { AutoPaySetupProps } from "./types";
|
|
|
7549
7549
|
name: "bank-details.tsx",
|
|
7550
7550
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
7551
7551
|
import { Copy, Check } from "lucide-react";
|
|
7552
|
-
import { cn } from "
|
|
7552
|
+
import { cn } from "../../../lib/utils";
|
|
7553
7553
|
import {
|
|
7554
7554
|
Accordion,
|
|
7555
7555
|
AccordionItem,
|
|
@@ -7767,7 +7767,7 @@ export type { BankDetailsProps, BankDetailItem } from "./types";
|
|
|
7767
7767
|
name: "payment-summary.tsx",
|
|
7768
7768
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
7769
7769
|
import { Info } from "lucide-react";
|
|
7770
|
-
import { cn } from "
|
|
7770
|
+
import { cn } from "../../../lib/utils";
|
|
7771
7771
|
import {
|
|
7772
7772
|
Tooltip,
|
|
7773
7773
|
TooltipContent,
|
|
@@ -7951,7 +7951,7 @@ export type {
|
|
|
7951
7951
|
name: "wallet-topup.tsx",
|
|
7952
7952
|
content: prefixTailwindClasses(`import * as React from "react";
|
|
7953
7953
|
import { Check, Ticket } from "lucide-react";
|
|
7954
|
-
import { cn } from "
|
|
7954
|
+
import { cn } from "../../../lib/utils";
|
|
7955
7955
|
import { Button } from "../button";
|
|
7956
7956
|
import { Input } from "../input";
|
|
7957
7957
|
import {
|