@eventlook/sdk 1.5.0-beta.5 → 1.5.0-beta.6
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/dist/cjs/{index-DLC5Hr8L.js → index-DvUR1fp8.js} +3 -3
- package/dist/cjs/index-DvUR1fp8.js.map +1 -0
- package/dist/cjs/index.js +2 -2
- package/dist/cjs/{index.umd-BSCKGDNQ.js → index.umd-6SU6nkkJ.js} +2 -2
- package/dist/cjs/{index.umd-BSCKGDNQ.js.map → index.umd-6SU6nkkJ.js.map} +1 -1
- package/dist/esm/{index-BwmbJihM.js → index-BlTqx0jm.js} +3 -3
- package/dist/esm/index-BlTqx0jm.js.map +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/{index.umd-6fgyuQlr.js → index.umd-Dn0hjh7E.js} +2 -2
- package/dist/esm/{index.umd-6fgyuQlr.js.map → index.umd-Dn0hjh7E.js.map} +1 -1
- package/dist/types/components/animate/MotionContainer.d.ts +1 -1
- package/dist/types/components/animate/MotionViewport.d.ts +1 -1
- package/dist/types/components/animate/TextAnimate.d.ts +1 -1
- package/package.json +3 -3
- package/src/components/animate/DialogAnimate.tsx +1 -1
- package/src/components/animate/IconButtonAnimate.tsx +1 -1
- package/src/components/animate/MotionContainer.tsx +1 -1
- package/src/components/animate/MotionLazyContainer.tsx +1 -1
- package/src/components/animate/MotionViewport.tsx +1 -1
- package/src/components/animate/TextAnimate.tsx +1 -1
- package/src/components/animate/features.js +1 -1
- package/src/form/OrderSuccess.tsx +1 -1
- package/src/form/PaymentPending.tsx +1 -1
- package/src/form/PaymentSuccess.tsx +1 -1
- package/dist/cjs/index-DLC5Hr8L.js.map +0 -1
- package/dist/esm/index-BwmbJihM.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@eventlook/sdk",
|
|
3
|
-
"version": "1.5.0-beta.
|
|
3
|
+
"version": "1.5.0-beta.6",
|
|
4
4
|
"main": "dist/cjs/index.js",
|
|
5
5
|
"module": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
"@emotion/styled": "^11.14.1",
|
|
34
34
|
"@mui/material": "^7.0.0",
|
|
35
35
|
"@mui/x-date-pickers": "^8.0.0",
|
|
36
|
-
"
|
|
36
|
+
"motion": "^12.12.1",
|
|
37
37
|
"react": "^18.0.0 || ^19.0.0",
|
|
38
38
|
"react-dom": "^18.0.0 || ^19.0.0"
|
|
39
39
|
},
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"eslint-plugin-prettier": "^5.5.5",
|
|
69
69
|
"eslint-plugin-react": "^7.37.5",
|
|
70
70
|
"eslint-plugin-react-hooks": "^5",
|
|
71
|
-
"
|
|
71
|
+
"motion": "^12.34.4",
|
|
72
72
|
"globals": "^17.4.0",
|
|
73
73
|
"js-cookie": "^3.0.5",
|
|
74
74
|
"lodash": "^4.17.23",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React, { ReactNode } from 'react';
|
|
2
|
-
import { LazyMotion } from '
|
|
2
|
+
import { LazyMotion } from 'motion/react';
|
|
3
3
|
|
|
4
4
|
// @ts-ignore -- dynamic import of generated features file
|
|
5
5
|
const loadFeatures = () => import('./features.js').then((res) => res.default);
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import { domMax } from '
|
|
1
|
+
import { domMax } from 'motion/react';
|
|
2
2
|
export default domMax;
|
|
@@ -2,7 +2,7 @@ import React, { lazy, Suspense } from 'react';
|
|
|
2
2
|
import { Box, Typography } from '@mui/material';
|
|
3
3
|
import bankTransferAnimation from '../utils/data/lottie/bank-transfer.json';
|
|
4
4
|
import { varBounce } from '@components/animate';
|
|
5
|
-
import { m } from '
|
|
5
|
+
import { m } from 'motion/react';
|
|
6
6
|
import useGlobal from '@hooks/useGlobal';
|
|
7
7
|
|
|
8
8
|
const Lottie = lazy(() => import('lottie-react'));
|
|
@@ -3,7 +3,7 @@ import { Box, Button, Card, Grid, LinearProgress, Link, Typography } from '@mui/
|
|
|
3
3
|
import React, { Dispatch, SetStateAction, useEffect, useState } from 'react';
|
|
4
4
|
import { getSearchParamsInObject } from '@utils/url';
|
|
5
5
|
import { postOrderPaid } from '@modules/order';
|
|
6
|
-
import { m } from '
|
|
6
|
+
import { m } from 'motion/react';
|
|
7
7
|
import { GopayState } from '@utils/data/gopay';
|
|
8
8
|
import { PropsWithChildren } from '@utils/types/global.type';
|
|
9
9
|
import { IPaidTicket } from '@utils/types/ticket.type';
|