Skip to content

Commit 56b3d93

Browse files
laserhybiztnylea
andauthored
Migrate to reka-ui (#55)
Co-authored-by: Tony Lea <[email protected]>
1 parent 0e9664e commit 56b3d93

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+144
-247
lines changed

components.json

+18-18
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,20 @@
11
{
2-
"$schema": "https://shadcn-vue.com/schema.json",
3-
"style": "default",
4-
"typescript": true,
5-
"tailwind": {
6-
"config": "tailwind.config.js",
7-
"css": "resources/css/app.css",
8-
"baseColor": "neutral",
9-
"cssVariables": true,
10-
"prefix": ""
11-
},
12-
"aliases": {
13-
"components": "@/components",
14-
"composables": "@/composables",
15-
"utils": "@/lib/utils",
16-
"ui": "@/components/ui",
17-
"lib": "@/lib"
18-
},
19-
"iconLibrary": "lucide"
2+
"$schema": "https://shadcn-vue.com/schema.json",
3+
"style": "default",
4+
"typescript": true,
5+
"tailwind": {
6+
"config": "tailwind.config.js",
7+
"css": "resources/css/app.css",
8+
"baseColor": "neutral",
9+
"cssVariables": true,
10+
"prefix": ""
11+
},
12+
"aliases": {
13+
"components": "@/components",
14+
"composables": "@/composables",
15+
"utils": "@/lib/utils",
16+
"ui": "@/components/ui",
17+
"lib": "@/lib"
18+
},
19+
"iconLibrary": "lucide"
2020
}

package-lock.json

+29-129
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"laravel-vite-plugin": "^1.0",
3434
"lucide": "^0.468.0",
3535
"lucide-vue-next": "^0.468.0",
36-
"radix-vue": "^1.9.11",
36+
"reka-ui": "^2.0.0",
3737
"tailwind-merge": "^2.5.5",
3838
"tailwindcss": "^3.4.1",
3939
"tailwindcss-animate": "^1.0.7",

resources/js/components/NavUser.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const { isMobile, state } = useSidebar();
2323
</SidebarMenuButton>
2424
</DropdownMenuTrigger>
2525
<DropdownMenuContent
26-
class="w-[--radix-dropdown-menu-trigger-width] min-w-56 rounded-lg"
26+
class="w-[--reka-dropdown-menu-trigger-width] min-w-56 rounded-lg"
2727
:side="isMobile ? 'bottom' : state === 'collapsed' ? 'left' : 'bottom'"
2828
align="end"
2929
:side-offset="4"

resources/js/components/ui/avatar/Avatar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { cn } from '@/lib/utils';
3-
import { AvatarRoot } from 'radix-vue';
3+
import { AvatarRoot } from 'reka-ui';
44
import type { HTMLAttributes } from 'vue';
55
import { avatarVariant, type AvatarVariants } from '.';
66

resources/js/components/ui/avatar/AvatarFallback.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { AvatarFallback, type AvatarFallbackProps } from 'radix-vue';
2+
import { AvatarFallback, type AvatarFallbackProps } from 'reka-ui';
33
44
const props = defineProps<AvatarFallbackProps>();
55
</script>

resources/js/components/ui/avatar/AvatarImage.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { AvatarImage, type AvatarImageProps } from 'radix-vue';
2+
import { AvatarImage, type AvatarImageProps } from 'reka-ui';
33
44
const props = defineProps<AvatarImageProps>();
55
</script>

resources/js/components/ui/breadcrumb/BreadcrumbLink.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script lang="ts" setup>
22
import { cn } from '@/lib/utils';
3-
import { Primitive, type PrimitiveProps } from 'radix-vue';
3+
import { Primitive, type PrimitiveProps } from 'reka-ui';
44
import type { HTMLAttributes } from 'vue';
55
66
const props = withDefaults(defineProps<PrimitiveProps & { class?: HTMLAttributes['class'] }>(), {

resources/js/components/ui/button/Button.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { cn } from '@/lib/utils';
3-
import { Primitive, type PrimitiveProps } from 'radix-vue';
3+
import { Primitive, type PrimitiveProps } from 'reka-ui';
44
import type { HTMLAttributes } from 'vue';
55
import { buttonVariants, type ButtonVariants } from '.';
66

resources/js/components/ui/button/index.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -7,18 +7,18 @@ export const buttonVariants = cva(
77
{
88
variants: {
99
variant: {
10-
default: 'bg-primary text-primary-foreground shadow hover:bg-primary/90',
11-
destructive: 'bg-destructive text-destructive-foreground shadow-sm hover:bg-destructive/90',
12-
outline: 'border border-input bg-background shadow-sm hover:bg-accent hover:text-accent-foreground',
13-
secondary: 'bg-secondary text-secondary-foreground shadow-sm hover:bg-secondary/80',
10+
default: 'bg-primary text-primary-foreground hover:bg-primary/90',
11+
destructive: 'bg-destructive text-destructive-foreground hover:bg-destructive/90',
12+
outline: 'border border-input bg-background hover:bg-accent hover:text-accent-foreground',
13+
secondary: 'bg-secondary text-secondary-foreground hover:bg-secondary/80',
1414
ghost: 'hover:bg-accent hover:text-accent-foreground',
1515
link: 'text-primary underline-offset-4 hover:underline',
1616
},
1717
size: {
18-
default: 'h-9 px-4 py-2',
19-
sm: 'h-8 rounded-md px-3 text-xs',
20-
lg: 'h-10 rounded-md px-8',
21-
icon: 'h-9 w-9',
18+
default: 'h-10 px-4 py-2',
19+
sm: 'h-9 rounded-md px-3',
20+
lg: 'h-11 rounded-md px-8',
21+
icon: 'h-10 w-10',
2222
},
2323
},
2424
defaultVariants: {

resources/js/components/ui/checkbox/Checkbox.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<script setup lang="ts">
2-
import type { CheckboxRootEmits, CheckboxRootProps } from 'radix-vue'
2+
import type { CheckboxRootEmits, CheckboxRootProps } from 'reka-ui'
33
import { cn } from '@/lib/utils'
44
import { Check } from 'lucide-vue-next'
5-
import { CheckboxIndicator, CheckboxRoot, useForwardPropsEmits } from 'radix-vue'
5+
import { CheckboxIndicator, CheckboxRoot, useForwardPropsEmits } from 'reka-ui'
66
import { computed, type HTMLAttributes } from 'vue'
77
88
const props = defineProps<CheckboxRootProps & { class?: HTMLAttributes['class'] }>()

resources/js/components/ui/collapsible/Collapsible.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
2-
import type { CollapsibleRootEmits, CollapsibleRootProps } from 'radix-vue';
3-
import { CollapsibleRoot, useForwardPropsEmits } from 'radix-vue';
2+
import type { CollapsibleRootEmits, CollapsibleRootProps } from 'reka-ui';
3+
import { CollapsibleRoot, useForwardPropsEmits } from 'reka-ui';
44
55
const props = defineProps<CollapsibleRootProps>();
66
const emits = defineEmits<CollapsibleRootEmits>();

resources/js/components/ui/collapsible/CollapsibleContent.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { CollapsibleContent, type CollapsibleContentProps } from 'radix-vue';
2+
import { CollapsibleContent, type CollapsibleContentProps } from 'reka-ui';
33
44
const props = defineProps<CollapsibleContentProps>();
55
</script>

resources/js/components/ui/collapsible/CollapsibleTrigger.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { CollapsibleTrigger, type CollapsibleTriggerProps } from 'radix-vue';
2+
import { CollapsibleTrigger, type CollapsibleTriggerProps } from 'reka-ui';
33
44
const props = defineProps<CollapsibleTriggerProps>();
55
</script>

resources/js/components/ui/dialog/Dialog.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { DialogRoot, useForwardPropsEmits, type DialogRootEmits, type DialogRootProps } from 'radix-vue';
2+
import { DialogRoot, useForwardPropsEmits, type DialogRootEmits, type DialogRootProps } from 'reka-ui';
33
44
const props = defineProps<DialogRootProps>();
55
const emits = defineEmits<DialogRootEmits>();

resources/js/components/ui/dialog/DialogClose.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<script setup lang="ts">
2-
import { DialogClose, type DialogCloseProps } from 'radix-vue';
2+
import { DialogClose, type DialogCloseProps } from 'reka-ui';
33
44
const props = defineProps<DialogCloseProps>();
55
</script>

resources/js/components/ui/dialog/DialogContent.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
useForwardPropsEmits,
1010
type DialogContentEmits,
1111
type DialogContentProps,
12-
} from 'radix-vue';
12+
} from 'reka-ui';
1313
import { computed, type HTMLAttributes } from 'vue';
1414
1515
const props = defineProps<DialogContentProps & { class?: HTMLAttributes['class'] }>();

resources/js/components/ui/dialog/DialogDescription.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { cn } from '@/lib/utils';
3-
import { DialogDescription, useForwardProps, type DialogDescriptionProps } from 'radix-vue';
3+
import { DialogDescription, useForwardProps, type DialogDescriptionProps } from 'reka-ui';
44
import { computed, type HTMLAttributes } from 'vue';
55
66
const props = defineProps<DialogDescriptionProps & { class?: HTMLAttributes['class'] }>();

resources/js/components/ui/dialog/DialogScrollContent.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
useForwardPropsEmits,
1010
type DialogContentEmits,
1111
type DialogContentProps,
12-
} from 'radix-vue';
12+
} from 'reka-ui';
1313
import { computed, type HTMLAttributes } from 'vue';
1414
1515
const props = defineProps<DialogContentProps & { class?: HTMLAttributes['class'] }>();

resources/js/components/ui/dialog/DialogTitle.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<script setup lang="ts">
22
import { cn } from '@/lib/utils';
3-
import { DialogTitle, useForwardProps, type DialogTitleProps } from 'radix-vue';
3+
import { DialogTitle, useForwardProps, type DialogTitleProps } from 'reka-ui';
44
import { computed, type HTMLAttributes } from 'vue';
55
66
const props = defineProps<DialogTitleProps & { class?: HTMLAttributes['class'] }>();

0 commit comments

Comments
 (0)