@tapcart/mobile-components 0.2.2 → 0.2.4
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.d.mts +1 -6
- package/dist/index.mjs +96 -3075
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +0 -41
- package/package.json +6 -6
package/dist/index.d.mts
CHANGED
|
@@ -13,7 +13,6 @@ import * as ToggleGroupPrimitive from '@radix-ui/react-toggle-group';
|
|
|
13
13
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
14
14
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
15
15
|
import * as ToastPrimitives from '@radix-ui/react-toast';
|
|
16
|
-
import { ThemeProviderProps } from 'next-themes/dist/types';
|
|
17
16
|
import { ClassValue } from 'clsx';
|
|
18
17
|
|
|
19
18
|
declare const buttonVariants: (props?: ({
|
|
@@ -217,10 +216,6 @@ declare function useToast(): {
|
|
|
217
216
|
toasts: ToasterToast[];
|
|
218
217
|
};
|
|
219
218
|
|
|
220
|
-
declare function ThemeToggle(): react_jsx_runtime.JSX.Element;
|
|
221
|
-
|
|
222
|
-
declare function ThemeProvider({ children, ...props }: ThemeProviderProps): react_jsx_runtime.JSX.Element;
|
|
223
|
-
|
|
224
219
|
declare function cn(...inputs: ClassValue[]): string;
|
|
225
220
|
|
|
226
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AspectRatio, Badge, type BadgeProps, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Chip, Container, type ContainerProps, Grid, type GridProps, Input, type InputProps, Label, Money, type MoneyProps, MultipleChips, ScrollArea, ScrollBar, Separator, Skeleton, Switch, Text, type TextProps,
|
|
221
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, AspectRatio, Badge, type BadgeProps, Button, type ButtonProps, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, Chip, Container, type ContainerProps, Grid, type GridProps, Input, type InputProps, Label, Money, type MoneyProps, MultipleChips, ScrollArea, ScrollBar, Separator, Skeleton, Switch, Text, type TextProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Video, type VideoProps, badgeVariants, buttonVariants, cn, containerVariants, gridVariants, moneyVariants, reducer, textVariants, toast, toggleVariants, useToast, videoVariants };
|