@manhphi1309/components 0.2.1 → 0.2.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/README.md +38 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,38 @@
1
+ # @manhphi1309/components
2
+
3
+ The unified, complete React UI library. This master-package aggregates all individual components and utilities into a single, easy-to-install dependency.
4
+
5
+ ## Installation
6
+ ```bash
7
+ npm install @manhphi1309/components
8
+ ```
9
+
10
+ ## Usage
11
+ Instead of installing individual packages, you can import everything directly from this meta-package:
12
+ ```tsx
13
+ import { Button, Input, DatePicker, Card, Tooltip } from "@manhphi1309/components";
14
+ ```
15
+
16
+ ## Included Components & Subcomponents
17
+
18
+ This master-package bundles the following components and utilities:
19
+
20
+ - **Button**: `Button`, `buttonVariants`
21
+ - **ButtonGroup**: `ButtonGroup`, `ButtonGroupSeparator`, `ButtonGroupText`, `buttonGroupVariants`
22
+ - **Calendar**: `Calendar`, `CalendarDayButton`
23
+ - **Card**: `Card`, `CardHeader`, `CardFooter`, `CardTitle`, `CardDescription`, `CardAction`, `CardContent`
24
+ - **Checkbox**: `Checkbox`
25
+ - **DatePicker**: `DatePicker`, `DateRange`
26
+ - **Field**: `Field`, `FieldLabel`, `FieldDescription`, `FieldError`, `FieldGroup`, `FieldLegend`, `FieldSeparator`, `FieldSet`, `FieldContent`, `FieldTitle`
27
+ - **Hooks**: `useIsMobile`
28
+ - **Input**: `Input`
29
+ - **InputGroup**: `InputGroup`, `InputGroupAddon`, `InputGroupButton`, `InputGroupText`, `InputGroupInput`, `InputGroupTextarea`
30
+ - **Label**: `Label`
31
+ - **Popover**: `Popover`, `PopoverAnchor`, `PopoverContent`, `PopoverDescription`, `PopoverHeader`, `PopoverTitle`, `PopoverTrigger`
32
+ - **Separator**: `Separator`
33
+ - **Sheet**: `Sheet`, `SheetTrigger`, `SheetClose`, `SheetContent`, `SheetHeader`, `SheetFooter`, `SheetTitle`, `SheetDescription`
34
+ - **Sidebar**: `Sidebar`, `SidebarContent`, `SidebarFooter`, `SidebarGroup`, `SidebarGroupAction`, `SidebarGroupContent`, `SidebarGroupLabel`, `SidebarHeader`, `SidebarInput`, `SidebarInset`, `SidebarMenu`, `SidebarMenuAction`, `SidebarMenuBadge`, `SidebarMenuButton`, `SidebarMenuItem`, `SidebarMenuSkeleton`, `SidebarMenuSub`, `SidebarMenuSubButton`, `SidebarMenuSubItem`, `SidebarProvider`, `SidebarRail`, `SidebarSeparator`, `SidebarTrigger`, `useSidebar`
35
+ - **Skeleton**: `Skeleton`
36
+ - **Textarea**: `Textarea`
37
+ - **Tooltip**: `Tooltip`, `TooltipContent`, `TooltipProvider`, `TooltipTrigger`
38
+ - **Utils**: `cn`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@manhphi1309/components",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "main": "./dist/index.cjs",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",