@kayord/ui 0.0.13 → 0.0.14
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.
|
@@ -3,8 +3,8 @@ export { Alert, AlertDescription, AlertTitle } from "./alert/index.js";
|
|
|
3
3
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from "./alert-dialog/index.js";
|
|
4
4
|
export { AspectRatio } from "./aspect-ratio/index.js";
|
|
5
5
|
export { Avatar, AvatarFallback, AvatarImage } from "./avatar/index.js";
|
|
6
|
-
export { Badge } from "./badge/index.js";
|
|
7
|
-
export { Button, type ButtonEvents, type ButtonProps } from "./button/index.js";
|
|
6
|
+
export { Badge, type Variant as BadgeVariant, badgeVariants } from "./badge/index.js";
|
|
7
|
+
export { Button, type ButtonEvents, type ButtonProps, buttonVariants } from "./button/index.js";
|
|
8
8
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./card/index.js";
|
|
9
9
|
export { Checkbox } from "./checkbox/index.js";
|
|
10
10
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./collapsible/index.js";
|
|
@@ -21,7 +21,7 @@ export { Progress } from "./progress/index.js";
|
|
|
21
21
|
export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./radio-group/index.js";
|
|
22
22
|
export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./select/index.js";
|
|
23
23
|
export { Separator } from "./separator/index.js";
|
|
24
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger
|
|
24
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./sheet/index.js";
|
|
25
25
|
export { Skeleton } from "./skeleton/index.js";
|
|
26
26
|
export { Slider } from "./slider/index.js";
|
|
27
27
|
export { Switch } from "./switch/index.js";
|
|
@@ -30,4 +30,3 @@ export { Tabs, TabsContent, TabsList, TabsTrigger } from "./tabs/index.js";
|
|
|
30
30
|
export { Textarea, type TextareaEvents } from "./textarea/index.js";
|
|
31
31
|
export { Toggle } from "./toggle/index.js";
|
|
32
32
|
export { Tooltip } from "./tooltip/index.js";
|
|
33
|
-
export * as ButtonAll from "./button/index.js";
|
|
@@ -3,8 +3,8 @@ export { Alert, AlertDescription, AlertTitle } from "./alert/index.js";
|
|
|
3
3
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger, } from "./alert-dialog/index.js";
|
|
4
4
|
export { AspectRatio } from "./aspect-ratio/index.js";
|
|
5
5
|
export { Avatar, AvatarFallback, AvatarImage } from "./avatar/index.js";
|
|
6
|
-
export { Badge } from "./badge/index.js";
|
|
7
|
-
export { Button } from "./button/index.js";
|
|
6
|
+
export { Badge, badgeVariants } from "./badge/index.js";
|
|
7
|
+
export { Button, buttonVariants } from "./button/index.js";
|
|
8
8
|
export { Card, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from "./card/index.js";
|
|
9
9
|
export { Checkbox } from "./checkbox/index.js";
|
|
10
10
|
export { Collapsible, CollapsibleContent, CollapsibleTrigger } from "./collapsible/index.js";
|
|
@@ -21,7 +21,7 @@ export { Progress } from "./progress/index.js";
|
|
|
21
21
|
export { RadioGroup, RadioGroupInput, RadioGroupItem } from "./radio-group/index.js";
|
|
22
22
|
export { Select, SelectContent, SelectGroup, SelectInput, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue } from "./select/index.js";
|
|
23
23
|
export { Separator } from "./separator/index.js";
|
|
24
|
-
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger
|
|
24
|
+
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger } from "./sheet/index.js";
|
|
25
25
|
export { Skeleton } from "./skeleton/index.js";
|
|
26
26
|
export { Slider } from "./slider/index.js";
|
|
27
27
|
export { Switch } from "./switch/index.js";
|
|
@@ -30,4 +30,3 @@ export { Tabs, TabsContent, TabsList, TabsTrigger } from "./tabs/index.js";
|
|
|
30
30
|
export { Textarea } from "./textarea/index.js";
|
|
31
31
|
export { Toggle } from "./toggle/index.js";
|
|
32
32
|
export { Tooltip } from "./tooltip/index.js";
|
|
33
|
-
export * as ButtonAll from "./button/index.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kayord/ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.14",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"@typescript-eslint/eslint-plugin": "^6.7.4",
|
|
35
35
|
"@typescript-eslint/parser": "^6.7.4",
|
|
36
36
|
"autoprefixer": "^10.4.16",
|
|
37
|
-
"eslint": "^8.
|
|
37
|
+
"eslint": "^8.51.0",
|
|
38
38
|
"eslint-config-prettier": "^9.0.0",
|
|
39
39
|
"eslint-plugin-svelte": "^2.34.0",
|
|
40
40
|
"postcss": "^8.4.31",
|