fix: pipeline with some missing
This commit is contained in:
parent
e5cecae352
commit
ceb090d60d
|
|
@ -3,6 +3,7 @@ import { Copy } from 'lucide-vue-next'
|
||||||
import { Button } from '@/lib/registry/default/ui/button'
|
import { Button } from '@/lib/registry/default/ui/button'
|
||||||
import {
|
import {
|
||||||
Dialog,
|
Dialog,
|
||||||
|
DialogClose,
|
||||||
DialogContent,
|
DialogContent,
|
||||||
DialogDescription,
|
DialogDescription,
|
||||||
DialogFooter,
|
DialogFooter,
|
||||||
|
|
|
||||||
11
apps/www/src/lib/registry/default/ui/dialog/DialogClose.vue
Normal file
11
apps/www/src/lib/registry/default/ui/dialog/DialogClose.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DialogClose, type DialogCloseProps } from 'radix-vue'
|
||||||
|
|
||||||
|
const props = defineProps<DialogCloseProps>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<DialogClose v-bind="props">
|
||||||
|
<slot />
|
||||||
|
</DialogClose>
|
||||||
|
</template>
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
export { default as Dialog } from './Dialog.vue'
|
export { default as Dialog } from './Dialog.vue'
|
||||||
|
export { default as DialogClose } from './DialogClose.vue'
|
||||||
export { default as DialogTrigger } from './DialogTrigger.vue'
|
export { default as DialogTrigger } from './DialogTrigger.vue'
|
||||||
export { default as DialogHeader } from './DialogHeader.vue'
|
export { default as DialogHeader } from './DialogHeader.vue'
|
||||||
export { default as DialogTitle } from './DialogTitle.vue'
|
export { default as DialogTitle } from './DialogTitle.vue'
|
||||||
|
|
|
||||||
|
|
@ -1,11 +1,11 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { AlertTriangle } from '@radix-icons/vue'
|
import { ExclamationTriangleIcon } from '@radix-icons/vue'
|
||||||
import { Alert, AlertDescription, AlertTitle } from '@/lib/registry/new-york/ui/alert'
|
import { Alert, AlertDescription, AlertTitle } from '@/lib/registry/new-york/ui/alert'
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Alert variant="destructive">
|
<Alert variant="destructive">
|
||||||
<AlertTriangle class="w-4 h-4" />
|
<ExclamationTriangleIcon class="w-4 h-4" />
|
||||||
<AlertTitle>Error</AlertTitle>
|
<AlertTitle>Error</AlertTitle>
|
||||||
<AlertDescription>
|
<AlertDescription>
|
||||||
Your session has expired. Please log in again.
|
Your session has expired. Please log in again.
|
||||||
|
|
|
||||||
11
apps/www/src/lib/registry/new-york/ui/dialog/DialogClose.vue
Normal file
11
apps/www/src/lib/registry/new-york/ui/dialog/DialogClose.vue
Normal file
|
|
@ -0,0 +1,11 @@
|
||||||
|
<script setup lang="ts">
|
||||||
|
import { DialogClose, type DialogCloseProps } from 'radix-vue'
|
||||||
|
|
||||||
|
const props = defineProps<DialogCloseProps>()
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<DialogClose v-bind="props">
|
||||||
|
<slot />
|
||||||
|
</DialogClose>
|
||||||
|
</template>
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
export { default as Dialog } from './Dialog.vue'
|
export { default as Dialog } from './Dialog.vue'
|
||||||
|
export { default as DialogClose } from './DialogClose.vue'
|
||||||
export { default as DialogTrigger } from './DialogTrigger.vue'
|
export { default as DialogTrigger } from './DialogTrigger.vue'
|
||||||
export { default as DialogHeader } from './DialogHeader.vue'
|
export { default as DialogHeader } from './DialogHeader.vue'
|
||||||
export { default as DialogTitle } from './DialogTitle.vue'
|
export { default as DialogTitle } from './DialogTitle.vue'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user