@lotte-innovate/ui-component-test 0.2.79 → 0.2.80
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/lib/components/Modal/ModalContent.js +2 -2
- package/dist/lib/components/Modal/ModalContent.mjs +1 -1
- package/dist/lib/components/Modal/ModalOverlay.d.ts +3 -0
- package/dist/lib/components/Modal/ModalOverlay.js +31 -0
- package/dist/lib/components/Modal/ModalOverlay.mjs +2 -0
- package/dist/lib/components/Modal/ModalOverlay.mjs.map +1 -0
- package/dist/lib/components/Modal/ModalPortal.d.ts +6 -0
- package/dist/lib/components/Modal/ModalPortal.js +29 -0
- package/dist/lib/components/Modal/ModalPortal.mjs +2 -0
- package/dist/lib/components/Modal/ModalPortal.mjs.map +1 -0
- package/dist/lib/components/Modal/index.d.ts +5 -0
- package/dist/lib/components/Modal/index.js +4 -0
- package/dist/lib/components/Modal/index.mjs +1 -1
- package/dist/lib/components/Modal/index.mjs.map +1 -1
- package/dist/lib/tsconfig.tsbuildinfo +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
@@ -21,7 +21,7 @@ var __rest = (this && this.__rest) || function (s, e) {
|
|
21
21
|
}
|
22
22
|
return t;
|
23
23
|
};
|
24
|
-
import { jsx as _jsx
|
24
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
25
25
|
import { forwardRef, useContext } from 'react';
|
26
26
|
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
27
27
|
import { cva } from 'class-variance-authority';
|
@@ -56,6 +56,6 @@ export var ModalContent = forwardRef(function (_a, ref) {
|
|
56
56
|
var ModalStyle = {
|
57
57
|
'--max-width': '1200px',
|
58
58
|
};
|
59
|
-
return (
|
59
|
+
return (_jsx(DialogPrimitive.Content, __assign({ ref: ref, "aria-describedby": ariaDescribedby !== undefined ? ariaDescribedby : undefined, className: cn(modalContentVariants({ radius: radius, size: size, scaling: scaling }), className), style: ModalStyle }, props, { children: children })));
|
60
60
|
});
|
61
61
|
ModalContent.displayName = 'Modal.Content';
|
@@ -1,3 +1,3 @@
|
|
1
1
|
"use client";
|
2
|
-
import{
|
2
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as e,useContext as t}from"react";import*as a from"@radix-ui/react-dialog";import{cva as o}from"class-variance-authority";import{scalingVariants as n}from"../../constants.mjs";import{ModalContext as i}from"./ModalRoot.mjs";import{cn as s}from"../../utils/utils.mjs";var l=function(){return l=Object.assign||function(r){for(var e,t=1,a=arguments.length;t<a;t++)for(var o in e=arguments[t])Object.prototype.hasOwnProperty.call(e,o)&&(r[o]=e[o]);return r},l.apply(this,arguments)},d=function(r,e){var t={};for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&e.indexOf(a)<0&&(t[a]=r[a]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var o=0;for(a=Object.getOwnPropertySymbols(r);o<a.length;o++)e.indexOf(a[o])<0&&Object.prototype.propertyIsEnumerable.call(r,a[o])&&(t[a[o]]=r[a[o]])}return t},p=o("fixed top-[50%] left-[50%] focus:outline-none\n translate-x-[-50%] translate-y-[-50%] data-[state=open]:animate-contentShow bg-white dark:bg-slateDark-1 \n shadow-[hsl(206_22%_7%_/_35%)_0px_10px_38px_-10px,_hsl(206_22%_7%_/_20%)_0px_10px_20px_-15px]",{variants:{radius:{none:"rounded-none",small:"rounded",medium:"rounded-lg",large:"rounded-xl",full:"rounded-xl"},size:{small:"w-[600px]",medium:"w-[800px]",large:"w-[1000px]","x-large":"w-[1200px]"},scaling:l({},n)},defaultVariants:{radius:"medium",size:"medium"}}),m=e((function(e,o){var n=e.children,m=e.className,c=e["aria-describedby"],u=d(e,["children","className","aria-describedby"]),f=t(i),x=f.radius,y=f.size,b=f.scaling;return r(a.Content,l({ref:o,"aria-describedby":void 0!==c?c:void 0,className:s(p({radius:x,size:y,scaling:b}),m),style:{"--max-width":"1200px"}},u,{children:n}))}));m.displayName="Modal.Content";export{m as ModalContent,p as modalContentVariants};
|
3
3
|
//# sourceMappingURL=ModalContent.mjs.map
|
@@ -0,0 +1,3 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
3
|
+
export declare const ModalOverlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
@@ -0,0 +1,31 @@
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
2
|
+
__assign = Object.assign || function(t) {
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
+
s = arguments[i];
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
+
t[p] = s[p];
|
7
|
+
}
|
8
|
+
return t;
|
9
|
+
};
|
10
|
+
return __assign.apply(this, arguments);
|
11
|
+
};
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
+
var t = {};
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
+
t[p] = s[p];
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
+
t[p[i]] = s[p[i]];
|
20
|
+
}
|
21
|
+
return t;
|
22
|
+
};
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
24
|
+
import { forwardRef } from 'react';
|
25
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
26
|
+
import { cn } from '../../../lib/utils/utils';
|
27
|
+
export var ModalOverlay = forwardRef(function (_a, ref) {
|
28
|
+
var children = _a.children, className = _a.className, props = __rest(_a, ["children", "className"]);
|
29
|
+
return (_jsx(DialogPrimitive.Overlay, __assign({ ref: ref, style: { backgroundColor: '#00000066' }, className: cn('fixed inset-0 data-[state=open]:animate-overlayShow', className) }, props, { children: children })));
|
30
|
+
});
|
31
|
+
ModalOverlay.displayName = 'Modal.ModalOverlay';
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import{forwardRef as e}from"react";import*as t from"@radix-ui/react-dialog";import{cn as o}from"../../utils/utils.mjs";var a=function(){return a=Object.assign||function(r){for(var e,t=1,o=arguments.length;t<o;t++)for(var a in e=arguments[t])Object.prototype.hasOwnProperty.call(e,a)&&(r[a]=e[a]);return r},a.apply(this,arguments)},n=function(r,e){var t={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&e.indexOf(o)<0&&(t[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var a=0;for(o=Object.getOwnPropertySymbols(r);a<o.length;a++)e.indexOf(o[a])<0&&Object.prototype.propertyIsEnumerable.call(r,o[a])&&(t[o[a]]=r[o[a]])}return t},l=e((function(e,l){var i=e.children,c=e.className,s=n(e,["children","className"]);return r(t.Overlay,a({ref:l,style:{backgroundColor:"#00000066"},className:o("fixed inset-0 data-[state=open]:animate-overlayShow",c)},s,{children:i}))}));l.displayName="Modal.ModalOverlay";export{l as ModalOverlay};
|
2
|
+
//# sourceMappingURL=ModalOverlay.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ModalOverlay.mjs","sources":["../../../lib/components/Modal/ModalOverlay.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport { forwardRef } from 'react';\nimport * as DialogPrimitive from '@radix-ui/react-dialog';\nimport { cn } from '../../../lib/utils/utils';\nexport var ModalOverlay = forwardRef(function (_a, ref) {\n var children = _a.children, className = _a.className, props = __rest(_a, [\"children\", \"className\"]);\n return (_jsx(DialogPrimitive.Overlay, __assign({ ref: ref, style: { backgroundColor: '#00000066' }, className: cn('fixed inset-0 data-[state=open]:animate-overlayShow', className) }, props, { children: children })));\n});\nModalOverlay.displayName = 'Modal.ModalOverlay';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","ModalOverlay","forwardRef","_a","ref","children","className","props","_jsx","DialogPrimitive","Overlay","style","backgroundColor","cn","displayName"],"mappings":"+JAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAKWiB,EAAeC,GAAW,SAAUC,EAAIC,GAC/C,IAAIC,EAAWF,EAAGE,SAAUC,EAAYH,EAAGG,UAAWC,EAAQX,EAAOO,EAAI,CAAC,WAAY,cACtF,OAAQK,EAAKC,EAAgBC,QAAS7B,EAAS,CAAEuB,IAAKA,EAAKO,MAAO,CAAEC,gBAAiB,aAAeN,UAAWO,EAAG,sDAAuDP,IAAcC,EAAO,CAAEF,SAAUA,IAC9M,IACAJ,EAAaa,YAAc"}
|
@@ -0,0 +1,6 @@
|
|
1
|
+
import { ComponentPropsWithoutRef } from 'react';
|
2
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
3
|
+
export declare const ModalPortal: {
|
4
|
+
({ children, ...props }: ComponentPropsWithoutRef<typeof DialogPrimitive.Portal>): import("react/jsx-runtime").JSX.Element;
|
5
|
+
displayName: string;
|
6
|
+
};
|
@@ -0,0 +1,29 @@
|
|
1
|
+
var __assign = (this && this.__assign) || function () {
|
2
|
+
__assign = Object.assign || function(t) {
|
3
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
4
|
+
s = arguments[i];
|
5
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
6
|
+
t[p] = s[p];
|
7
|
+
}
|
8
|
+
return t;
|
9
|
+
};
|
10
|
+
return __assign.apply(this, arguments);
|
11
|
+
};
|
12
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
13
|
+
var t = {};
|
14
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
15
|
+
t[p] = s[p];
|
16
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
17
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
18
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
19
|
+
t[p[i]] = s[p[i]];
|
20
|
+
}
|
21
|
+
return t;
|
22
|
+
};
|
23
|
+
import { jsx as _jsx } from "react/jsx-runtime";
|
24
|
+
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
25
|
+
export var ModalPortal = function (_a) {
|
26
|
+
var children = _a.children, props = __rest(_a, ["children"]);
|
27
|
+
return (_jsx(DialogPrimitive.Portal, __assign({}, props, { children: children })));
|
28
|
+
};
|
29
|
+
ModalPortal.displayName = 'Modal.ModalPortal';
|
@@ -0,0 +1,2 @@
|
|
1
|
+
import{jsx as r}from"react/jsx-runtime";import*as t from"@radix-ui/react-dialog";var e=function(){return e=Object.assign||function(r){for(var t,e=1,o=arguments.length;e<o;e++)for(var n in t=arguments[e])Object.prototype.hasOwnProperty.call(t,n)&&(r[n]=t[n]);return r},e.apply(this,arguments)},o=function(r,t){var e={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&t.indexOf(o)<0&&(e[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var n=0;for(o=Object.getOwnPropertySymbols(r);n<o.length;n++)t.indexOf(o[n])<0&&Object.prototype.propertyIsEnumerable.call(r,o[n])&&(e[o[n]]=r[o[n]])}return e},n=function(n){var a=n.children,l=o(n,["children"]);return r(t.Portal,e({},l,{children:a}))};n.displayName="Modal.ModalPortal";export{n as ModalPortal};
|
2
|
+
//# sourceMappingURL=ModalPortal.mjs.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"ModalPortal.mjs","sources":["../../../lib/components/Modal/ModalPortal.js"],"sourcesContent":["var __assign = (this && this.__assign) || function () {\n __assign = Object.assign || function(t) {\n for (var s, i = 1, n = arguments.length; i < n; i++) {\n s = arguments[i];\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))\n t[p] = s[p];\n }\n return t;\n };\n return __assign.apply(this, arguments);\n};\nvar __rest = (this && this.__rest) || function (s, e) {\n var t = {};\n for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)\n t[p] = s[p];\n if (s != null && typeof Object.getOwnPropertySymbols === \"function\")\n for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {\n if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))\n t[p[i]] = s[p[i]];\n }\n return t;\n};\nimport { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as DialogPrimitive from '@radix-ui/react-dialog';\nexport var ModalPortal = function (_a) {\n var children = _a.children, props = __rest(_a, [\"children\"]);\n return (_jsx(DialogPrimitive.Portal, __assign({}, props, { children: children })));\n};\nModalPortal.displayName = 'Modal.ModalPortal';\n"],"names":["__assign","Object","assign","t","s","i","n","arguments","length","p","prototype","hasOwnProperty","call","apply","this","__rest","e","indexOf","getOwnPropertySymbols","propertyIsEnumerable","ModalPortal","_a","children","props","_jsx","DialogPrimitive","Portal","displayName"],"mappings":"iFAAA,IAAIA,EAAsC,WAStC,OARAA,EAAWC,OAAOC,QAAU,SAASC,GACjC,IAAK,IAAIC,EAAGC,EAAI,EAAGC,EAAIC,UAAUC,OAAQH,EAAIC,EAAGD,IAE5C,IAAK,IAAII,KADTL,EAAIG,UAAUF,GACOJ,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,KACzDN,EAAEM,GAAKL,EAAEK,IAEjB,OAAON,CACf,EACWH,EAASa,MAAMC,KAAMP,UAChC,EACIQ,EAAkC,SAAUX,EAAGY,GAC/C,IAAIb,EAAI,CAAA,EACR,IAAK,IAAIM,KAAKL,EAAOH,OAAOS,UAAUC,eAAeC,KAAKR,EAAGK,IAAMO,EAAEC,QAAQR,GAAK,IAC9EN,EAAEM,GAAKL,EAAEK,IACb,GAAS,MAALL,GAAqD,mBAAjCH,OAAOiB,sBACtB,KAAIb,EAAI,EAAb,IAAgBI,EAAIR,OAAOiB,sBAAsBd,GAAIC,EAAII,EAAED,OAAQH,IAC3DW,EAAEC,QAAQR,EAAEJ,IAAM,GAAKJ,OAAOS,UAAUS,qBAAqBP,KAAKR,EAAGK,EAAEJ,MACvEF,EAAEM,EAAEJ,IAAMD,EAAEK,EAAEJ,IAF4B,CAItD,OAAOF,CACX,EAGWiB,EAAc,SAAUC,GAC/B,IAAIC,EAAWD,EAAGC,SAAUC,EAAQR,EAAOM,EAAI,CAAC,aAChD,OAAQG,EAAKC,EAAgBC,OAAQ1B,EAAS,CAAA,EAAIuB,EAAO,CAAED,SAAUA,IACzE,EACAF,EAAYO,YAAc"}
|
@@ -2,6 +2,11 @@
|
|
2
2
|
declare const Modal: {
|
3
3
|
Root: import("react").ForwardRefExoticComponent<import("@radix-ui/react-dialog").DialogProps & import("./ModalRoot").ModalRootProps & import("react").RefAttributes<never>>;
|
4
4
|
Trigger: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-dialog").DialogTriggerProps & import("react").RefAttributes<HTMLButtonElement>, "ref"> & import("react").RefAttributes<HTMLButtonElement>>;
|
5
|
+
Portal: {
|
6
|
+
({ children, ...props }: import("@radix-ui/react-dialog").DialogPortalProps): import("react/jsx-runtime").JSX.Element;
|
7
|
+
displayName: string;
|
8
|
+
};
|
9
|
+
Overlay: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-dialog").DialogOverlayProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
5
10
|
Content: import("react").ForwardRefExoticComponent<Omit<import("@radix-ui/react-dialog").DialogContentProps & import("react").RefAttributes<HTMLDivElement>, "ref"> & import("./ModalContent").ModalContentProps & import("react").RefAttributes<HTMLDivElement>>;
|
6
11
|
Title: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("./ModalTitle").ModalTitleProps & import("react").RefAttributes<HTMLDivElement>>;
|
7
12
|
Description: import("react").ForwardRefExoticComponent<Omit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & import("react").RefAttributes<HTMLDivElement>>;
|
@@ -1,5 +1,7 @@
|
|
1
1
|
import { ModalRoot } from './ModalRoot';
|
2
2
|
import { ModalTrigger } from './ModalTrigger';
|
3
|
+
import { ModalPortal } from './ModalPortal';
|
4
|
+
import { ModalOverlay } from './ModalOverlay';
|
3
5
|
import { ModalContent } from './ModalContent';
|
4
6
|
import { ModalTitle } from './ModalTitle';
|
5
7
|
import { ModalDescription } from './ModalDescription';
|
@@ -9,6 +11,8 @@ import { ModalAction } from './ModalAction';
|
|
9
11
|
var Modal = {
|
10
12
|
Root: ModalRoot,
|
11
13
|
Trigger: ModalTrigger,
|
14
|
+
Portal: ModalPortal,
|
15
|
+
Overlay: ModalOverlay,
|
12
16
|
Content: ModalContent,
|
13
17
|
Title: ModalTitle,
|
14
18
|
Description: ModalDescription,
|
@@ -1,2 +1,2 @@
|
|
1
|
-
import{ModalRoot as o}from"./ModalRoot.mjs";import{ModalTrigger as r}from"./ModalTrigger.mjs";import{
|
1
|
+
import{ModalRoot as o}from"./ModalRoot.mjs";import{ModalTrigger as r}from"./ModalTrigger.mjs";import{ModalPortal as m}from"./ModalPortal.mjs";import{ModalOverlay as t}from"./ModalOverlay.mjs";import{ModalContent as i}from"./ModalContent.mjs";import{ModalTitle as a}from"./ModalTitle.mjs";import{ModalDescription as l}from"./ModalDescription.mjs";import{ModalFooter as e}from"./ModalFooter.mjs";import{ModalCancel as p}from"./ModalCancel.mjs";import{ModalAction as s}from"./ModalAction.mjs";var d={Root:o,Trigger:r,Portal:m,Overlay:t,Content:i,Title:a,Description:l,Footer:e,Cancel:p,Action:s};export{d as default};
|
2
2
|
//# sourceMappingURL=index.mjs.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.mjs","sources":["../../../lib/components/Modal/index.js"],"sourcesContent":["import { ModalRoot } from './ModalRoot';\nimport { ModalTrigger } from './ModalTrigger';\nimport { ModalContent } from './ModalContent';\nimport { ModalTitle } from './ModalTitle';\nimport { ModalDescription } from './ModalDescription';\nimport { ModalFooter } from './ModalFooter';\nimport { ModalCancel } from './ModalCancel';\nimport { ModalAction } from './ModalAction';\nvar Modal = {\n Root: ModalRoot,\n Trigger: ModalTrigger,\n Content: ModalContent,\n Title: ModalTitle,\n Description: ModalDescription,\n Footer: ModalFooter,\n Cancel: ModalCancel,\n Action: ModalAction,\n};\nexport default Modal;\n"],"names":["Modal","Root","ModalRoot","Trigger","ModalTrigger","Content","ModalContent","Title","ModalTitle","Description","ModalDescription","Footer","ModalFooter","Cancel","ModalCancel","Action","ModalAction"],"mappings":"
|
1
|
+
{"version":3,"file":"index.mjs","sources":["../../../lib/components/Modal/index.js"],"sourcesContent":["import { ModalRoot } from './ModalRoot';\nimport { ModalTrigger } from './ModalTrigger';\nimport { ModalPortal } from './ModalPortal';\nimport { ModalOverlay } from './ModalOverlay';\nimport { ModalContent } from './ModalContent';\nimport { ModalTitle } from './ModalTitle';\nimport { ModalDescription } from './ModalDescription';\nimport { ModalFooter } from './ModalFooter';\nimport { ModalCancel } from './ModalCancel';\nimport { ModalAction } from './ModalAction';\nvar Modal = {\n Root: ModalRoot,\n Trigger: ModalTrigger,\n Portal: ModalPortal,\n Overlay: ModalOverlay,\n Content: ModalContent,\n Title: ModalTitle,\n Description: ModalDescription,\n Footer: ModalFooter,\n Cancel: ModalCancel,\n Action: ModalAction,\n};\nexport default Modal;\n"],"names":["Modal","Root","ModalRoot","Trigger","ModalTrigger","Portal","ModalPortal","Overlay","ModalOverlay","Content","ModalContent","Title","ModalTitle","Description","ModalDescription","Footer","ModalFooter","Cancel","ModalCancel","Action","ModalAction"],"mappings":"0eAUG,IAACA,EAAQ,CACRC,KAAMC,EACNC,QAASC,EACTC,OAAQC,EACRC,QAASC,EACTC,QAASC,EACTC,MAAOC,EACPC,YAAaC,EACbC,OAAQC,EACRC,OAAQC,EACRC,OAAQC"}
|