@kayord/ui 0.0.13 → 0.0.15

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, } from "./sheet/index.js";
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, } from "./sheet/index.js";
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,11 +1,15 @@
1
1
  {
2
2
  "name": "@kayord/ui",
3
3
  "private": false,
4
- "version": "0.0.13",
4
+ "version": "0.0.15",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
8
8
  "svelte": "./dist/index.js"
9
+ },
10
+ "./utils/*": {
11
+ "types": "./dist/utils/*.d.ts",
12
+ "svelte": "./dist/utils/*.js"
9
13
  }
10
14
  },
11
15
  "files": [
@@ -34,7 +38,7 @@
34
38
  "@typescript-eslint/eslint-plugin": "^6.7.4",
35
39
  "@typescript-eslint/parser": "^6.7.4",
36
40
  "autoprefixer": "^10.4.16",
37
- "eslint": "^8.50.0",
41
+ "eslint": "^8.51.0",
38
42
  "eslint-config-prettier": "^9.0.0",
39
43
  "eslint-plugin-svelte": "^2.34.0",
40
44
  "postcss": "^8.4.31",
@@ -52,6 +56,7 @@
52
56
  },
53
57
  "svelte": "./dist/index.js",
54
58
  "types": "./dist/index.d.ts",
59
+ "main": "./dist/index.js",
55
60
  "type": "module",
56
61
  "scripts": {
57
62
  "dev": "vite dev",