Changed quote styles
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from 'vue'
|
||||
import { PaginationEllipsis, type PaginationEllipsisProps } from 'radix-vue'
|
||||
import { MoreHorizontal } from 'lucide-vue-next'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { type HTMLAttributes, computed } from "vue"
|
||||
import { PaginationEllipsis, type PaginationEllipsisProps } from "radix-vue"
|
||||
import { MoreHorizontal } from "lucide-vue-next"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const props = defineProps<PaginationEllipsisProps & { class?: HTMLAttributes['class'] }>()
|
||||
const props = defineProps<PaginationEllipsisProps & { class?: HTMLAttributes["class"] }>()
|
||||
|
||||
const delegatedProps = computed(() => {
|
||||
const { class: _, ...delegated } = props
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from 'vue'
|
||||
import { PaginationFirst, type PaginationFirstProps } from 'radix-vue'
|
||||
import { ChevronsLeft } from 'lucide-vue-next'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { type HTMLAttributes, computed } from "vue"
|
||||
import { PaginationFirst, type PaginationFirstProps } from "radix-vue"
|
||||
import { ChevronsLeft } from "lucide-vue-next"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<PaginationFirstProps & { class?: HTMLAttributes['class'] }>(),
|
||||
defineProps<PaginationFirstProps & { class?: HTMLAttributes["class"] }>(),
|
||||
{
|
||||
asChild: true
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from 'vue'
|
||||
import { PaginationLast, type PaginationLastProps } from 'radix-vue'
|
||||
import { ChevronsRight } from 'lucide-vue-next'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { type HTMLAttributes, computed } from "vue"
|
||||
import { PaginationLast, type PaginationLastProps } from "radix-vue"
|
||||
import { ChevronsRight } from "lucide-vue-next"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<PaginationLastProps & { class?: HTMLAttributes['class'] }>(),
|
||||
defineProps<PaginationLastProps & { class?: HTMLAttributes["class"] }>(),
|
||||
{
|
||||
asChild: true
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from 'vue'
|
||||
import { PaginationNext, type PaginationNextProps } from 'radix-vue'
|
||||
import { ChevronRight } from 'lucide-vue-next'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { type HTMLAttributes, computed } from "vue"
|
||||
import { PaginationNext, type PaginationNextProps } from "radix-vue"
|
||||
import { ChevronRight } from "lucide-vue-next"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<PaginationNextProps & { class?: HTMLAttributes['class'] }>(),
|
||||
defineProps<PaginationNextProps & { class?: HTMLAttributes["class"] }>(),
|
||||
{
|
||||
asChild: true
|
||||
}
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
<script setup lang="ts">
|
||||
import { type HTMLAttributes, computed } from 'vue'
|
||||
import { PaginationPrev, type PaginationPrevProps } from 'radix-vue'
|
||||
import { ChevronLeft } from 'lucide-vue-next'
|
||||
import { Button } from '@/components/ui/button'
|
||||
import { cn } from '@/lib/utils'
|
||||
import { type HTMLAttributes, computed } from "vue"
|
||||
import { PaginationPrev, type PaginationPrevProps } from "radix-vue"
|
||||
import { ChevronLeft } from "lucide-vue-next"
|
||||
import { Button } from "@/components/ui/button"
|
||||
import { cn } from "@/lib/utils"
|
||||
|
||||
const props = withDefaults(
|
||||
defineProps<PaginationPrevProps & { class?: HTMLAttributes['class'] }>(),
|
||||
defineProps<PaginationPrevProps & { class?: HTMLAttributes["class"] }>(),
|
||||
{
|
||||
asChild: true
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
export { PaginationRoot as Pagination, PaginationList, PaginationListItem } from 'radix-vue'
|
||||
export { default as PaginationEllipsis } from './PaginationEllipsis.vue'
|
||||
export { default as PaginationFirst } from './PaginationFirst.vue'
|
||||
export { default as PaginationLast } from './PaginationLast.vue'
|
||||
export { default as PaginationNext } from './PaginationNext.vue'
|
||||
export { default as PaginationPrev } from './PaginationPrev.vue'
|
||||
export { PaginationRoot as Pagination, PaginationList, PaginationListItem } from "radix-vue"
|
||||
export { default as PaginationEllipsis } from "./PaginationEllipsis.vue"
|
||||
export { default as PaginationFirst } from "./PaginationFirst.vue"
|
||||
export { default as PaginationLast } from "./PaginationLast.vue"
|
||||
export { default as PaginationNext } from "./PaginationNext.vue"
|
||||
export { default as PaginationPrev } from "./PaginationPrev.vue"
|
||||
|
||||
Reference in New Issue
Block a user