diff --git a/examples/rust-vite/vite-remote/src/main.jsx b/examples/rust-vite/vite-remote/src/main.jsx
index ea1a5e7..b907c04 100644
--- a/examples/rust-vite/vite-remote/src/main.jsx
+++ b/examples/rust-vite/vite-remote/src/main.jsx
@@ -1,5 +1,5 @@
import React from 'react';
-import ReactDOM from 'react-dom';
+import ReactDOM from 'react-dom/client';
import App from './App';
//@ts-ignore
diff --git a/examples/vite-vite/vite-host/package.json b/examples/vite-vite/vite-host/package.json
index c62d511..c1139eb 100644
--- a/examples/vite-vite/vite-host/package.json
+++ b/examples/vite-vite/vite-host/package.json
@@ -3,9 +3,9 @@
"version": "0.0.3",
"type": "module",
"scripts": {
- "dev": "vite --force --port 5175",
+ "dev": "vite --force",
"build": "vite build",
- "preview": "vite build && http-server --cors -p 5175 dist"
+ "preview": "vite build && vite preview"
},
"dependencies": {
"@module-federation/vite": "workspace:*",
@@ -21,4 +21,4 @@
"vite-plugin-top-level-await": "^1.4.4",
"http-server": "^14.1.1"
}
-}
+}
\ No newline at end of file
diff --git a/examples/vite-vite/vite-host/src/App.jsx b/examples/vite-vite/vite-host/src/App.jsx
index e17cede..e706642 100644
--- a/examples/vite-vite/vite-host/src/App.jsx
+++ b/examples/vite-vite/vite-host/src/App.jsx
@@ -7,15 +7,20 @@ import Button from 'remote3/button';
import { AgGridDemo } from '@namespace/viteViteRemote/AgGridDemo';
import App1 from '@namespace/viteViteRemote/App1';
import { App2 } from '@namespace/viteViteRemote/App2';
+import { MuiDemo } from '@namespace/viteViteRemote/MuiDemo';
import { ref } from 'vue';
-console.log('Share vue', ref);
+console.log('Share Vue', ref);
console.log('Share React', R, RD);
export default function () {
return (
- Vite react App2 as named export via remote with Sass use
+
+ Vite react (v. {React.version})App2 as named export via remote with Sass use
);
}
diff --git a/examples/vite-vite/vite-remote/src/Mui5Widget.module.css b/examples/vite-vite/vite-remote/src/Mui5Widget.module.css
new file mode 100644
index 0000000..7067c71
--- /dev/null
+++ b/examples/vite-vite/vite-remote/src/Mui5Widget.module.css
@@ -0,0 +1,12 @@
+.container {
+ padding: 20px;
+ border: 2px;
+ border-style: solid;
+ border-color: cadetblue;
+ }
+
+ .myButton {
+ color: black;
+ background-color: blueviolet;
+ font-size: 10px;
+ }
\ No newline at end of file
diff --git a/examples/vite-vite/vite-remote/src/MuiDemo.jsx b/examples/vite-vite/vite-remote/src/MuiDemo.jsx
new file mode 100644
index 0000000..388fb25
--- /dev/null
+++ b/examples/vite-vite/vite-remote/src/MuiDemo.jsx
@@ -0,0 +1,96 @@
+import { css } from '@emotion/react';
+import { createTheme, Paper, StyledEngineProvider, ThemeProvider, Typography } from '@mui/material';
+import Button from '@mui/material/Button';
+import React from 'react';
+import styles from './Mui5Widget.module.css';
+
+const FooterClasses = {
+ root: {
+ padding: '10px',
+ },
+};
+
+// Emotion
+const emotionClass = css`
+ background-color: orange;
+ color: red;
+ border: 1px solid black;
+ font-size: 20px;
+ margin: 10px;
+`;
+
+// Create Theme
+const theme = createTheme({
+ palette: {
+ background: {
+ paper: '#FF0000',
+ },
+ text: {
+ primary: '#173A5E',
+ secondary: '#46505A',
+ },
+ action: {
+ active: '#001E3C',
+ },
+ },
+ components: {
+ // Name of the component
+ MuiButtonBase: {
+ defaultProps: {
+ // The props to change the default for.
+ disableRipple: true, // No more ripple, on the whole application 💣!
+ },
+ },
+ MuiButton: {
+ styleOverrides: {
+ // Name of the slot
+ root: {
+ // Some CSS
+ fontSize: '1rem',
+ fontFamily: 'Arial',
+ margin: 10,
+ border: '2px solid yellow',
+ },
+ },
+ },
+ },
+});
+
+export const MuiDemo = ({ }) => {
+ return (
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ );
+};
diff --git a/examples/vite-vite/vite-remote/src/agGrid.css b/examples/vite-vite/vite-remote/src/agGrid.css
new file mode 100644
index 0000000..8e96cba
--- /dev/null
+++ b/examples/vite-vite/vite-remote/src/agGrid.css
@@ -0,0 +1,15 @@
+#grid1 .ag-header-cell {
+ background-color: #b02e2e;
+ }
+
+ #grid1 .ag-row {
+ font-weight: bold;
+ }
+
+ #grid2 .ag-header-cell {
+ background-color: #26ea2c;
+ }
+
+ #grid2 .ag-row {
+ font-weight: bold;
+ }
\ No newline at end of file
diff --git a/examples/vite-vite/vite-remote/src/main.jsx b/examples/vite-vite/vite-remote/src/main.jsx
index 1b541a5..99ff696 100644
--- a/examples/vite-vite/vite-remote/src/main.jsx
+++ b/examples/vite-vite/vite-remote/src/main.jsx
@@ -1,8 +1,10 @@
import React from 'react';
-import ReactDOM from 'react-dom';
+import ReactDOM from 'react-dom/client';
import { AgGridDemo } from './AgGridDemo';
import App1 from './App1';
import { App2 } from './App2';
+import { MuiDemo } from './MuiDemo';
+
const root = ReactDOM.createRoot(document.getElementById('app'));
root.render(
@@ -18,5 +20,7 @@ root.render(
AgGridDemo
+
MuiDemo
+
);
diff --git a/examples/vite-vite/vite-remote/vite.config.js b/examples/vite-vite/vite-remote/vite.config.js
index 0ad41ef..46684e0 100644
--- a/examples/vite-vite/vite-remote/vite.config.js
+++ b/examples/vite-vite/vite-remote/vite.config.js
@@ -8,16 +8,21 @@ export default defineConfig({
server: {
open: true,
port: 5176,
+ origin: 'http://localhost:5176',
+ },
+ preview: {
+ port: 5176,
},
base: 'http://localhost:5176',
plugins: [
- react(),
+ react({ jsxImportSource: '@emotion/react' }),
federation({
name: '@namespace/viteViteRemote',
exposes: {
'./App1': './src/App1.jsx',
'./App2': './src/App2.jsx',
'./AgGridDemo': './src/AgGridDemo.jsx',
+ './MuiDemo': './src/MuiDemo.jsx',
'.': './src/App1.jsx',
},
filename: 'remoteEntry.js',
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index e7e82b7..20defd7 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -150,21 +150,30 @@ importers:
examples/vite-vite/vite-remote:
dependencies:
+ '@emotion/react':
+ specifier: ^11.13.0
+ version: 11.13.0(@types/react@18.3.3)(react@18.2.0)
+ '@emotion/styled':
+ specifier: ^11.13.0
+ version: 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)
'@module-federation/vite':
specifier: workspace:*
version: link:../../..
+ '@mui/material':
+ specifier: ^5.13.4
+ version: 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
ag-grid-community:
specifier: ^30.2.0
version: 30.2.1
ag-grid-react:
specifier: ^30.2.0
- version: 30.2.1(ag-grid-community@30.2.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 30.2.1(ag-grid-community@30.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
react:
- specifier: ^18.3.1
- version: 18.3.1
+ specifier: 18.2.0
+ version: 18.2.0
react-dom:
- specifier: ^18.2.0
- version: 18.3.1(react@18.3.1)
+ specifier: 18.2.0
+ version: 18.2.0(react@18.2.0)
sass-embedded:
specifier: ^1.77.8
version: 1.77.8
@@ -953,12 +962,66 @@ packages:
resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==}
engines: {node: '>=10'}
+ '@emotion/babel-plugin@11.12.0':
+ resolution: {integrity: sha512-y2WQb+oP8Jqvvclh8Q55gLUyb7UFvgv7eJfsj7td5TToBrIUtPay2kMrZi4xjq9qw2vD0ZR5fSho0yqoFgX7Rw==}
+
+ '@emotion/cache@11.13.1':
+ resolution: {integrity: sha512-iqouYkuEblRcXmylXIwwOodiEK5Ifl7JcX7o6V4jI3iW4mLXX3dmt5xwBtIkJiQEXFAI+pC8X0i67yiPkH9Ucw==}
+
'@emotion/hash@0.8.0':
resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+ '@emotion/hash@0.9.2':
+ resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+
+ '@emotion/is-prop-valid@1.3.0':
+ resolution: {integrity: sha512-SHetuSLvJDzuNbOdtPVbq6yMMMlLoW5Q94uDqJZqy50gcmAjxFkVqmzqSGEFq9gT2iMuIeKV1PXVWmvUhuZLlQ==}
+
+ '@emotion/memoize@0.9.0':
+ resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
+
+ '@emotion/react@11.13.0':
+ resolution: {integrity: sha512-WkL+bw1REC2VNV1goQyfxjx1GYJkcc23CRQkXX+vZNLINyfI7o+uUn/rTGPt/xJ3bJHd5GcljgnxHf4wRw5VWQ==}
+ peerDependencies:
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@emotion/serialize@1.3.0':
+ resolution: {integrity: sha512-jACuBa9SlYajnpIVXB+XOXnfJHyckDfe6fOpORIM6yhBDlqGuExvDdZYHDQGoDf3bZXGv7tNr+LpLjJqiEQ6EA==}
+
+ '@emotion/sheet@1.4.0':
+ resolution: {integrity: sha512-fTBW9/8r2w3dXWYM4HCB1Rdp8NLibOw2+XELH5m5+AkWiL/KqYX6dc0kKYlaYyKjrQ6ds33MCdMPEwgs2z1rqg==}
+
+ '@emotion/styled@11.13.0':
+ resolution: {integrity: sha512-tkzkY7nQhW/zC4hztlwucpT8QEZ6eUzpXDRhww/Eej4tFfO0FxQYWRyg/c5CCXa4d/f174kqeXYjuQRnhzf6dA==}
+ peerDependencies:
+ '@emotion/react': ^11.0.0-rc.0
+ '@types/react': '*'
+ react: '>=16.8.0'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@emotion/unitless@0.7.5':
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ '@emotion/unitless@0.9.0':
+ resolution: {integrity: sha512-TP6GgNZtmtFaFcsOgExdnfxLLpRDla4Q66tnenA9CktvVSdNKDvMVuUah4QvWPIpNjrWsGg3qeGo9a43QooGZQ==}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0':
+ resolution: {integrity: sha512-+wBOcIV5snwGgI2ya3u99D7/FJquOIniQT1IKyDsBmEgwvpxMNeS65Oib7OnE2d2aY+3BU4OiH+0Wchf8yk3Hw==}
+ peerDependencies:
+ react: '>=16.8.0'
+
+ '@emotion/utils@1.4.0':
+ resolution: {integrity: sha512-spEnrA1b6hDR/C68lC2M7m6ALPUHZC0lIY7jAS/B/9DuuO1ZP04eov8SMv/6fwRd8pzmsn2AuJEznRREWlQrlQ==}
+
+ '@emotion/weak-memoize@0.4.0':
+ resolution: {integrity: sha512-snKqtPW01tN0ui7yu9rGv69aJXr/a/Ywvl11sUjNtEcRc+ng/mQriFL0wLXMef74iHa/EkftbDzU9F8iFbH+zg==}
+
'@esbuild/aix-ppc64@0.21.5':
resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
engines: {node: '>=12'}
@@ -1193,10 +1256,90 @@ packages:
'@module-federation/webpack-bundler-runtime@0.2.5':
resolution: {integrity: sha512-Bg3T5ckd6IU2Qduaq7L3ECDZqmfZv0K1tg8wdysNeL8m7VXGXqCn703cbCWjPCwZYhOnUnvGjTbnaPmzQ9b/Tg==}
+ '@mui/core-downloads-tracker@5.16.7':
+ resolution: {integrity: sha512-RtsCt4Geed2/v74sbihWzzRs+HsIQCfclHeORh5Ynu2fS4icIKozcSubwuG7vtzq2uW3fOR1zITSP84TNt2GoQ==}
+
+ '@mui/material@5.16.7':
+ resolution: {integrity: sha512-cwwVQxBhK60OIOqZOVLFt55t01zmarKJiJUWbk0+8s/Ix5IaUzAShqlJchxsIQ4mSrWqgcKCCXKtIlG5H+/Jmg==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ react-dom: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@types/react':
+ optional: true
+
+ '@mui/private-theming@5.16.6':
+ resolution: {integrity: sha512-rAk+Rh8Clg7Cd7shZhyt2HGTTE5wYKNSJ5sspf28Fqm/PZ69Er9o6KX25g03/FG2dfpg5GCwZh/xOojiTfm3hw==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/styled-engine@5.16.6':
+ resolution: {integrity: sha512-zaThmS67ZmtHSWToTiHslbI8jwrmITcN93LQaR2lKArbvS7Z3iLkwRoiikNWutx9MBs8Q6okKvbZq1RQYB3v7g==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.4.1
+ '@emotion/styled': ^11.3.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+
+ '@mui/system@5.16.7':
+ resolution: {integrity: sha512-Jncvs/r/d/itkxh7O7opOunTqbbSSzMTHzZkNLM+FjAOg+cYAZHrPDlYe1ZGKUYORwwb2XexlWnpZp0kZ4AHuA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@emotion/react': ^11.5.0
+ '@emotion/styled': ^11.3.0
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@emotion/react':
+ optional: true
+ '@emotion/styled':
+ optional: true
+ '@types/react':
+ optional: true
+
+ '@mui/types@7.2.15':
+ resolution: {integrity: sha512-nbo7yPhtKJkdf9kcVOF8JZHPZTmqXjJ/tI0bdWgHg5tp9AnIN4Y7f7wm9T+0SyGYJk76+GYZ8Q5XaTYAsUHN0Q==}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
+ '@mui/utils@5.16.6':
+ resolution: {integrity: sha512-tWiQqlhxAt3KENNiSRL+DIn9H5xNVK6Jjf70x3PnfQPz1MPBdh7yyIcAyVBT9xiw7hP3SomRhPR7hzBMBCjqEA==}
+ engines: {node: '>=12.0.0'}
+ peerDependencies:
+ '@types/react': ^17.0.0 || ^18.0.0
+ react: ^17.0.0 || ^18.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+
'@pkgjs/parseargs@0.11.0':
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
engines: {node: '>=14'}
+ '@popperjs/core@2.11.8':
+ resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
+
'@rc-component/async-validator@5.0.4':
resolution: {integrity: sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==}
engines: {node: '>=14.x'}
@@ -1729,6 +1872,9 @@ packages:
'@types/react-dom@18.3.0':
resolution: {integrity: sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==}
+ '@types/react-transition-group@4.4.11':
+ resolution: {integrity: sha512-RM05tAniPZ5DZPzzNFP+DmrcOdD0efDUxMy3145oljWSl3x9ZV5vhme98gTxFrj2lhXvmGNnUiuDyJgY9IKkNA==}
+
'@types/react@18.3.3':
resolution: {integrity: sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==}
@@ -2030,6 +2176,10 @@ packages:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
engines: {node: '>=12'}
+ clsx@2.1.1:
+ resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
+ engines: {node: '>=6'}
+
co@4.6.0:
resolution: {integrity: sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==}
engines: {iojs: '>= 1.0.0', node: '>= 0.12.0'}
@@ -2081,6 +2231,9 @@ packages:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
+ convert-source-map@1.9.0:
+ resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
+
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -2251,6 +2404,9 @@ packages:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ dom-helpers@5.2.1:
+ resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
+
dom-serializer@1.4.1:
resolution: {integrity: sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==}
@@ -2405,6 +2561,9 @@ packages:
resolution: {integrity: sha512-WgZ+nKbELDa6N3i/9nrHeNznm+lY3z4YfhDDWgW+5P0pdmMj26bxaxU11ookgY3NyP9GC7HvZ9etp0jRFqGEeQ==}
engines: {node: '>=8'}
+ find-root@1.1.0:
+ resolution: {integrity: sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==}
+
find-up@4.1.0:
resolution: {integrity: sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==}
engines: {node: '>=8'}
@@ -2586,6 +2745,9 @@ packages:
resolution: {integrity: sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==}
hasBin: true
+ hoist-non-react-statics@3.3.2:
+ resolution: {integrity: sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==}
+
homedir-polyfill@1.0.3:
resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
engines: {node: '>=0.10.0'}
@@ -3642,6 +3804,11 @@ packages:
react: '>=16.9.0'
react-dom: '>=16.9.0'
+ react-dom@18.2.0:
+ resolution: {integrity: sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==}
+ peerDependencies:
+ react: ^18.2.0
+
react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
peerDependencies:
@@ -3670,6 +3837,16 @@ packages:
peerDependencies:
react: '>=16.8'
+ react-transition-group@4.4.5:
+ resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
+ peerDependencies:
+ react: '>=16.6.0'
+ react-dom: '>=16.6.0'
+
+ react@18.2.0:
+ resolution: {integrity: sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==}
+ engines: {node: '>=0.10.0'}
+
react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
@@ -3986,6 +4163,10 @@ packages:
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
+ source-map@0.5.7:
+ resolution: {integrity: sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==}
+ engines: {node: '>=0.10.0'}
+
source-map@0.6.1:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
@@ -4064,6 +4245,9 @@ packages:
peerDependencies:
postcss: ^8.2.15
+ stylis@4.2.0:
+ resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+
stylis@4.3.2:
resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
@@ -4404,14 +4588,14 @@ snapshots:
'@ant-design/cssinjs-utils@1.0.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@ant-design/cssinjs': 1.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@ant-design/cssinjs@1.21.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@emotion/hash': 0.8.0
'@emotion/unitless': 0.7.5
classnames: 2.5.1
@@ -4427,7 +4611,7 @@ snapshots:
dependencies:
'@ant-design/colors': 7.1.0
'@ant-design/icons-svg': 4.4.2
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -4435,7 +4619,7 @@ snapshots:
'@ant-design/react-slick@1.1.2(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
json2mq: 0.2.0
react: 18.3.1
@@ -5404,10 +5588,93 @@ snapshots:
'@ctrl/tinycolor@3.6.1': {}
+ '@emotion/babel-plugin@11.12.0':
+ dependencies:
+ '@babel/helper-module-imports': 7.24.7
+ '@babel/runtime': 7.25.0
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/serialize': 1.3.0
+ babel-plugin-macros: 3.1.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 4.0.0
+ find-root: 1.1.0
+ source-map: 0.5.7
+ stylis: 4.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/cache@11.13.1':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+ '@emotion/sheet': 1.4.0
+ '@emotion/utils': 1.4.0
+ '@emotion/weak-memoize': 0.4.0
+ stylis: 4.2.0
+
'@emotion/hash@0.8.0': {}
+ '@emotion/hash@0.9.2': {}
+
+ '@emotion/is-prop-valid@1.3.0':
+ dependencies:
+ '@emotion/memoize': 0.9.0
+
+ '@emotion/memoize@0.9.0': {}
+
+ '@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/cache': 11.13.1
+ '@emotion/serialize': 1.3.0
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@emotion/utils': 1.4.0
+ '@emotion/weak-memoize': 0.4.0
+ hoist-non-react-statics: 3.3.2
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/serialize@1.3.0':
+ dependencies:
+ '@emotion/hash': 0.9.2
+ '@emotion/memoize': 0.9.0
+ '@emotion/unitless': 0.9.0
+ '@emotion/utils': 1.4.0
+ csstype: 3.1.3
+
+ '@emotion/sheet@1.4.0': {}
+
+ '@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@emotion/babel-plugin': 11.12.0
+ '@emotion/is-prop-valid': 1.3.0
+ '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.2.0)
+ '@emotion/serialize': 1.3.0
+ '@emotion/use-insertion-effect-with-fallbacks': 1.1.0(react@18.2.0)
+ '@emotion/utils': 1.4.0
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.3
+ transitivePeerDependencies:
+ - supports-color
+
'@emotion/unitless@0.7.5': {}
+ '@emotion/unitless@0.9.0': {}
+
+ '@emotion/use-insertion-effect-with-fallbacks@1.1.0(react@18.2.0)':
+ dependencies:
+ react: 18.2.0
+
+ '@emotion/utils@1.4.0': {}
+
+ '@emotion/weak-memoize@0.4.0': {}
+
'@esbuild/aix-ppc64@0.21.5':
optional: true
@@ -5638,16 +5905,93 @@ snapshots:
'@module-federation/runtime': 0.2.5
'@module-federation/sdk': 0.2.5
+ '@mui/core-downloads-tracker@5.16.7': {}
+
+ '@mui/material@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react-dom@18.2.0(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@mui/core-downloads-tracker': 5.16.7
+ '@mui/system': 5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)
+ '@mui/types': 7.2.15(@types/react@18.3.3)
+ '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.2.0)
+ '@popperjs/core': 2.11.8
+ '@types/react-transition-group': 4.4.11
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+ react-is: 18.3.1
+ react-transition-group: 4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0)
+ optionalDependencies:
+ '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)
+ '@types/react': 18.3.3
+
+ '@mui/private-theming@5.16.6(@types/react@18.3.3)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.2.0)
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@types/react': 18.3.3
+
+ '@mui/styled-engine@5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@emotion/cache': 11.13.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)
+
+ '@mui/system@5.16.7(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@mui/private-theming': 5.16.6(@types/react@18.3.3)(react@18.2.0)
+ '@mui/styled-engine': 5.16.6(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@emotion/styled@11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0))(react@18.2.0)
+ '@mui/types': 7.2.15(@types/react@18.3.3)
+ '@mui/utils': 5.16.6(@types/react@18.3.3)(react@18.2.0)
+ clsx: 2.1.1
+ csstype: 3.1.3
+ prop-types: 15.8.1
+ react: 18.2.0
+ optionalDependencies:
+ '@emotion/react': 11.13.0(@types/react@18.3.3)(react@18.2.0)
+ '@emotion/styled': 11.13.0(@emotion/react@11.13.0(@types/react@18.3.3)(react@18.2.0))(@types/react@18.3.3)(react@18.2.0)
+ '@types/react': 18.3.3
+
+ '@mui/types@7.2.15(@types/react@18.3.3)':
+ optionalDependencies:
+ '@types/react': 18.3.3
+
+ '@mui/utils@5.16.6(@types/react@18.3.3)(react@18.2.0)':
+ dependencies:
+ '@babel/runtime': 7.25.0
+ '@mui/types': 7.2.15(@types/react@18.3.3)
+ '@types/prop-types': 15.7.12
+ clsx: 2.1.1
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-is: 18.3.1
+ optionalDependencies:
+ '@types/react': 18.3.3
+
'@pkgjs/parseargs@0.11.0':
optional: true
+ '@popperjs/core@2.11.8': {}
+
'@rc-component/async-validator@5.0.4':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/color-picker@1.5.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@ctrl/tinycolor': 3.6.1
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -5656,18 +6000,18 @@ snapshots:
'@rc-component/context@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
'@rc-component/mini-decimal@1.1.0':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/mutate-observer@1.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -5675,7 +6019,7 @@ snapshots:
'@rc-component/portal@1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -5683,7 +6027,7 @@ snapshots:
'@rc-component/qrcode@1.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -5691,7 +6035,7 @@ snapshots:
'@rc-component/tour@1.15.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
@@ -5701,7 +6045,7 @@ snapshots:
'@rc-component/trigger@2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -6105,6 +6449,10 @@ snapshots:
dependencies:
'@types/react': 18.3.3
+ '@types/react-transition-group@4.4.11':
+ dependencies:
+ '@types/react': 18.3.3
+
'@types/react@18.3.3':
dependencies:
'@types/prop-types': 15.7.12
@@ -6257,12 +6605,12 @@ snapshots:
ag-grid-community@30.2.1: {}
- ag-grid-react@30.2.1(ag-grid-community@30.2.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ ag-grid-react@30.2.1(ag-grid-community@30.2.1)(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
dependencies:
ag-grid-community: 30.2.1
prop-types: 15.8.1
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
an-empty-js-file@1.0.0: {}
@@ -6538,6 +6886,8 @@ snapshots:
strip-ansi: 6.0.1
wrap-ansi: 7.0.0
+ clsx@2.1.1: {}
+
co@4.6.0: {}
color-convert@1.9.3:
@@ -6578,6 +6928,8 @@ snapshots:
content-type@1.0.5: {}
+ convert-source-map@1.9.0: {}
+
convert-source-map@2.0.0: {}
cookies@0.8.0:
@@ -6752,6 +7104,11 @@ snapshots:
destroy@1.2.0: {}
+ dom-helpers@5.2.1:
+ dependencies:
+ '@babel/runtime': 7.25.0
+ csstype: 3.1.3
+
dom-serializer@1.4.1:
dependencies:
domelementtype: 2.3.0
@@ -6960,6 +7317,8 @@ snapshots:
dependencies:
find-file-up: 2.0.1
+ find-root@1.1.0: {}
+
find-up@4.1.0:
dependencies:
locate-path: 5.0.0
@@ -7143,6 +7502,10 @@ snapshots:
he@1.2.0: {}
+ hoist-non-react-statics@3.3.2:
+ dependencies:
+ react-is: 16.13.1
+
homedir-polyfill@1.0.3:
dependencies:
parse-passwd: 1.0.0
@@ -7977,7 +8340,7 @@ snapshots:
rc-cascader@3.27.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
array-tree-filter: 2.1.0
classnames: 2.5.1
rc-select: 14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -7988,7 +8351,7 @@ snapshots:
rc-checkbox@3.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -7996,7 +8359,7 @@ snapshots:
rc-collapse@3.7.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8005,7 +8368,7 @@ snapshots:
rc-dialog@9.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8015,7 +8378,7 @@ snapshots:
rc-drawer@7.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8025,7 +8388,7 @@ snapshots:
rc-dropdown@4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8034,7 +8397,7 @@ snapshots:
rc-field-form@2.2.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/async-validator': 5.0.4
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8042,7 +8405,7 @@ snapshots:
rc-image@7.9.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/portal': 1.1.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-dialog: 9.5.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8053,7 +8416,7 @@ snapshots:
rc-input-number@9.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/mini-decimal': 1.1.0
classnames: 2.5.1
rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8063,7 +8426,7 @@ snapshots:
rc-input@1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8071,7 +8434,7 @@ snapshots:
rc-mentions@2.14.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8083,7 +8446,7 @@ snapshots:
rc-menu@9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8094,7 +8457,7 @@ snapshots:
rc-motion@2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8102,7 +8465,7 @@ snapshots:
rc-notification@5.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8111,7 +8474,7 @@ snapshots:
rc-overflow@1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8120,7 +8483,7 @@ snapshots:
rc-pagination@4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8128,7 +8491,7 @@ snapshots:
rc-picker@4.6.11(dayjs@1.11.12)(luxon@3.4.4)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-overflow: 1.3.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8142,7 +8505,7 @@ snapshots:
rc-progress@4.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8150,7 +8513,7 @@ snapshots:
rc-rate@2.13.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8158,7 +8521,7 @@ snapshots:
rc-resize-observer@1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8167,7 +8530,7 @@ snapshots:
rc-segmented@2.3.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8176,7 +8539,7 @@ snapshots:
rc-select@14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8188,7 +8551,7 @@ snapshots:
rc-slider@10.6.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8196,7 +8559,7 @@ snapshots:
rc-steps@6.0.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8204,7 +8567,7 @@ snapshots:
rc-switch@4.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8212,7 +8575,7 @@ snapshots:
rc-table@7.45.7(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/context': 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8223,7 +8586,7 @@ snapshots:
rc-tabs@15.1.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-dropdown: 4.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-menu: 9.14.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8235,7 +8598,7 @@ snapshots:
rc-textarea@1.7.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-input: 1.5.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8245,7 +8608,7 @@ snapshots:
rc-tooltip@6.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
'@rc-component/trigger': 2.2.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
classnames: 2.5.1
react: 18.3.1
@@ -8253,7 +8616,7 @@ snapshots:
rc-tree-select@5.22.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-select: 14.15.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-tree: 5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8263,7 +8626,7 @@ snapshots:
rc-tree@5.8.8(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-motion: 2.9.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -8273,7 +8636,7 @@ snapshots:
rc-upload@4.6.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
@@ -8281,20 +8644,26 @@ snapshots:
rc-util@5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-is: 18.3.1
rc-virtual-list@3.14.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.24.8
+ '@babel/runtime': 7.25.0
classnames: 2.5.1
rc-resize-observer: 1.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
rc-util: 5.43.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-dom@18.2.0(react@18.2.0):
+ dependencies:
+ loose-envify: 1.4.0
+ react: 18.2.0
+ scheduler: 0.23.2
+
react-dom@18.3.1(react@18.3.1):
dependencies:
loose-envify: 1.4.0
@@ -8319,6 +8688,19 @@ snapshots:
'@remix-run/router': 1.19.0
react: 18.3.1
+ react-transition-group@4.4.5(react-dom@18.2.0(react@18.2.0))(react@18.2.0):
+ dependencies:
+ '@babel/runtime': 7.25.0
+ dom-helpers: 5.2.1
+ loose-envify: 1.4.0
+ prop-types: 15.8.1
+ react: 18.2.0
+ react-dom: 18.2.0(react@18.2.0)
+
+ react@18.2.0:
+ dependencies:
+ loose-envify: 1.4.0
+
react@18.3.1:
dependencies:
loose-envify: 1.4.0
@@ -8635,6 +9017,8 @@ snapshots:
buffer-from: 1.1.2
source-map: 0.6.1
+ source-map@0.5.7: {}
+
source-map@0.6.1: {}
source-map@0.7.4: {}
@@ -8725,6 +9109,8 @@ snapshots:
postcss: 8.4.41
postcss-selector-parser: 6.1.1
+ stylis@4.2.0: {}
+
stylis@4.3.2: {}
supports-color@2.0.0: {}