ivt
Version:
Ivt Components Library
1 lines • 19.3 kB
Source Map (JSON)
{"version":3,"file":"index.mjs","sources":["../../node_modules/@radix-ui/react-alert-dialog/dist/index.mjs","../../src/components/ui/alert-dialog/alert-dialog.tsx"],"sourcesContent":["\"use client\";\n\n// src/alert-dialog.tsx\nimport * as React from \"react\";\nimport { createContextScope } from \"@radix-ui/react-context\";\nimport { useComposedRefs } from \"@radix-ui/react-compose-refs\";\nimport * as DialogPrimitive from \"@radix-ui/react-dialog\";\nimport { createDialogScope } from \"@radix-ui/react-dialog\";\nimport { composeEventHandlers } from \"@radix-ui/primitive\";\nimport { createSlottable } from \"@radix-ui/react-slot\";\nimport { jsx, jsxs } from \"react/jsx-runtime\";\nvar ROOT_NAME = \"AlertDialog\";\nvar [createAlertDialogContext, createAlertDialogScope] = createContextScope(ROOT_NAME, [\n createDialogScope\n]);\nvar useDialogScope = createDialogScope();\nvar AlertDialog = (props) => {\n const { __scopeAlertDialog, ...alertDialogProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Root, { ...dialogScope, ...alertDialogProps, modal: true });\n};\nAlertDialog.displayName = ROOT_NAME;\nvar TRIGGER_NAME = \"AlertDialogTrigger\";\nvar AlertDialogTrigger = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, ...triggerProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Trigger, { ...dialogScope, ...triggerProps, ref: forwardedRef });\n }\n);\nAlertDialogTrigger.displayName = TRIGGER_NAME;\nvar PORTAL_NAME = \"AlertDialogPortal\";\nvar AlertDialogPortal = (props) => {\n const { __scopeAlertDialog, ...portalProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Portal, { ...dialogScope, ...portalProps });\n};\nAlertDialogPortal.displayName = PORTAL_NAME;\nvar OVERLAY_NAME = \"AlertDialogOverlay\";\nvar AlertDialogOverlay = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, ...overlayProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Overlay, { ...dialogScope, ...overlayProps, ref: forwardedRef });\n }\n);\nAlertDialogOverlay.displayName = OVERLAY_NAME;\nvar CONTENT_NAME = \"AlertDialogContent\";\nvar [AlertDialogContentProvider, useAlertDialogContentContext] = createAlertDialogContext(CONTENT_NAME);\nvar Slottable = createSlottable(\"AlertDialogContent\");\nvar AlertDialogContent = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, children, ...contentProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n const contentRef = React.useRef(null);\n const composedRefs = useComposedRefs(forwardedRef, contentRef);\n const cancelRef = React.useRef(null);\n return /* @__PURE__ */ jsx(\n DialogPrimitive.WarningProvider,\n {\n contentName: CONTENT_NAME,\n titleName: TITLE_NAME,\n docsSlug: \"alert-dialog\",\n children: /* @__PURE__ */ jsx(AlertDialogContentProvider, { scope: __scopeAlertDialog, cancelRef, children: /* @__PURE__ */ jsxs(\n DialogPrimitive.Content,\n {\n role: \"alertdialog\",\n ...dialogScope,\n ...contentProps,\n ref: composedRefs,\n onOpenAutoFocus: composeEventHandlers(contentProps.onOpenAutoFocus, (event) => {\n event.preventDefault();\n cancelRef.current?.focus({ preventScroll: true });\n }),\n onPointerDownOutside: (event) => event.preventDefault(),\n onInteractOutside: (event) => event.preventDefault(),\n children: [\n /* @__PURE__ */ jsx(Slottable, { children }),\n /* @__PURE__ */ jsx(DescriptionWarning, { contentRef })\n ]\n }\n ) })\n }\n );\n }\n);\nAlertDialogContent.displayName = CONTENT_NAME;\nvar TITLE_NAME = \"AlertDialogTitle\";\nvar AlertDialogTitle = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, ...titleProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Title, { ...dialogScope, ...titleProps, ref: forwardedRef });\n }\n);\nAlertDialogTitle.displayName = TITLE_NAME;\nvar DESCRIPTION_NAME = \"AlertDialogDescription\";\nvar AlertDialogDescription = React.forwardRef((props, forwardedRef) => {\n const { __scopeAlertDialog, ...descriptionProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Description, { ...dialogScope, ...descriptionProps, ref: forwardedRef });\n});\nAlertDialogDescription.displayName = DESCRIPTION_NAME;\nvar ACTION_NAME = \"AlertDialogAction\";\nvar AlertDialogAction = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, ...actionProps } = props;\n const dialogScope = useDialogScope(__scopeAlertDialog);\n return /* @__PURE__ */ jsx(DialogPrimitive.Close, { ...dialogScope, ...actionProps, ref: forwardedRef });\n }\n);\nAlertDialogAction.displayName = ACTION_NAME;\nvar CANCEL_NAME = \"AlertDialogCancel\";\nvar AlertDialogCancel = React.forwardRef(\n (props, forwardedRef) => {\n const { __scopeAlertDialog, ...cancelProps } = props;\n const { cancelRef } = useAlertDialogContentContext(CANCEL_NAME, __scopeAlertDialog);\n const dialogScope = useDialogScope(__scopeAlertDialog);\n const ref = useComposedRefs(forwardedRef, cancelRef);\n return /* @__PURE__ */ jsx(DialogPrimitive.Close, { ...dialogScope, ...cancelProps, ref });\n }\n);\nAlertDialogCancel.displayName = CANCEL_NAME;\nvar DescriptionWarning = ({ contentRef }) => {\n const MESSAGE = `\\`${CONTENT_NAME}\\` requires a description for the component to be accessible for screen reader users.\n\nYou can add a description to the \\`${CONTENT_NAME}\\` by passing a \\`${DESCRIPTION_NAME}\\` component as a child, which also benefits sighted users by adding visible context to the dialog.\n\nAlternatively, you can use your own component as a description by assigning it an \\`id\\` and passing the same value to the \\`aria-describedby\\` prop in \\`${CONTENT_NAME}\\`. If the description is confusing or duplicative for sighted users, you can use the \\`@radix-ui/react-visually-hidden\\` primitive as a wrapper around your description component.\n\nFor more information, see https://radix-ui.com/primitives/docs/components/alert-dialog`;\n React.useEffect(() => {\n const hasDescription = document.getElementById(\n contentRef.current?.getAttribute(\"aria-describedby\")\n );\n if (!hasDescription) console.warn(MESSAGE);\n }, [MESSAGE, contentRef]);\n return null;\n};\nvar Root2 = AlertDialog;\nvar Trigger2 = AlertDialogTrigger;\nvar Portal2 = AlertDialogPortal;\nvar Overlay2 = AlertDialogOverlay;\nvar Content2 = AlertDialogContent;\nvar Action = AlertDialogAction;\nvar Cancel = AlertDialogCancel;\nvar Title2 = AlertDialogTitle;\nvar Description2 = AlertDialogDescription;\nexport {\n Action,\n AlertDialog,\n AlertDialogAction,\n AlertDialogCancel,\n AlertDialogContent,\n AlertDialogDescription,\n AlertDialogOverlay,\n AlertDialogPortal,\n AlertDialogTitle,\n AlertDialogTrigger,\n Cancel,\n Content2 as Content,\n Description2 as Description,\n Overlay2 as Overlay,\n Portal2 as Portal,\n Root2 as Root,\n Title2 as Title,\n Trigger2 as Trigger,\n createAlertDialogScope\n};\n//# sourceMappingURL=index.mjs.map\n","\"use client\";\n\nimport * as AlertDialogPrimitive from \"@radix-ui/react-alert-dialog\";\nimport * as React from \"react\";\n\nimport { buttonVariants } from \"@/components/ui/button\";\nimport { cn } from \"@/lib/utils\";\n\nfunction AlertDialog({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Root>) {\n\treturn <AlertDialogPrimitive.Root data-slot=\"alert-dialog\" {...props} />;\n}\n\nfunction AlertDialogTrigger({\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Trigger>) {\n\treturn <AlertDialogPrimitive.Trigger data-slot=\"alert-dialog-trigger\" {...props} />;\n}\n\nfunction AlertDialogPortal({ ...props }: React.ComponentProps<typeof AlertDialogPrimitive.Portal>) {\n\treturn <AlertDialogPrimitive.Portal data-slot=\"alert-dialog-portal\" {...props} />;\n}\n\nfunction AlertDialogOverlay({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Overlay>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Overlay\n\t\t\tdata-slot=\"alert-dialog-overlay\"\n\t\t\tclassName={cn(\n\t\t\t\t\"data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 fixed inset-0 z-50 bg-black/50\",\n\t\t\t\tclassName,\n\t\t\t)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogContent({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Content>) {\n\treturn (\n\t\t<AlertDialogPortal>\n\t\t\t<AlertDialogOverlay />\n\t\t\t<AlertDialogPrimitive.Content\n\t\t\t\tdata-slot=\"alert-dialog-content\"\n\t\t\t\tclassName={cn(\n\t\t\t\t\t\"bg-background data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 fixed top-[50%] left-[50%] z-50 grid w-full max-w-[calc(100%-2rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded-lg border p-6 shadow-lg duration-200 sm:max-w-lg\",\n\t\t\t\t\tclassName,\n\t\t\t\t)}\n\t\t\t\t{...props}\n\t\t\t/>\n\t\t</AlertDialogPortal>\n\t);\n}\n\nfunction AlertDialogHeader({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tdata-slot=\"alert-dialog-header\"\n\t\t\tclassName={cn(\"flex flex-col gap-2 text-center sm:text-left\", className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogFooter({ className, ...props }: React.ComponentProps<\"div\">) {\n\treturn (\n\t\t<div\n\t\t\tdata-slot=\"alert-dialog-footer\"\n\t\t\tclassName={cn(\"flex flex-col-reverse gap-2 sm:flex-row sm:justify-end\", className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogTitle({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Title>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Title\n\t\t\tdata-slot=\"alert-dialog-title\"\n\t\t\tclassName={cn(\"text-lg font-semibold\", className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogDescription({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Description>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Description\n\t\t\tdata-slot=\"alert-dialog-description\"\n\t\t\tclassName={cn(\"text-muted-foreground text-sm\", className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nfunction AlertDialogAction({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Action>) {\n\treturn <AlertDialogPrimitive.Action className={cn(buttonVariants(), className)} {...props} />;\n}\n\nfunction AlertDialogCancel({\n\tclassName,\n\t...props\n}: React.ComponentProps<typeof AlertDialogPrimitive.Cancel>) {\n\treturn (\n\t\t<AlertDialogPrimitive.Cancel\n\t\t\tclassName={cn(buttonVariants({ variant: \"outline\" }), className)}\n\t\t\t{...props}\n\t\t/>\n\t);\n}\n\nexport {\n\tAlertDialog,\n\tAlertDialogPortal,\n\tAlertDialogOverlay,\n\tAlertDialogTrigger,\n\tAlertDialogContent,\n\tAlertDialogHeader,\n\tAlertDialogFooter,\n\tAlertDialogTitle,\n\tAlertDialogDescription,\n\tAlertDialogAction,\n\tAlertDialogCancel,\n};\n"],"names":["AlertDialog","DialogPrimitive.Root","AlertDialogTrigger","DialogPrimitive.Trigger","AlertDialogPortal","DialogPrimitive.Portal","AlertDialogOverlay","DialogPrimitive.Overlay","AlertDialogContent","DialogPrimitive.WarningProvider","DialogPrimitive.Content","AlertDialogTitle","DialogPrimitive.Title","AlertDialogDescription","DialogPrimitive.Description","AlertDialogAction","DialogPrimitive.Close","AlertDialogCancel","Root","Trigger","Portal","Overlay","Content","Title","Description","props","AlertDialogPrimitive","data-slot","className","cn","AlertDialogHeader","div","AlertDialogFooter","buttonVariants","variant"],"mappings":"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","x_google_ignoreList":[0]}