diff --git a/src/components/Widgets/BankProcess/BankProcess.tsx b/src/components/Widgets/BankProcess/BankProcess.tsx
index b9ce39f..b3d73e3 100644
--- a/src/components/Widgets/BankProcess/BankProcess.tsx
+++ b/src/components/Widgets/BankProcess/BankProcess.tsx
@@ -37,7 +37,7 @@ const dataArray: IBankDetails[] = [
},
];
-const BankProcess = (): JSX.Element => {
+const BankProcess: React.FC = () => {
const [tab, setTab] = useState(0);
const [bankDetails, setBankDetails] = useState([]);
const [selectedBank, setSelectedBank] = useState(null);
diff --git a/src/components/Widgets/BuyOrders/BuyOrders.tsx b/src/components/Widgets/BuyOrders/BuyOrders.tsx
index d7bb709..2dd4320 100644
--- a/src/components/Widgets/BuyOrders/BuyOrders.tsx
+++ b/src/components/Widgets/BuyOrders/BuyOrders.tsx
@@ -93,7 +93,7 @@ const dataArray: IPriceList[] = [
},
];
-const BuyOrders = (): JSX.Element => {
+const BuyOrders: React.FC = () => {
const ref = useRef(null);
const [data, setData] = useState([]);
diff --git a/src/components/Widgets/BuyOrders/BuyOrdersRow.tsx b/src/components/Widgets/BuyOrders/BuyOrdersRow.tsx
index 5b88c61..d6c0e97 100644
--- a/src/components/Widgets/BuyOrders/BuyOrdersRow.tsx
+++ b/src/components/Widgets/BuyOrders/BuyOrdersRow.tsx
@@ -5,7 +5,7 @@ interface IProps {
item: any;
}
-const BuyOrdersRow = ({ item }: IProps): JSX.Element => {
+const BuyOrdersRow: React.FC = ({ item }) => {
const [color, setColor] = useState('white');
useEffect(() => {
diff --git a/src/components/Widgets/BuySell/BuySell.tsx b/src/components/Widgets/BuySell/BuySell.tsx
index 951057c..1d87e4d 100644
--- a/src/components/Widgets/BuySell/BuySell.tsx
+++ b/src/components/Widgets/BuySell/BuySell.tsx
@@ -3,7 +3,7 @@ import { useState } from 'react';
// components
import Box from '../../Common/Box';
-const BuySell = (): JSX.Element => {
+const BuySell: React.FC = () => {
const [primaryTab, setPrimaryTab] = useState(0);
const [secondaryTab, setSecondaryTab] = useState(0);
diff --git a/src/components/Widgets/CandleStick/CandleStick.tsx b/src/components/Widgets/CandleStick/CandleStick.tsx
index abcbc84..ea6fead 100644
--- a/src/components/Widgets/CandleStick/CandleStick.tsx
+++ b/src/components/Widgets/CandleStick/CandleStick.tsx
@@ -278,7 +278,7 @@ const data: ISeries = {
},
};
-const CandleStick = (): JSX.Element => {
+const CandleStick: React.FC = () => {
const [state, setState] = useState(null);
useEffect(() => {
diff --git a/src/components/Widgets/Coin/CoinHorizontal.tsx b/src/components/Widgets/Coin/CoinHorizontal.tsx
index d2df056..6e8d1a3 100644
--- a/src/components/Widgets/Coin/CoinHorizontal.tsx
+++ b/src/components/Widgets/Coin/CoinHorizontal.tsx
@@ -9,12 +9,7 @@ interface IProps {
searchOnChange: (e: React.ChangeEvent) => void;
}
-const CoinHorizontal = ({
- item,
- searchValue,
- searchOnChange,
- searchSubmit,
-}: IProps): JSX.Element => (
+const CoinHorizontal: React.FC = ({ item, searchValue, searchOnChange, searchSubmit }) => (
diff --git a/src/components/Widgets/Coin/CoinVertical.tsx b/src/components/Widgets/Coin/CoinVertical.tsx
index 374ed54..b5cdfde 100644
--- a/src/components/Widgets/Coin/CoinVertical.tsx
+++ b/src/components/Widgets/Coin/CoinVertical.tsx
@@ -11,7 +11,7 @@ interface IProps {
item: any;
}
-const CoinVertical = ({ item }: IProps): JSX.Element => {
+const CoinVertical: React.FC = ({ item }) => {
const ref = useRef(null);
const [showMore, setShowMore] = useState(false);
diff --git a/src/components/Widgets/Limits/Limits.tsx b/src/components/Widgets/Limits/Limits.tsx
index fde33af..963bed0 100644
--- a/src/components/Widgets/Limits/Limits.tsx
+++ b/src/components/Widgets/Limits/Limits.tsx
@@ -58,7 +58,7 @@ const dataArray: ICrypto[] = [
},
];
-const Limits = (): JSX.Element => {
+const Limits: React.FC = () => {
const [data, setData] = useState([]);
useEffect(() => {
diff --git a/src/components/Widgets/Limits/LimitsRow.tsx b/src/components/Widgets/Limits/LimitsRow.tsx
index 17190b8..6f7eb3b 100644
--- a/src/components/Widgets/Limits/LimitsRow.tsx
+++ b/src/components/Widgets/Limits/LimitsRow.tsx
@@ -6,7 +6,7 @@ interface IProps {
item: any;
}
-const LimitsRow = ({ item }: IProps): JSX.Element => (
+const LimitsRow: React.FC = ({ item }) => (
diff --git a/src/components/Widgets/Limits/StatusName.tsx b/src/components/Widgets/Limits/StatusName.tsx
index 91a509b..252ead8 100644
--- a/src/components/Widgets/Limits/StatusName.tsx
+++ b/src/components/Widgets/Limits/StatusName.tsx
@@ -3,7 +3,7 @@ interface IProps {
status: number;
}
-const StatusName = ({ status }: IProps): JSX.Element => {
+const StatusName: React.FC = ({ status }) => {
if (status === 1) {
return Limit uygun;
}
diff --git a/src/components/Widgets/Market/Market.tsx b/src/components/Widgets/Market/Market.tsx
index 2534393..8d635ca 100644
--- a/src/components/Widgets/Market/Market.tsx
+++ b/src/components/Widgets/Market/Market.tsx
@@ -100,7 +100,7 @@ const dataArray: ICrypto[] = [
},
];
-const Market = (): JSX.Element => {
+const Market: React.FC = () => {
const [data, setData] = useState([]);
useEffect(() => {
diff --git a/src/components/Widgets/Market/MarketRow.tsx b/src/components/Widgets/Market/MarketRow.tsx
index 4d1a30a..d605790 100644
--- a/src/components/Widgets/Market/MarketRow.tsx
+++ b/src/components/Widgets/Market/MarketRow.tsx
@@ -7,7 +7,7 @@ interface IProps {
item: any;
}
-const MarketRow = ({ item }: IProps): JSX.Element => {
+const MarketRow: React.FC = ({ item }) => {
const [color, setColor] = useState('');
useEffect(() => {
diff --git a/src/components/Widgets/MyAssets/MyAssets.tsx b/src/components/Widgets/MyAssets/MyAssets.tsx
index 403258d..3fa1d9e 100644
--- a/src/components/Widgets/MyAssets/MyAssets.tsx
+++ b/src/components/Widgets/MyAssets/MyAssets.tsx
@@ -119,7 +119,7 @@ const dataArray: ICrypto[] = [
},
];
-const MyAssets = (): JSX.Element => {
+const MyAssets: React.FC = () => {
const ref = useRef(null);
const [data, setData] = useState([]);
diff --git a/src/components/Widgets/MyAssets/MyAssetsRow.tsx b/src/components/Widgets/MyAssets/MyAssetsRow.tsx
index c4c3010..c8be603 100644
--- a/src/components/Widgets/MyAssets/MyAssetsRow.tsx
+++ b/src/components/Widgets/MyAssets/MyAssetsRow.tsx
@@ -8,7 +8,7 @@ interface IProps {
item: any;
}
-const MyAssetsRow = ({ item }: IProps): JSX.Element => {
+const MyAssetsRow: React.FC = ({ item }) => {
const [color, setColor] = useState('');
useEffect(() => {
diff --git a/src/components/Widgets/Profile/Profile.tsx b/src/components/Widgets/Profile/Profile.tsx
index df5f59b..660be72 100644
--- a/src/components/Widgets/Profile/Profile.tsx
+++ b/src/components/Widgets/Profile/Profile.tsx
@@ -8,7 +8,7 @@ import useClickOutside from '../../../hooks/useClickOutside';
// components
import Box from '../../Common/Box';
-const Profile = (): JSX.Element => {
+const Profile: React.FC = () => {
const ref = useRef(null);
const [menuOpened, setMenuOpened] = useState(false);
diff --git a/src/components/Widgets/RecentActivity/ProcessType.tsx b/src/components/Widgets/RecentActivity/ProcessType.tsx
index 6ee5211..5be9e1d 100644
--- a/src/components/Widgets/RecentActivity/ProcessType.tsx
+++ b/src/components/Widgets/RecentActivity/ProcessType.tsx
@@ -3,7 +3,7 @@ interface IProps {
type: number;
}
-const ProcessType = ({ type }: IProps): JSX.Element => {
+const ProcessType: React.FC = ({ type }) => {
if (type === 1) {
return (
diff --git a/src/components/Widgets/RecentActivity/RecentActivity.tsx b/src/components/Widgets/RecentActivity/RecentActivity.tsx
index 2427582..e765800 100644
--- a/src/components/Widgets/RecentActivity/RecentActivity.tsx
+++ b/src/components/Widgets/RecentActivity/RecentActivity.tsx
@@ -66,7 +66,7 @@ const dataArray: IActivity[] = [
},
];
-const RecentActivity = (): JSX.Element => {
+const RecentActivity: React.FC = () => {
const [data, setData] = useState ([]);
useEffect(() => {
diff --git a/src/components/Widgets/RecentActivity/RecentActivityRow.tsx b/src/components/Widgets/RecentActivity/RecentActivityRow.tsx
index d19f936..403e38e 100644
--- a/src/components/Widgets/RecentActivity/RecentActivityRow.tsx
+++ b/src/components/Widgets/RecentActivity/RecentActivityRow.tsx
@@ -7,7 +7,7 @@ interface IProps {
item: any;
}
-const RecentActivityRow = ({ item }: IProps): JSX.Element => (
+const RecentActivityRow: React.FC = ({ item }) => (
diff --git a/src/components/Widgets/RecentActivity/StatusName.tsx b/src/components/Widgets/RecentActivity/StatusName.tsx
index 7417c8f..01352f9 100644
--- a/src/components/Widgets/RecentActivity/StatusName.tsx
+++ b/src/components/Widgets/RecentActivity/StatusName.tsx
@@ -3,7 +3,7 @@ interface IProps {
status: number;
}
-const StatusName = ({ status }: IProps): JSX.Element => {
+const StatusName: React.FC = ({ status }) => {
if (status === 1) {
return Bitmiş;
}
diff --git a/src/components/Widgets/SellOrders/SellOrders.tsx b/src/components/Widgets/SellOrders/SellOrders.tsx
index 7393684..58bf78f 100644
--- a/src/components/Widgets/SellOrders/SellOrders.tsx
+++ b/src/components/Widgets/SellOrders/SellOrders.tsx
@@ -93,7 +93,7 @@ const dataArray: IOrder[] = [
},
];
-const SellOrders = (): JSX.Element => {
+const SellOrders: React.FC = () => {
const ref = useRef(null);
const [data, setData] = useState([]);
diff --git a/src/components/Widgets/SellOrders/SellOrdersRow.tsx b/src/components/Widgets/SellOrders/SellOrdersRow.tsx
index 6a9eda5..b72c641 100644
--- a/src/components/Widgets/SellOrders/SellOrdersRow.tsx
+++ b/src/components/Widgets/SellOrders/SellOrdersRow.tsx
@@ -5,7 +5,7 @@ interface IProps {
item: any;
}
-const SellOrdersRow = ({ item }: IProps): JSX.Element => {
+const SellOrdersRow: React.FC = ({ item }) => {
const [color, setColor] = useState('white');
useEffect(() => {
diff --git a/src/components/Widgets/TradeHistory/TradeHistory.tsx b/src/components/Widgets/TradeHistory/TradeHistory.tsx
index de803e4..42fa793 100644
--- a/src/components/Widgets/TradeHistory/TradeHistory.tsx
+++ b/src/components/Widgets/TradeHistory/TradeHistory.tsx
@@ -93,7 +93,7 @@ const dataArray: IHistory[] = [
},
];
-const TradeHistory = (): JSX.Element => {
+const TradeHistory: React.FC = () => {
const ref = useRef(null);
const [data, setData] = useState([]);
diff --git a/src/components/Widgets/TradeHistory/TradeHistoryRow.tsx b/src/components/Widgets/TradeHistory/TradeHistoryRow.tsx
index 1a81c92..156b83a 100644
--- a/src/components/Widgets/TradeHistory/TradeHistoryRow.tsx
+++ b/src/components/Widgets/TradeHistory/TradeHistoryRow.tsx
@@ -3,7 +3,7 @@ interface IProps {
item: any;
}
-const TradeHistoryRow = ({ item }: IProps): JSX.Element => (
+const TradeHistoryRow: React.FC = ({ item }) => (
{item.amount} {item.currency}
diff --git a/src/layouts/MainLayout.tsx b/src/layouts/MainLayout.tsx
index 2b7a50d..7cbbe43 100644
--- a/src/layouts/MainLayout.tsx
+++ b/src/layouts/MainLayout.tsx
@@ -3,6 +3,6 @@ interface IProps {
children: React.ReactNode;
}
-const MainLayout = ({ children }: IProps): JSX.Element => {children} ;
+const MainLayout: React.FC = ({ children }) => {children} ;
export default MainLayout;
diff --git a/src/layouts/SiteLayout.tsx b/src/layouts/SiteLayout.tsx
index d6f502f..530d7ad 100644
--- a/src/layouts/SiteLayout.tsx
+++ b/src/layouts/SiteLayout.tsx
@@ -6,7 +6,7 @@ interface IProps {
children: React.ReactNode;
}
-const SiteLayout = ({ children }: IProps): JSX.Element => (
+const SiteLayout: React.FC = ({ children }) => (
diff --git a/src/navigation/Navigation.tsx b/src/navigation/Navigation.tsx
index 1d92c22..17ecb88 100644
--- a/src/navigation/Navigation.tsx
+++ b/src/navigation/Navigation.tsx
@@ -10,7 +10,7 @@ import CapitalScreen from '../screens/Capital/CapitalScreen';
import DashboardScreen from '../screens/Dashboard/DashboardScreen';
import TransactionsScreen from '../screens/Transactions/TransactionsScreen';
-const Navigation = (): JSX.Element => (
+const Navigation: React.FC = () => (
} />
} />
diff --git a/src/screens/Capital/CapitalScreen.tsx b/src/screens/Capital/CapitalScreen.tsx
index c428c15..b996c94 100644
--- a/src/screens/Capital/CapitalScreen.tsx
+++ b/src/screens/Capital/CapitalScreen.tsx
@@ -108,7 +108,7 @@ const dataArray: ICrypto[] = [
},
];
-const CapitalScreen = (): JSX.Element => {
+const CapitalScreen: React.FC = () => {
const [data, setData] = useState([]);
const [keyword, setKeyword] = useState('');
diff --git a/src/screens/Dashboard/DashboardScreen.tsx b/src/screens/Dashboard/DashboardScreen.tsx
index 45357d5..c5ce652 100644
--- a/src/screens/Dashboard/DashboardScreen.tsx
+++ b/src/screens/Dashboard/DashboardScreen.tsx
@@ -5,7 +5,7 @@ import Header from '../../components/Header/Header';
import BankProcess from '../../components/Widgets/BankProcess/BankProcess';
import RecentActivity from '../../components/Widgets/RecentActivity/RecentActivity';
-const DashboardScreen = (): JSX.Element => (
+const DashboardScreen: React.FC = () => (
diff --git a/src/screens/Market/MarketScreen.tsx b/src/screens/Market/MarketScreen.tsx
index 50827c1..ce9893b 100644
--- a/src/screens/Market/MarketScreen.tsx
+++ b/src/screens/Market/MarketScreen.tsx
@@ -42,7 +42,7 @@ const coinData: ICrypto = {
description: `Bitcoin, Satoshi Nakamoto adını kullanmış bilinmeyen bir kişi veya grup tarafından 2008'de icat edilmiş bir kriptoparadır. 2009'da bir açık kaynak kodlu yazılım olarak piyasaya`,
};
-const MarketScreen = (): JSX.Element => {
+const MarketScreen: React.FC = () => {
const [keyword, setKeyword] = useState ('');
const [coinInfo, setCoinInfo] = useState(null);
diff --git a/src/screens/Members/ForgotScreen.tsx b/src/screens/Members/ForgotScreen.tsx
index 75481c7..7c34b2e 100644
--- a/src/screens/Members/ForgotScreen.tsx
+++ b/src/screens/Members/ForgotScreen.tsx
@@ -16,7 +16,7 @@ interface IFormProps {
phone: string;
}
-const ForgotScreen = (): JSX.Element => {
+const ForgotScreen: React.FC = () => {
const { onlyNumbers } = useFormEvents();
const [formValues, setFormValues] = useState({
diff --git a/src/screens/Members/ProfileScreen.tsx b/src/screens/Members/ProfileScreen.tsx
index 4775c65..36d95ec 100644
--- a/src/screens/Members/ProfileScreen.tsx
+++ b/src/screens/Members/ProfileScreen.tsx
@@ -6,7 +6,7 @@ import Profile from '../../components/Widgets/Profile/Profile';
import MyAssets from '../../components/Widgets/MyAssets/MyAssets';
import RecentActivity from '../../components/Widgets/RecentActivity/RecentActivity';
-const ProfileScreen = (): JSX.Element => (
+const ProfileScreen: React.FC = () => (
diff --git a/src/screens/Members/SigninScreen.tsx b/src/screens/Members/SigninScreen.tsx
index 057584c..b8fd94a 100644
--- a/src/screens/Members/SigninScreen.tsx
+++ b/src/screens/Members/SigninScreen.tsx
@@ -17,7 +17,7 @@ interface IFormProps {
password: string;
}
-const SigninScreen = (): JSX.Element => {
+const SigninScreen: React.FC = () => {
const navigate = useNavigate();
const { onlyNumbers } = useFormEvents();
diff --git a/src/screens/Members/SignupScreen.tsx b/src/screens/Members/SignupScreen.tsx
index e92a9ef..8f1a7d9 100644
--- a/src/screens/Members/SignupScreen.tsx
+++ b/src/screens/Members/SignupScreen.tsx
@@ -33,7 +33,7 @@ interface IFormProps {
agreeToPolicies3: boolean;
}
-const SignupScreen = (): JSX.Element => {
+const SignupScreen: React.FC = () => {
const { onlyNumbers, onlyEmail } = useFormEvents();
const [formValues, setFormValues] = useState ({
diff --git a/src/screens/NotFound/NotFoundScreen.tsx b/src/screens/NotFound/NotFoundScreen.tsx
index 6c24274..e263a33 100644
--- a/src/screens/NotFound/NotFoundScreen.tsx
+++ b/src/screens/NotFound/NotFoundScreen.tsx
@@ -1,6 +1,6 @@
import { Link } from 'react-router-dom';
-const NotFoundScreen = (): JSX.Element => (
+const NotFoundScreen: React.FC = () => (
![]() {
+const TransactionsScreen: React.FC = () => {
const [data, setData] = useState ([]);
const [keyword, setKeyword] = useState('');
diff --git a/yarn.lock b/yarn.lock
index 6359046..509ce38 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -1271,10 +1271,10 @@
resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.1.tgz#de633db3ec2ef6a3c89e2f19038063e8a122e2c2"
integrity sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==
-"@eslint/js@9.16.0":
- version "9.16.0"
- resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.16.0.tgz#3df2b2dd3b9163056616886c86e4082f45dbf3f4"
- integrity sha512-tw2HxzQkrbeuvyj1tG2Yqq+0H9wGoI2IMk4EOsQeX+vmd75FtJAzf+gTA69WF+baUKRYQ3x2kbLE08js5OsTVg==
+"@eslint/js@9.17.0":
+ version "9.17.0"
+ resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.17.0.tgz#1523e586791f80376a6f8398a3964455ecc651ec"
+ integrity sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==
"@eslint/object-schema@^2.1.4":
version "2.1.4"
@@ -2094,10 +2094,10 @@
dependencies:
undici-types "~6.19.8"
-"@types/node@^22.10.1":
- version "22.10.1"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.1.tgz#41ffeee127b8975a05f8c4f83fb89bcb2987d766"
- integrity sha512-qKgsUwfHZV2WCWLAnVP1JqnpE6Im6h3Y0+fYgMTasNQ7V++CBX5OT1as0g0f+OyubbFqhf6XVNIsmN4IIhEgGQ==
+"@types/node@^22.10.2":
+ version "22.10.2"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-22.10.2.tgz#a485426e6d1fdafc7b0d4c7b24e2c78182ddabb9"
+ integrity sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==
dependencies:
undici-types "~6.20.0"
@@ -2131,12 +2131,10 @@
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.7.tgz#50ae4353eaaddc04044279812f52c8c65857dbcb"
integrity sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==
-"@types/react-dom@^18.3.1":
- version "18.3.1"
- resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.1.tgz#1e4654c08a9cdcfb6594c780ac59b55aad42fe07"
- integrity sha512-qW1Mfv8taImTthu4KoXgDfLuk4bydU6Q/TkADnDWWHwi4NX4BR+LWfTp2sVmTqRrsHvyDDTelgelxJ+SsejKKQ==
- dependencies:
- "@types/react" "*"
+"@types/react-dom@^19.0.2":
+ version "19.0.2"
+ resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-19.0.2.tgz#ad21f9a1ee881817995fd3f7fd33659c87e7b1b7"
+ integrity sha512-c1s+7TKFaDRRxr1TxccIX2u7sfCnc3RxkVyBIUA2lCpyqCF+QoAwQ/CBg7bsMdVwP120HEH143VQezKtef5nCg==
"@types/react-sparklines@^1.7.5":
version "1.7.5"
@@ -2145,7 +2143,7 @@
dependencies:
"@types/react" "*"
-"@types/react@*", "@types/react@^18.3.12":
+"@types/react@*":
version "18.3.12"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.12.tgz#99419f182ccd69151813b7ee24b792fe08774f60"
integrity sha512-D2wOSq/d6Agt28q7rSI3jhU7G6aiuzljDGZ2hTZHIkrTLUI+AF3WMeKkEZ9nN2fkBAlcktT6vcZjDFiIhMYEQw==
@@ -2153,6 +2151,13 @@
"@types/prop-types" "*"
csstype "^3.0.2"
+"@types/react@^19.0.1":
+ version "19.0.1"
+ resolved "https://registry.yarnpkg.com/@types/react/-/react-19.0.1.tgz#a000d5b78f473732a08cecbead0f3751e550b3df"
+ integrity sha512-YW6614BDhqbpR5KtUYzTA+zlA7nayzJRA9ljz9CQoxthR0sDisYZLuvSMsil36t4EH/uAt8T52Xb4sVw17G+SQ==
+ dependencies:
+ csstype "^3.0.2"
+
"@types/resolve@1.17.1":
version "1.17.1"
resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.17.1.tgz#3afd6ad8967c77e4376c598a82ddd58f46ec45d6"
@@ -2242,16 +2247,16 @@
dependencies:
"@types/yargs-parser" "*"
-"@typescript-eslint/eslint-plugin@8.16.0", "@typescript-eslint/eslint-plugin@^8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.16.0.tgz#ac56825bcdf3b392fc76a94b1315d4a162f201a6"
- integrity sha512-5YTHKV8MYlyMI6BaEG7crQ9BhSc8RxzshOReKwZwRWN0+XvvTOm+L/UYLCYxFpfwYuAAqhxiq4yae0CMFwbL7Q==
+"@typescript-eslint/eslint-plugin@8.18.1", "@typescript-eslint/eslint-plugin@^8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-8.18.1.tgz#992e5ac1553ce20d0d46aa6eccd79dc36dedc805"
+ integrity sha512-Ncvsq5CT3Gvh+uJG0Lwlho6suwDfUXH0HztslDf5I+F2wAFAZMRwYLEorumpKLzmO2suAXZ/td1tBg4NZIi9CQ==
dependencies:
"@eslint-community/regexpp" "^4.10.0"
- "@typescript-eslint/scope-manager" "8.16.0"
- "@typescript-eslint/type-utils" "8.16.0"
- "@typescript-eslint/utils" "8.16.0"
- "@typescript-eslint/visitor-keys" "8.16.0"
+ "@typescript-eslint/scope-manager" "8.18.1"
+ "@typescript-eslint/type-utils" "8.18.1"
+ "@typescript-eslint/utils" "8.18.1"
+ "@typescript-eslint/visitor-keys" "8.18.1"
graphemer "^1.4.0"
ignore "^5.3.1"
natural-compare "^1.4.0"
@@ -2280,15 +2285,15 @@
dependencies:
"@typescript-eslint/utils" "5.62.0"
-"@typescript-eslint/parser@8.16.0", "@typescript-eslint/parser@^8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.16.0.tgz#ee5b2d6241c1ab3e2e53f03fd5a32d8e266d8e06"
- integrity sha512-D7DbgGFtsqIPIFMPJwCad9Gfi/hC0PWErRRHFnaCWoEDYi5tQUDiJCTmGUbBiLzjqAck4KcXt9Ayj0CNlIrF+w==
+"@typescript-eslint/parser@8.18.1", "@typescript-eslint/parser@^8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-8.18.1.tgz#c258bae062778b7696793bc492249027a39dfb95"
+ integrity sha512-rBnTWHCdbYM2lh7hjyXqxk70wvon3p2FyaniZuey5TrcGBpfhVp0OxOa6gxr9Q9YhZFKyfbEnxc24ZnVbbUkCA==
dependencies:
- "@typescript-eslint/scope-manager" "8.16.0"
- "@typescript-eslint/types" "8.16.0"
- "@typescript-eslint/typescript-estree" "8.16.0"
- "@typescript-eslint/visitor-keys" "8.16.0"
+ "@typescript-eslint/scope-manager" "8.18.1"
+ "@typescript-eslint/types" "8.18.1"
+ "@typescript-eslint/typescript-estree" "8.18.1"
+ "@typescript-eslint/visitor-keys" "8.18.1"
debug "^4.3.4"
"@typescript-eslint/parser@^5.5.0":
@@ -2309,13 +2314,13 @@
"@typescript-eslint/types" "5.62.0"
"@typescript-eslint/visitor-keys" "5.62.0"
-"@typescript-eslint/scope-manager@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.16.0.tgz#ebc9a3b399a69a6052f3d88174456dd399ef5905"
- integrity sha512-mwsZWubQvBki2t5565uxF0EYvG+FwdFb8bMtDuGQLdCCnGPrDEDvm1gtfynuKlnpzeBRqdFCkMf9jg1fnAK8sg==
+"@typescript-eslint/scope-manager@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-8.18.1.tgz#52cedc3a8178d7464a70beffed3203678648e55b"
+ integrity sha512-HxfHo2b090M5s2+/9Z3gkBhI6xBH8OJCFjH9MhQ+nnoZqxU3wNxkLT+VWXWSFWc3UF3Z+CfPAyqdCTdoXtDPCQ==
dependencies:
- "@typescript-eslint/types" "8.16.0"
- "@typescript-eslint/visitor-keys" "8.16.0"
+ "@typescript-eslint/types" "8.18.1"
+ "@typescript-eslint/visitor-keys" "8.18.1"
"@typescript-eslint/type-utils@5.62.0":
version "5.62.0"
@@ -2327,13 +2332,13 @@
debug "^4.3.4"
tsutils "^3.21.0"
-"@typescript-eslint/type-utils@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.16.0.tgz#585388735f7ac390f07c885845c3d185d1b64740"
- integrity sha512-IqZHGG+g1XCWX9NyqnI/0CX5LL8/18awQqmkZSl2ynn8F76j579dByc0jhfVSnSnhf7zv76mKBQv9HQFKvDCgg==
+"@typescript-eslint/type-utils@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-8.18.1.tgz#10f41285475c0bdee452b79ff7223f0e43a7781e"
+ integrity sha512-jAhTdK/Qx2NJPNOTxXpMwlOiSymtR2j283TtPqXkKBdH8OAMmhiUfP0kJjc/qSE51Xrq02Gj9NY7MwK+UxVwHQ==
dependencies:
- "@typescript-eslint/typescript-estree" "8.16.0"
- "@typescript-eslint/utils" "8.16.0"
+ "@typescript-eslint/typescript-estree" "8.18.1"
+ "@typescript-eslint/utils" "8.18.1"
debug "^4.3.4"
ts-api-utils "^1.3.0"
@@ -2342,10 +2347,10 @@
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.62.0.tgz#258607e60effa309f067608931c3df6fed41fd2f"
integrity sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==
-"@typescript-eslint/types@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.16.0.tgz#49c92ae1b57942458ab83d9ec7ccab3005e64737"
- integrity sha512-NzrHj6thBAOSE4d9bsuRNMvk+BvaQvmY4dDglgkgGC0EW/tB3Kelnp3tAKH87GEwzoxgeQn9fNGRyFJM/xd+GQ==
+"@typescript-eslint/types@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-8.18.1.tgz#d7f4f94d0bba9ebd088de840266fcd45408a8fff"
+ integrity sha512-7uoAUsCj66qdNQNpH2G8MyTFlgerum8ubf21s3TSM3XmKXuIn+H2Sifh/ES2nPOPiYSRJWAk0fDkW0APBWcpfw==
"@typescript-eslint/typescript-estree@5.62.0":
version "5.62.0"
@@ -2360,13 +2365,13 @@
semver "^7.3.7"
tsutils "^3.21.0"
-"@typescript-eslint/typescript-estree@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.16.0.tgz#9d741e56e5b13469b5190e763432ce5551a9300c"
- integrity sha512-E2+9IzzXMc1iaBy9zmo+UYvluE3TW7bCGWSF41hVWUE01o8nzr1rvOQYSxelxr6StUvRcTMe633eY8mXASMaNw==
+"@typescript-eslint/typescript-estree@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-8.18.1.tgz#2a86cd64b211a742f78dfa7e6f4860413475367e"
+ integrity sha512-z8U21WI5txzl2XYOW7i9hJhxoKKNG1kcU4RzyNvKrdZDmbjkmLBo8bgeiOJmA06kizLI76/CCBAAGlTlEeUfyg==
dependencies:
- "@typescript-eslint/types" "8.16.0"
- "@typescript-eslint/visitor-keys" "8.16.0"
+ "@typescript-eslint/types" "8.18.1"
+ "@typescript-eslint/visitor-keys" "8.18.1"
debug "^4.3.4"
fast-glob "^3.3.2"
is-glob "^4.0.3"
@@ -2388,15 +2393,15 @@
eslint-scope "^5.1.1"
semver "^7.3.7"
-"@typescript-eslint/utils@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.16.0.tgz#c71264c437157feaa97842809836254a6fc833c3"
- integrity sha512-C1zRy/mOL8Pj157GiX4kaw7iyRLKfJXBR3L82hk5kS/GyHcOFmy4YUq/zfZti72I9wnuQtA/+xzft4wCC8PJdA==
+"@typescript-eslint/utils@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-8.18.1.tgz#c4199ea23fc823c736e2c96fd07b1f7235fa92d5"
+ integrity sha512-8vikiIj2ebrC4WRdcAdDcmnu9Q/MXXwg+STf40BVfT8exDqBCUPdypvzcUPxEqRGKg9ALagZ0UWcYCtn+4W2iQ==
dependencies:
"@eslint-community/eslint-utils" "^4.4.0"
- "@typescript-eslint/scope-manager" "8.16.0"
- "@typescript-eslint/types" "8.16.0"
- "@typescript-eslint/typescript-estree" "8.16.0"
+ "@typescript-eslint/scope-manager" "8.18.1"
+ "@typescript-eslint/types" "8.18.1"
+ "@typescript-eslint/typescript-estree" "8.18.1"
"@typescript-eslint/visitor-keys@5.62.0":
version "5.62.0"
@@ -2406,12 +2411,12 @@
"@typescript-eslint/types" "5.62.0"
eslint-visitor-keys "^3.3.0"
-"@typescript-eslint/visitor-keys@8.16.0":
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.16.0.tgz#d5086afc060b01ff7a4ecab8d49d13d5a7b07705"
- integrity sha512-pq19gbaMOmFE3CbL0ZB8J8BFCo2ckfHBfaIsaOZgBIF4EoISJIdLX5xRhd0FGB0LlHReNRuzoJoMGpTjq8F2CQ==
+"@typescript-eslint/visitor-keys@8.18.1":
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-8.18.1.tgz#344b4f6bc83f104f514676facf3129260df7610a"
+ integrity sha512-Vj0WLm5/ZsD013YeUKn+K0y8p1M0jPpxOkKdbD1wB0ns53a5piVY02zjf072TblEweAbcYiFiPoSMF3kp+VhhQ==
dependencies:
- "@typescript-eslint/types" "8.16.0"
+ "@typescript-eslint/types" "8.18.1"
eslint-visitor-keys "^4.2.0"
"@ungap/structured-clone@^1.2.0":
@@ -2719,10 +2724,10 @@ anymatch@^3.0.3, anymatch@~3.1.2:
normalize-path "^3.0.0"
picomatch "^2.0.4"
-apexcharts@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-4.1.0.tgz#aa81bc7acea147cf4196fe8f4473cb671f5e27ba"
- integrity sha512-TE0q0cXeS5k/AByLqlZAQ/aRQfdD3z0Ajd1uQWWZEjxiIC5qcBpMrTaG+aT+c3golqkvLH3u6kxDW8HBrggpLw==
+apexcharts@^4.2.0:
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/apexcharts/-/apexcharts-4.2.0.tgz#f8b1658182a421f92049766321069f57bf603b04"
+ integrity sha512-MQ5o8KnwMGcAlo+LhXlAjWGk8wBNBK2O1gFv+JiB6w3oJeuDJUFqa6FLTDlXvdhtObNQ3vIfAtv0AbMSkDv0DQ==
dependencies:
"@svgdotjs/svg.draggable.js" "^3.0.4"
"@svgdotjs/svg.filter.js" "^3.0.8"
@@ -3527,7 +3532,7 @@ cosmiconfig@^7.0.0:
path-type "^4.0.0"
yaml "^1.10.0"
-cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3, cross-spawn@^7.0.5:
+cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3, cross-spawn@^7.0.6:
version "7.0.6"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.6.tgz#8a58fe78f00dcd70c370451759dfbfaf03e8ee9f"
integrity sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==
@@ -4386,10 +4391,10 @@ eslint-plugin-react-hooks@^4.3.0:
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz#c829eb06c0e6f484b3fbb85a97e57784f328c596"
integrity sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==
-eslint-plugin-react-hooks@^5.0.0:
- version "5.0.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.0.0.tgz#72e2eefbac4b694f5324154619fee44f5f60f101"
- integrity sha512-hIOwI+5hYGpJEc4uPRmz2ulCjAGD/N13Lukkh8cLV0i2IRk/bdZDYjgLVHj+U9Z704kLIdIO6iueGvxNur0sgw==
+eslint-plugin-react-hooks@^5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-5.1.0.tgz#3d34e37d5770866c34b87d5b499f5f0b53bf0854"
+ integrity sha512-mpJRtPgHN2tNAvZ35AMfqeB3Xqeo273QxrHJsbBEPWODRM4r0yB6jfoROqKEYrOn27UtRPpcpHc2UqyBSuUNTw==
eslint-plugin-react@^7.27.1, eslint-plugin-react@^7.37.2:
version "7.37.2"
@@ -4516,17 +4521,17 @@ eslint@^8.3.0:
strip-ansi "^6.0.1"
text-table "^0.2.0"
-eslint@^9.16.0:
- version "9.16.0"
- resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.16.0.tgz#66832e66258922ac0a626f803a9273e37747f2a6"
- integrity sha512-whp8mSQI4C8VXd+fLgSM0lh3UlmcFtVwUQjyKCFfsp+2ItAIYhlq/hqGahGqHE6cv9unM41VlqKk2VtKYR2TaA==
+eslint@^9.17.0:
+ version "9.17.0"
+ resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.17.0.tgz#faa1facb5dd042172fdc520106984b5c2421bb0c"
+ integrity sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==
dependencies:
"@eslint-community/eslint-utils" "^4.2.0"
"@eslint-community/regexpp" "^4.12.1"
"@eslint/config-array" "^0.19.0"
"@eslint/core" "^0.9.0"
"@eslint/eslintrc" "^3.2.0"
- "@eslint/js" "9.16.0"
+ "@eslint/js" "9.17.0"
"@eslint/plugin-kit" "^0.2.3"
"@humanfs/node" "^0.16.6"
"@humanwhocodes/module-importer" "^1.0.1"
@@ -4535,7 +4540,7 @@ eslint@^9.16.0:
"@types/json-schema" "^7.0.15"
ajv "^6.12.4"
chalk "^4.0.0"
- cross-spawn "^7.0.5"
+ cross-spawn "^7.0.6"
debug "^4.3.2"
escape-string-regexp "^4.0.0"
eslint-scope "^8.2.0"
@@ -6551,7 +6556,7 @@ lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
-loose-envify@^1.1.0, loose-envify@^1.4.0:
+loose-envify@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf"
integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==
@@ -7763,10 +7768,10 @@ prettier-linter-helpers@^1.0.0:
dependencies:
fast-diff "^1.1.2"
-prettier@^3.4.1:
- version "3.4.1"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.1.tgz#e211d451d6452db0a291672ca9154bc8c2579f7b"
- integrity sha512-G+YdqtITVZmOJje6QkXQWzl3fSfMxFwm1tjTyo9exhkmWSqC4Yhd1+lug++IlR2mvRVAxEDDWYkQdeSztajqgg==
+prettier@^3.4.2:
+ version "3.4.2"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.4.2.tgz#a5ce1fb522a588bf2b78ca44c6e6fe5aa5a2b13f"
+ integrity sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==
pretty-bytes@^5.3.0, pretty-bytes@^5.4.1:
version "5.6.0"
@@ -7900,10 +7905,10 @@ raw-body@2.5.2:
iconv-lite "0.4.24"
unpipe "1.0.0"
-react-apexcharts@^1.6.0:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/react-apexcharts/-/react-apexcharts-1.6.0.tgz#6e465c2150222195015bddc789d1200e9225321d"
- integrity sha512-DmokF8EA2MPghdGuxdLMIDOB1rocqb8HhBTWGHQ+xs0U0nU3R0GFQCUP2EQ10siKUeD2aS2wDyCWuHoYYgSNKQ==
+react-apexcharts@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/react-apexcharts/-/react-apexcharts-1.7.0.tgz#bbd08425674224adb27c9f2c62477d43bd5de539"
+ integrity sha512-03oScKJyNLRf0Oe+ihJxFZliBQM9vW3UWwomVn4YVRTN1jsIR58dLWt0v1sb8RwJVHDMbeHiKQueM0KGpn7nOA==
dependencies:
prop-types "^15.8.1"
@@ -7949,13 +7954,12 @@ react-dev-utils@^12.0.1:
strip-ansi "^6.0.1"
text-table "^0.2.0"
-react-dom@^18.3.1:
- version "18.3.1"
- resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-18.3.1.tgz#c2265d79511b57d479b3dd3fdfa51536494c5cb4"
- integrity sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==
+react-dom@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/react-dom/-/react-dom-19.0.0.tgz#43446f1f01c65a4cd7f7588083e686a6726cfb57"
+ integrity sha512-4GV5sHFG0e/0AD4X+ySy6UJd3jVl1iNsNHdpad0qhABJ11twS3TTBnseqsKurKcsNqCEFeGL3uLpVChpIO3QfQ==
dependencies:
- loose-envify "^1.1.0"
- scheduler "^0.23.2"
+ scheduler "^0.25.0"
react-error-overlay@^6.0.11:
version "6.0.11"
@@ -7982,17 +7986,17 @@ react-refresh@^0.11.0:
resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.11.0.tgz#77198b944733f0f1f1a90e791de4541f9f074046"
integrity sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==
-react-router-dom@^7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-7.0.1.tgz#b1438100800313e1b4c48da0c5fdb498f81c7f96"
- integrity sha512-duBzwAAiIabhFPZfDjcYpJ+f08TMbPMETgq254GWne2NW1ZwRHhZLj7tpSp8KGb7JvZzlLcjGUnqLxpZQVEPng==
+react-router-dom@^7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/react-router-dom/-/react-router-dom-7.0.2.tgz#cbd7ce2db7112f1bc3e9eee3657ad32d7515a913"
+ integrity sha512-VJOQ+CDWFDGaWdrG12Nl+d7yHtLaurNgAQZVgaIy7/Xd+DojgmYLosFfZdGz1wpxmjJIAkAMVTKWcvkx1oggAw==
dependencies:
- react-router "7.0.1"
+ react-router "7.0.2"
-react-router@7.0.1:
- version "7.0.1"
- resolved "https://registry.yarnpkg.com/react-router/-/react-router-7.0.1.tgz#a171e35a5c6463f76b23353c4ce57b53c8b7b1b9"
- integrity sha512-WVAhv9oWCNsja5AkK6KLpXJDSJCQizOIyOd4vvB/+eHGbYx5vkhcmcmwWjQ9yqkRClogi+xjEg9fNEOd5EX/tw==
+react-router@7.0.2:
+ version "7.0.2"
+ resolved "https://registry.yarnpkg.com/react-router/-/react-router-7.0.2.tgz#2820e107cb8cec8acc5db15a17470c056ea86022"
+ integrity sha512-m5AcPfTRUcjwmhBzOJGEl6Y7+Crqyju0+TgTQxoS4SO+BkWbhOrcfZNq6wSWdl2BBbJbsAoBUb8ZacOFT+/JlA==
dependencies:
"@types/cookie" "^0.6.0"
cookie "^1.0.1"
@@ -8061,12 +8065,10 @@ react-sparklines@^1.7.0:
dependencies:
prop-types "^15.5.10"
-react@^18.3.1:
- version "18.3.1"
- resolved "https://registry.yarnpkg.com/react/-/react-18.3.1.tgz#49ab892009c53933625bd16b2533fc754cab2891"
- integrity sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==
- dependencies:
- loose-envify "^1.1.0"
+react@^19.0.0:
+ version "19.0.0"
+ resolved "https://registry.yarnpkg.com/react/-/react-19.0.0.tgz#6e1969251b9f108870aa4bff37a0ce9ddfaaabdd"
+ integrity sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==
read-cache@^1.0.0:
version "1.0.0"
@@ -8374,12 +8376,10 @@ saxes@^5.0.1:
dependencies:
xmlchars "^2.2.0"
-scheduler@^0.23.2:
- version "0.23.2"
- resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.23.2.tgz#414ba64a3b282892e944cf2108ecc078d115cdc3"
- integrity sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==
- dependencies:
- loose-envify "^1.1.0"
+scheduler@^0.25.0:
+ version "0.25.0"
+ resolved "https://registry.yarnpkg.com/scheduler/-/scheduler-0.25.0.tgz#336cd9768e8cceebf52d3c80e3dcf5de23e7e015"
+ integrity sha512-xFVuu11jh+xcO7JOAGJNOXld8/TcEHK/4CituBUeUb5hqxJLj9YuemAEuvm9gQ/+pgXYfbQuqAkiYu+u7YEsNA==
schema-utils@2.7.0:
version "2.7.0"
@@ -9282,14 +9282,14 @@ typedarray-to-buffer@^3.1.5:
dependencies:
is-typedarray "^1.0.0"
-typescript-eslint@^8.16.0:
- version "8.16.0"
- resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.16.0.tgz#d608c972d6b2461ca10ec30fd3fa62a080baba19"
- integrity sha512-wDkVmlY6O2do4V+lZd0GtRfbtXbeD0q9WygwXXSJnC1xorE8eqyC2L1tJimqpSeFrOzRlYtWnUp/uzgHQOgfBQ==
+typescript-eslint@^8.18.1:
+ version "8.18.1"
+ resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-8.18.1.tgz#197b284b6769678ed77d9868df180eeaf61108eb"
+ integrity sha512-Mlaw6yxuaDEPQvb/2Qwu3/TfgeBHy9iTJ3mTwe7OvpPmF6KPQjVOfGyEJpPv6Ez2C34OODChhXrzYw/9phI0MQ==
dependencies:
- "@typescript-eslint/eslint-plugin" "8.16.0"
- "@typescript-eslint/parser" "8.16.0"
- "@typescript-eslint/utils" "8.16.0"
+ "@typescript-eslint/eslint-plugin" "8.18.1"
+ "@typescript-eslint/parser" "8.18.1"
+ "@typescript-eslint/utils" "8.18.1"
typescript@^5.6.3:
version "5.7.2"
| |