@segmentify/ui 0.0.51 → 0.0.53

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/ui.css CHANGED
@@ -137,6 +137,9 @@
137
137
  container-type: inline-size;
138
138
  container-name: card-header;
139
139
  }
140
+ .ui\:pointer-events-auto {
141
+ pointer-events: auto;
142
+ }
140
143
  .ui\:pointer-events-none {
141
144
  pointer-events: none;
142
145
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@segmentify/ui",
3
- "version": "0.0.51",
3
+ "version": "0.0.53",
4
4
  "description": "A collection of reusable React UI components built with Tailwind CSS and Radix UI",
5
5
  "repository": {
6
6
  "type": "git",
@@ -1,2 +0,0 @@
1
- import { type PropsWithChildren } from 'react';
2
- export declare const Iphone15: ({ children }: PropsWithChildren) => import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import { type PropsWithChildren } from 'react';
2
- type PreviewSingleButtonProps = {
3
- className?: string;
4
- };
5
- export declare const PreviewSingleButton: ({ children, className }: PropsWithChildren<PreviewSingleButtonProps>) => import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,24 +0,0 @@
1
- import React from 'react';
2
- import type { VariantProps } from 'class-variance-authority';
3
- import { buttonVariants } from '../../lib/design-variants';
4
- import type { Union } from 'ts-toolbelt';
5
- type BaseProps = {
6
- title: string;
7
- description: string;
8
- onAction: () => void;
9
- children?: React.ReactNode;
10
- cancelLabel: string;
11
- actionLabel: string;
12
- actionVariant?: VariantProps<typeof buttonVariants>['variant'];
13
- };
14
- type ControlledProps = BaseProps & {
15
- controlled: true;
16
- open: boolean;
17
- setOpen: (open: boolean) => void;
18
- };
19
- type UncontrolledProps = BaseProps & {
20
- controlled?: false;
21
- };
22
- type Props = Union.Strict<ControlledProps | UncontrolledProps>;
23
- export declare const ConfirmationDialog: ({ title, description, onAction, children, cancelLabel, actionLabel, actionVariant, open, setOpen, controlled, }: Props) => import("react/jsx-runtime").JSX.Element;
24
- export {};
@@ -1,5 +0,0 @@
1
- import { MessagingPhoneProps } from '../../types/messaging';
2
- export declare const PreviewSMS: {
3
- ({ messageData }: MessagingPhoneProps): import("react/jsx-runtime").JSX.Element | null;
4
- displayName: string;
5
- };
@@ -1,15 +0,0 @@
1
- import { type PropsWithChildren } from 'react';
2
- type WhatsappMessageProps = {
3
- cards?: {
4
- image?: string;
5
- title?: string;
6
- content?: string;
7
- buttons: {
8
- text?: string;
9
- yupButtonsText?: string;
10
- }[];
11
- }[];
12
- includeTime?: boolean;
13
- };
14
- export declare const WhatsappMessage: ({ children, cards, includeTime }: PropsWithChildren<WhatsappMessageProps>) => import("react/jsx-runtime").JSX.Element;
15
- export {};