diff --git a/apps/www/src/lib/registry/default/example/ButtonLoadingDemo.vue b/apps/www/src/lib/registry/default/example/ButtonLoadingDemo.vue index 221e1403..6207909c 100644 --- a/apps/www/src/lib/registry/default/example/ButtonLoadingDemo.vue +++ b/apps/www/src/lib/registry/default/example/ButtonLoadingDemo.vue @@ -5,7 +5,7 @@ import { Button } from '@/lib/registry/default/ui/button' diff --git a/apps/www/src/lib/registry/default/example/ButtonWithIconDemo.vue b/apps/www/src/lib/registry/default/example/ButtonWithIconDemo.vue index 801e4ebe..9ace85ba 100644 --- a/apps/www/src/lib/registry/default/example/ButtonWithIconDemo.vue +++ b/apps/www/src/lib/registry/default/example/ButtonWithIconDemo.vue @@ -5,6 +5,6 @@ import { Button } from '@/lib/registry/default/ui/button' diff --git a/apps/www/src/lib/registry/default/example/CardChat.vue b/apps/www/src/lib/registry/default/example/CardChat.vue index 66089f4e..d80997ea 100644 --- a/apps/www/src/lib/registry/default/example/CardChat.vue +++ b/apps/www/src/lib/registry/default/example/CardChat.vue @@ -105,7 +105,7 @@ const selectedUsers = ref([]) :key="index" :class="cn( 'flex w-max max-w-[75%] flex-col gap-2 rounded-lg px-3 py-2 text-sm', - message.role === 'user' ? 'ml-auto bg-primary text-primary-foreground' : 'bg-muted', + message.role === 'user' ? 'ms-auto bg-primary text-primary-foreground' : 'bg-muted', )" > {{ message.content }} @@ -168,7 +168,7 @@ const selectedUsers = ref([]) {{ user.name[0] }} -
+

{{ user.name }}

@@ -176,7 +176,7 @@ const selectedUsers = ref([]) {{ user.email }}

- + diff --git a/apps/www/src/lib/registry/default/example/CardDemo.vue b/apps/www/src/lib/registry/default/example/CardDemo.vue index 81e6eff7..7b6b4d3a 100644 --- a/apps/www/src/lib/registry/default/example/CardDemo.vue +++ b/apps/www/src/lib/registry/default/example/CardDemo.vue @@ -67,7 +67,7 @@ const notifications = [ diff --git a/apps/www/src/lib/registry/default/example/Cards/DataTable.vue b/apps/www/src/lib/registry/default/example/Cards/DataTable.vue index e208a04a..33b3215a 100644 --- a/apps/www/src/lib/registry/default/example/Cards/DataTable.vue +++ b/apps/www/src/lib/registry/default/example/Cards/DataTable.vue @@ -104,7 +104,7 @@ const columns: ColumnDef[] = [ return h(Button, { variant: 'ghost', onClick: () => column.toggleSorting(column.getIsSorted() === 'asc'), - }, ['Email', h(ChevronsUpDown, { class: 'ml-2 h-4 w-4' })]) + }, ['Email', h(ChevronsUpDown, { class: 'ms-2 h-4 w-4' })]) }, cell: ({ row }) => h('div', { class: 'lowercase' }, row.getValue('email')), }, @@ -178,8 +178,8 @@ const table = useVueTable({ /> - @@ -201,7 +201,7 @@ const table = useVueTable({ - + @@ -213,7 +213,7 @@ const table = useVueTable({ :key="row.id" :data-state="row.getIsSelected() && 'selected'" > - + diff --git a/apps/www/src/lib/registry/default/example/CarouselSpacing.vue b/apps/www/src/lib/registry/default/example/CarouselSpacing.vue index 04bc1024..650a4844 100644 --- a/apps/www/src/lib/registry/default/example/CarouselSpacing.vue +++ b/apps/www/src/lib/registry/default/example/CarouselSpacing.vue @@ -10,8 +10,8 @@ import { Card, CardContent } from '@/lib/registry/default/ui/card' align: 'start', }" > - - + +
diff --git a/apps/www/src/lib/registry/default/example/ComboboxDemo.vue b/apps/www/src/lib/registry/default/example/ComboboxDemo.vue index da21cf4e..33d35245 100644 --- a/apps/www/src/lib/registry/default/example/ComboboxDemo.vue +++ b/apps/www/src/lib/registry/default/example/ComboboxDemo.vue @@ -44,7 +44,7 @@ const value = ref('') {{ value ? frameworks.find((framework) => framework.value === value)?.label : "Select framework..." }} - + @@ -67,7 +67,7 @@ const value = ref('') {{ framework.label }} diff --git a/apps/www/src/lib/registry/default/example/ComboboxDropdownMenu.vue b/apps/www/src/lib/registry/default/example/ComboboxDropdownMenu.vue index a274c0c5..671cc98d 100644 --- a/apps/www/src/lib/registry/default/example/ComboboxDropdownMenu.vue +++ b/apps/www/src/lib/registry/default/example/ComboboxDropdownMenu.vue @@ -42,7 +42,7 @@ const open = ref(false)