@placesapp/appy-ui 0.0.33 → 0.0.334
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/README.md +0 -18
- package/dist/index.d.ts +49 -20
- package/dist/index.js +50 -5
- package/package.json +6 -26
package/README.md
CHANGED
|
@@ -16,24 +16,6 @@ Make sure you have these peer dependencies installed:
|
|
|
16
16
|
npm install react react-dom tailwindcss
|
|
17
17
|
```
|
|
18
18
|
|
|
19
|
-
### Optional Peer Dependencies
|
|
20
|
-
|
|
21
|
-
Some components require additional packages:
|
|
22
|
-
|
|
23
|
-
```bash
|
|
24
|
-
# For Calendar component
|
|
25
|
-
npm install react-day-picker
|
|
26
|
-
|
|
27
|
-
# For Carousel component
|
|
28
|
-
npm install embla-carousel-react
|
|
29
|
-
|
|
30
|
-
# For Chart components
|
|
31
|
-
npm install recharts
|
|
32
|
-
|
|
33
|
-
# For Form components
|
|
34
|
-
npm install @tanstack/react-form
|
|
35
|
-
```
|
|
36
|
-
|
|
37
19
|
## Setup
|
|
38
20
|
|
|
39
21
|
### 1. CSS Configuration
|
package/dist/index.d.ts
CHANGED
|
@@ -655,6 +655,47 @@ declare function ToggleGroup({ className, variant, size, spacing, orientation, c
|
|
|
655
655
|
}): react_jsx_runtime.JSX.Element;
|
|
656
656
|
declare function ToggleGroupItem({ className, children, variant, size, ...props }: Toggle$1.Props & VariantProps<typeof toggleVariants>): react_jsx_runtime.JSX.Element;
|
|
657
657
|
|
|
658
|
+
interface TabItem {
|
|
659
|
+
id: string;
|
|
660
|
+
label: string;
|
|
661
|
+
path: string;
|
|
662
|
+
icon: ComponentType<{
|
|
663
|
+
className?: string;
|
|
664
|
+
}>;
|
|
665
|
+
activeIcon: ComponentType<{
|
|
666
|
+
className?: string;
|
|
667
|
+
}>;
|
|
668
|
+
}
|
|
669
|
+
interface NavLinkProps {
|
|
670
|
+
to: string;
|
|
671
|
+
children: React.ReactNode;
|
|
672
|
+
className?: string;
|
|
673
|
+
role?: string;
|
|
674
|
+
'aria-selected'?: boolean;
|
|
675
|
+
}
|
|
676
|
+
type LinkComponent = ComponentType<NavLinkProps>;
|
|
677
|
+
interface HeaderConfig {
|
|
678
|
+
trailingAction?: {
|
|
679
|
+
icon: ComponentType<{
|
|
680
|
+
className?: string;
|
|
681
|
+
}>;
|
|
682
|
+
to: string;
|
|
683
|
+
};
|
|
684
|
+
}
|
|
685
|
+
interface PageConfig {
|
|
686
|
+
id: string;
|
|
687
|
+
label: string;
|
|
688
|
+
path: string;
|
|
689
|
+
showInTabBar: boolean;
|
|
690
|
+
icon?: ComponentType<{
|
|
691
|
+
className?: string;
|
|
692
|
+
}>;
|
|
693
|
+
activeIcon?: ComponentType<{
|
|
694
|
+
className?: string;
|
|
695
|
+
}>;
|
|
696
|
+
header?: HeaderConfig;
|
|
697
|
+
}
|
|
698
|
+
|
|
658
699
|
interface HeaderContextValue {
|
|
659
700
|
isScrolled: boolean;
|
|
660
701
|
}
|
|
@@ -696,7 +737,7 @@ interface SecondaryPageHeaderProps {
|
|
|
696
737
|
title: string;
|
|
697
738
|
onBack: () => void;
|
|
698
739
|
}
|
|
699
|
-
declare function SecondaryPageHeader({ title, onBack }: SecondaryPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
740
|
+
declare function SecondaryPageHeader({ title, onBack, }: SecondaryPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
700
741
|
interface TabPageHeaderProps {
|
|
701
742
|
title: string;
|
|
702
743
|
trailingAction?: {
|
|
@@ -714,25 +755,13 @@ interface TabPageHeaderProps {
|
|
|
714
755
|
}
|
|
715
756
|
declare function TabPageHeader({ title, trailingAction }: TabPageHeaderProps): react_jsx_runtime.JSX.Element;
|
|
716
757
|
|
|
717
|
-
interface
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
className?: string;
|
|
723
|
-
}>;
|
|
724
|
-
activeIcon: ComponentType<{
|
|
725
|
-
className?: string;
|
|
726
|
-
}>;
|
|
727
|
-
}
|
|
728
|
-
interface NavLinkProps {
|
|
729
|
-
to: string;
|
|
730
|
-
children: React.ReactNode;
|
|
731
|
-
className?: string;
|
|
732
|
-
role?: string;
|
|
733
|
-
'aria-selected'?: boolean;
|
|
758
|
+
interface AppHeaderProps {
|
|
759
|
+
pages: PageConfig[];
|
|
760
|
+
currentPath: string;
|
|
761
|
+
onBack: () => void;
|
|
762
|
+
LinkComponent: LinkComponent;
|
|
734
763
|
}
|
|
735
|
-
|
|
764
|
+
declare function AppHeader({ pages, currentPath, onBack, LinkComponent, }: AppHeaderProps): react_jsx_runtime.JSX.Element;
|
|
736
765
|
|
|
737
766
|
interface TabBarProps {
|
|
738
767
|
items: TabItem[];
|
|
@@ -800,4 +829,4 @@ declare function useIsMobile(): boolean;
|
|
|
800
829
|
|
|
801
830
|
declare function cn(...inputs: ClassValue[]): string;
|
|
802
831
|
|
|
803
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AndroidTabBar, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DesignSystem, DesignSystemProvider, type DeviceContext, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, type FormFactor, Header, HoverCard, HoverCardContent, HoverCardTrigger, IOSTabBar, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, type LinkComponent, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavLinkProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type Platform, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, ProgressiveBlur, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SecondaryPageHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, TabBar, type TabItem, TabPageHeader, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, WebFooter, WebNavBar, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useCarousel, useComboboxAnchor, useDesignSystem, useDeviceContext, useHeaderContext, useIsMobile, useScrolled, useSidebar };
|
|
832
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AndroidTabBar, AppHeader, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, type CarouselApi, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, type DesignSystem, DesignSystemProvider, type DeviceContext, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, type FormFactor, Header, type HeaderConfig, HoverCard, HoverCardContent, HoverCardTrigger, IOSTabBar, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, type LinkComponent, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, type NavLinkProps, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, type PageConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type Platform, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, ProgressiveBlur, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SecondaryPageHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, TabBar, type TabItem, TabPageHeader, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, WebFooter, WebNavBar, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useCarousel, useComboboxAnchor, useDesignSystem, useDeviceContext, useHeaderContext, useIsMobile, useScrolled, useSidebar };
|
package/dist/index.js
CHANGED
|
@@ -5841,7 +5841,13 @@ function useHeaderContext() {
|
|
|
5841
5841
|
}
|
|
5842
5842
|
function Root({ children, scrollThreshold = 50, className }) {
|
|
5843
5843
|
const isScrolled = useScrolled({ threshold: scrollThreshold });
|
|
5844
|
-
return /* @__PURE__ */ jsx(HeaderContext.Provider, { value: { isScrolled }, children: /* @__PURE__ */ jsx(
|
|
5844
|
+
return /* @__PURE__ */ jsx(HeaderContext.Provider, { value: { isScrolled }, children: /* @__PURE__ */ jsx(
|
|
5845
|
+
"header",
|
|
5846
|
+
{
|
|
5847
|
+
className: cn("sticky top-0 z-50 w-full bg-transparent", className),
|
|
5848
|
+
children: /* @__PURE__ */ jsx("div", { className: "relative flex h-14 items-center px-4", children })
|
|
5849
|
+
}
|
|
5850
|
+
) });
|
|
5845
5851
|
}
|
|
5846
5852
|
function BackButton({ onClick, className }) {
|
|
5847
5853
|
return /* @__PURE__ */ jsx(
|
|
@@ -5857,14 +5863,26 @@ function BackButton({ onClick, className }) {
|
|
|
5857
5863
|
);
|
|
5858
5864
|
}
|
|
5859
5865
|
function Title({ children, className }) {
|
|
5860
|
-
return /* @__PURE__ */ jsx(
|
|
5866
|
+
return /* @__PURE__ */ jsx(
|
|
5867
|
+
"h1",
|
|
5868
|
+
{
|
|
5869
|
+
className: cn(
|
|
5870
|
+
"absolute inset-0 flex items-center justify-center text-lg font-semibold",
|
|
5871
|
+
className
|
|
5872
|
+
),
|
|
5873
|
+
children
|
|
5874
|
+
}
|
|
5875
|
+
);
|
|
5861
5876
|
}
|
|
5862
5877
|
function AnimatedTitle({ children, className }) {
|
|
5863
5878
|
const { isScrolled } = useHeaderContext();
|
|
5864
5879
|
return /* @__PURE__ */ jsx(AnimatePresence, { mode: "popLayout", children: isScrolled ? /* @__PURE__ */ jsx(
|
|
5865
5880
|
motion.h1,
|
|
5866
5881
|
{
|
|
5867
|
-
className: cn(
|
|
5882
|
+
className: cn(
|
|
5883
|
+
"absolute inset-0 flex items-center justify-center text-lg font-semibold",
|
|
5884
|
+
className
|
|
5885
|
+
),
|
|
5868
5886
|
initial: { opacity: 0 },
|
|
5869
5887
|
animate: { opacity: 1 },
|
|
5870
5888
|
exit: { opacity: 0 },
|
|
@@ -5895,7 +5913,10 @@ var Header = {
|
|
|
5895
5913
|
AnimatedTitle,
|
|
5896
5914
|
TrailingAction
|
|
5897
5915
|
};
|
|
5898
|
-
function SecondaryPageHeader({
|
|
5916
|
+
function SecondaryPageHeader({
|
|
5917
|
+
title,
|
|
5918
|
+
onBack
|
|
5919
|
+
}) {
|
|
5899
5920
|
return /* @__PURE__ */ jsxs(Header.Root, { children: [
|
|
5900
5921
|
/* @__PURE__ */ jsx(Header.BackButton, { onClick: onBack }),
|
|
5901
5922
|
/* @__PURE__ */ jsx(Header.Title, { children: title })
|
|
@@ -5921,6 +5942,30 @@ function TabPageHeader({ title, trailingAction }) {
|
|
|
5921
5942
|
) })
|
|
5922
5943
|
] });
|
|
5923
5944
|
}
|
|
5945
|
+
function AppHeader({
|
|
5946
|
+
pages,
|
|
5947
|
+
currentPath,
|
|
5948
|
+
onBack,
|
|
5949
|
+
LinkComponent
|
|
5950
|
+
}) {
|
|
5951
|
+
const currentPage = pages.find((p) => p.path === currentPath);
|
|
5952
|
+
const isTabPage = currentPage?.showInTabBar ?? false;
|
|
5953
|
+
const pageTitle = currentPage?.label ?? "Page";
|
|
5954
|
+
if (!isTabPage) {
|
|
5955
|
+
return /* @__PURE__ */ jsx(SecondaryPageHeader, { title: pageTitle, onBack });
|
|
5956
|
+
}
|
|
5957
|
+
return /* @__PURE__ */ jsx(
|
|
5958
|
+
TabPageHeader,
|
|
5959
|
+
{
|
|
5960
|
+
title: pageTitle,
|
|
5961
|
+
trailingAction: currentPage?.header?.trailingAction ? {
|
|
5962
|
+
icon: currentPage.header.trailingAction.icon,
|
|
5963
|
+
href: currentPage.header.trailingAction.to,
|
|
5964
|
+
LinkComponent
|
|
5965
|
+
} : void 0
|
|
5966
|
+
}
|
|
5967
|
+
);
|
|
5968
|
+
}
|
|
5924
5969
|
function AndroidTabBar({
|
|
5925
5970
|
items,
|
|
5926
5971
|
currentPath,
|
|
@@ -6179,4 +6224,4 @@ function WebFooter({
|
|
|
6179
6224
|
);
|
|
6180
6225
|
}
|
|
6181
6226
|
|
|
6182
|
-
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AndroidTabBar, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DesignSystemProvider, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Header, HoverCard, HoverCardContent, HoverCardTrigger, IOSTabBar, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, ProgressiveBlur, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SecondaryPageHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, TabBar, TabPageHeader, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, WebFooter, WebNavBar, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useCarousel, useComboboxAnchor, useDesignSystem, useDeviceContext, useHeaderContext, useIsMobile, useScrolled, useSidebar };
|
|
6227
|
+
export { Accordion, AccordionContent, AccordionItem, AccordionTrigger, Alert, AlertAction, AlertDescription, AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogMedia, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, AlertTitle, AndroidTabBar, AppHeader, AspectRatio, Avatar, AvatarBadge, AvatarFallback, AvatarGroup, AvatarGroupCount, AvatarImage, Badge, Breadcrumb, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, ButtonGroup, ButtonGroupSeparator, ButtonGroupText, Calendar, CalendarDayButton, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Carousel, CarouselContent, CarouselItem, CarouselNext, CarouselPrevious, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, Collapsible, CollapsibleContent, CollapsibleTrigger, Combobox, ComboboxChip, ComboboxChips, ComboboxChipsInput, ComboboxCollection, ComboboxContent, ComboboxEmpty, ComboboxGroup, ComboboxInput, ComboboxItem, ComboboxLabel, ComboboxList, ComboboxSeparator, ComboboxTrigger, ComboboxValue, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, ContextMenu, ContextMenuCheckboxItem, ContextMenuContent, ContextMenuGroup, ContextMenuItem, ContextMenuLabel, ContextMenuPortal, ContextMenuRadioGroup, ContextMenuRadioItem, ContextMenuSeparator, ContextMenuShortcut, ContextMenuSub, ContextMenuSubContent, ContextMenuSubTrigger, ContextMenuTrigger, DesignSystemProvider, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerTitle, DrawerTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle, Header, HoverCard, HoverCardContent, HoverCardTrigger, IOSTabBar, Input, InputGroup, InputGroupAddon, InputGroupButton, InputGroupInput, InputGroupText, InputGroupTextarea, InputOTP, InputOTPGroup, InputOTPSeparator, InputOTPSlot, Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle, Kbd, KbdGroup, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NativeSelect, NativeSelectOptGroup, NativeSelectOption, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuPositioner, NavigationMenuTrigger, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverContent, PopoverDescription, PopoverHeader, PopoverTitle, PopoverTrigger, Progress, ProgressIndicator, ProgressLabel, ProgressTrack, ProgressValue, ProgressiveBlur, RadioGroup, RadioGroupItem, ResizableHandle, ResizablePanel, ResizablePanelGroup, ScrollArea, ScrollBar, SecondaryPageHeader, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Skeleton, Slider, Spinner, Switch, TabBar, TabPageHeader, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, Toaster, Toggle, ToggleGroup, ToggleGroupItem, Tooltip2 as Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, WebFooter, WebNavBar, badgeVariants, buttonGroupVariants, buttonVariants, cn, navigationMenuTriggerStyle, toggleVariants, useCarousel, useComboboxAnchor, useDesignSystem, useDeviceContext, useHeaderContext, useIsMobile, useScrolled, useSidebar };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@placesapp/appy-ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.334",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"module": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -21,46 +21,26 @@
|
|
|
21
21
|
"react-dom": ">=19",
|
|
22
22
|
"tailwindcss": ">=4"
|
|
23
23
|
},
|
|
24
|
-
"peerDependenciesMeta": {
|
|
25
|
-
"@tanstack/react-form": {
|
|
26
|
-
"optional": true
|
|
27
|
-
},
|
|
28
|
-
"embla-carousel-react": {
|
|
29
|
-
"optional": true
|
|
30
|
-
},
|
|
31
|
-
"recharts": {
|
|
32
|
-
"optional": true
|
|
33
|
-
},
|
|
34
|
-
"react-day-picker": {
|
|
35
|
-
"optional": true
|
|
36
|
-
},
|
|
37
|
-
"cmdk": {
|
|
38
|
-
"optional": true
|
|
39
|
-
},
|
|
40
|
-
"tanstack-theme-kit": {
|
|
41
|
-
"optional": true
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
24
|
"dependencies": {
|
|
45
25
|
"@base-ui/react": "^1.1.0",
|
|
46
26
|
"@tabler/icons-react": "^3.31.0",
|
|
47
27
|
"class-variance-authority": "^0.7.1",
|
|
48
28
|
"clsx": "^2.1.1",
|
|
29
|
+
"cmdk": "^1.1.1",
|
|
30
|
+
"embla-carousel-react": "^8.6.0",
|
|
49
31
|
"input-otp": "^1.4.2",
|
|
50
32
|
"motion": "^12.4.7",
|
|
33
|
+
"react-day-picker": "^9.13.0",
|
|
51
34
|
"react-resizable-panels": "^2.1.7",
|
|
35
|
+
"recharts": "^3.7.0",
|
|
52
36
|
"sonner": "^2.0.1",
|
|
53
37
|
"tailwind-merge": "^3.0.1",
|
|
38
|
+
"tanstack-theme-kit": "^0.2.1",
|
|
54
39
|
"vaul": "^1.1.2"
|
|
55
40
|
},
|
|
56
41
|
"devDependencies": {
|
|
57
42
|
"@types/react": "19.2.9",
|
|
58
43
|
"@types/react-dom": "19.2.3",
|
|
59
|
-
"cmdk": "^1.1.1",
|
|
60
|
-
"embla-carousel-react": "^8.6.0",
|
|
61
|
-
"react-day-picker": "^9.13.0",
|
|
62
|
-
"recharts": "^3.7.0",
|
|
63
|
-
"tanstack-theme-kit": "^0.2.1",
|
|
64
44
|
"tsup": "^8.3.5",
|
|
65
45
|
"typescript": "^5.7.3"
|
|
66
46
|
},
|