@wf-financing/ui 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.es.js +2 -2
- package/package.json +1 -1
- package/src/components/modal/Modal.tsx +2 -2
package/CHANGELOG.md
CHANGED
package/dist/index.es.js
CHANGED
|
@@ -95061,7 +95061,7 @@ const Dit = [
|
|
|
95061
95061
|
initial: sQ,
|
|
95062
95062
|
animate: Nit,
|
|
95063
95063
|
exit: sQ,
|
|
95064
|
-
transition: { duration: 0.
|
|
95064
|
+
transition: { duration: 0.2 },
|
|
95065
95065
|
style: { width: "438px", border: "none", maxWidth: "90vw", maxHeight: "100vh" },
|
|
95066
95066
|
children: [
|
|
95067
95067
|
/* @__PURE__ */ kt.jsx(
|
|
@@ -95072,7 +95072,7 @@ const Dit = [
|
|
|
95072
95072
|
initial: lQ,
|
|
95073
95073
|
animate: Lit,
|
|
95074
95074
|
exit: lQ,
|
|
95075
|
-
transition: { duration: 0.
|
|
95075
|
+
transition: { duration: 0.2 }
|
|
95076
95076
|
}
|
|
95077
95077
|
),
|
|
95078
95078
|
/* @__PURE__ */ kt.jsx(g5e, { role: "dialog", "aria-labelledby": r, children: /* @__PURE__ */ kt.jsx(Fit, { ref: a, "data-testid": "modal-body", children: n }) })
|
package/package.json
CHANGED
|
@@ -35,7 +35,7 @@ export const Modal = ({ isModalOpen, setIsModalOpen, children }: ModalProps) =>
|
|
|
35
35
|
initial={small}
|
|
36
36
|
animate={fullSize}
|
|
37
37
|
exit={small}
|
|
38
|
-
transition={{ duration: 0.
|
|
38
|
+
transition={{ duration: 0.2 }}
|
|
39
39
|
style={{ width: '438px', border: 'none', maxWidth: '90vw', maxHeight: '100vh' }}
|
|
40
40
|
>
|
|
41
41
|
<MotionModalOverlay
|
|
@@ -44,7 +44,7 @@ export const Modal = ({ isModalOpen, setIsModalOpen, children }: ModalProps) =>
|
|
|
44
44
|
initial={transparent}
|
|
45
45
|
animate={opaque}
|
|
46
46
|
exit={transparent}
|
|
47
|
-
transition={{ duration: 0.
|
|
47
|
+
transition={{ duration: 0.2 }}
|
|
48
48
|
/>
|
|
49
49
|
<Dialog role="dialog" aria-labelledby={modalId}>
|
|
50
50
|
<DialogBody ref={scrollableElRef} data-testid="modal-body">
|