![]()
setIsCreateModalOpen(true)}
>
+ Create New
@@ -201,6 +204,10 @@ function MyCases() {
{view === 'list' && renderListView()}
{view === 'calendar' && renderCalendarView()}
+
setIsCreateModalOpen(!isCreateModalOpen)}
+ />
);
}
diff --git a/src/components/CommunityPortal/Reports/Participation/MyCases.module.css b/src/components/CommunityPortal/Reports/Participation/MyCases.module.css
index 780946b17a..edef1bdcc4 100644
--- a/src/components/CommunityPortal/Reports/Participation/MyCases.module.css
+++ b/src/components/CommunityPortal/Reports/Participation/MyCases.module.css
@@ -38,7 +38,8 @@
}
.myCasesPageDark .headerActions {
- gap: 20px; /* more room between dropdowns/buttons */
+ gap: 20px;
+ /* more room between dropdowns/buttons */
}
.sectionTitle {
@@ -65,7 +66,8 @@
/* ---------- View Switcher ---------- */
.viewSwitcher {
display: flex;
- gap: 12px; /* clean space between buttons */
+ gap: 12px;
+ /* clean space between buttons */
}
.viewSwitcher button,
@@ -110,6 +112,7 @@
border-color: #3b82f6;
}
+
.filterWrapper {
margin: 10px 0;
}
@@ -122,6 +125,12 @@
cursor: pointer;
}
+.myCasesPageDark .filterDropdown {
+ background-color: #3A506B;
+ color: #ffffff;
+ border: 1px solid #555;
+}
+
/* Hover and focus effects for the dropdown */
.filterDropdown:hover,
.filterDropdown:focus {
@@ -169,6 +178,13 @@
cursor: pointer;
}
+.myCasesPageDark .createNew {
+ background-color: #3A506B;
+ /* Matches other dark elements */
+ color: #ffffff;
+ border: 1px solid #555;
+}
+
.content {
margin-top: 10px;
}
@@ -234,6 +250,32 @@
color: #9b59b6;
}
+
+.caseCardDark .eventBadge {
+ background-color: rgba(255, 255, 255, 0.1);
+ color: #e2e8f0;
+}
+
+.caseCardDark .eventBadge[data-type='Yoga Class'] {
+ background-color: rgba(40, 167, 69, 0.2);
+ color: #8fd19e;
+}
+
+.caseCardDark .eventBadge[data-type='Cooking Workshop'] {
+ background-color: rgba(231, 76, 60, 0.2);
+ color: #f1948a;
+}
+
+.caseCardDark .eventBadge[data-type='Dance Class'] {
+ background-color: rgba(243, 156, 18, 0.2);
+ color: #f7dc6f;
+}
+
+.caseCardDark .eventBadge[data-type='Fitness Bootcamp'] {
+ background-color: rgba(155, 89, 182, 0.2);
+ color: #d2b4de;
+}
+
.eventTime {
font-size: 14px;
color: #555;
@@ -242,7 +284,7 @@
.eventTimeDark {
font-size: 14px;
- color: #ffffff;
+ color: #ffffff !important;
margin-bottom: 10px;
}
@@ -257,7 +299,7 @@
font-size: 16px;
font-weight: bold;
margin-bottom: 15px;
- color: #ffffff;
+ color: #ffffff !important;
}
.attendeesInfo {
@@ -270,7 +312,7 @@
display: flex;
align-items: center;
justify-content: space-between;
- color: #ffffff;
+ color: #ffffff !important;
}
.avatars img {
@@ -288,7 +330,7 @@
.attendeesCountDark {
font-size: 14px;
- color: #ffffff;
+ color: #ffffff !important;
}
.rates {
@@ -381,7 +423,8 @@
/* ---------- Expanded scroll area ---------- */
.caseCards.expanded,
.caseList.expanded {
- max-height: 500px; /* enough space to show ~30 events */
+ max-height: 500px;
+ /* enough space to show ~30 events */
overflow-y: auto;
padding-right: 8px;
}
diff --git a/src/components/CommunityPortal/Reports/Participation/Participation.module.css b/src/components/CommunityPortal/Reports/Participation/Participation.module.css
index 5c9e0acb82..d250be26a1 100644
--- a/src/components/CommunityPortal/Reports/Participation/Participation.module.css
+++ b/src/components/CommunityPortal/Reports/Participation/Participation.module.css
@@ -38,7 +38,7 @@
.landingPageHeaderDark {
font-size: 2.2rem;
font-weight: 700;
- color: #ffffff;
+ color: #ffffff !important;
letter-spacing: 0.5px;
}
@@ -449,6 +449,25 @@
font-weight: bold;
}
+.insightsTab:hover {
+ background-color: #e0e0e0;
+}
+
+.insightsDark .insightsTab {
+ background-color: #3A506B;
+ color: #ffffff;
+ border-right: 1px solid #555;
+}
+
+.insightsDark .insightsTab:hover {
+ background-color: #4A607B;
+}
+
+.insightsDark .insightsTab.activeTab {
+ background-color: #007bff;
+ color: #fff;
+}
+
.insightsContent {
display: flex;
flex-direction: column;
@@ -642,6 +661,7 @@
-webkit-overflow-scrolling: auto !important;
}
+/* Dark mode container */
.insightsTabsDarkMode {
border: 1px solid #555;
background-color: #1e293b; /* Dark background */
@@ -657,6 +677,250 @@
border-right: 1px solid #555;
}
+.printOnly {
+ display: none;
+}
+
+/* Print styles using global selectors */
+/* Print styles using global selectors */
+@media print {
+
+ /* Hide everything except the participation component */
+ :global(body > *:not(#root)) {
+ display: none !important;
+ }
+
+ :global(#root > *:not(.participation-landing-page-global)) {
+ display: none !important;
+ }
+
+ /* Sonar fix: avoid duplicate selector by scoping the print version */
+ :global(#root) .participationLandingPage {
+ max-width: 100% !important;
+ margin: 0 !important;
+ background: white !important;
+ height: auto !important;
+ overflow: visible !important;
+ }
+
+ @page {
+ size: auto;
+ /* Use auto instead of Letter to allow multiple pages */
+ margin: 0.5in;
+ }
+
+ @supports (-webkit-print-color-adjust: exact) {
+ * {
+ -webkit-print-color-adjust: exact;
+ }
+ }
+
+ @supports (print-color-adjust: exact) {
+ * {
+ print-color-adjust: exact;
+ }
+ }
+
+ /* Critical: Remove all height restrictions for printing */
+ :global(.my-cases-global),
+ :global(.case-cards-global),
+ :global(.case-list-global) {
+ height: auto !important;
+ max-height: none !important;
+ overflow: visible !important;
+ display: block !important;
+ }
+
+ /* Ensure cards display properly in print with page breaks */
+ :global(.case-cards-global) {
+ display: grid !important;
+ grid-template-columns: repeat(2, 1fr) !important;
+ gap: 12px !important;
+ page-break-inside: auto !important;
+ }
+
+ /* Allow cards to break across pages */
+ :global(.case-card-global) {
+ break-inside: avoid-page !important;
+ page-break-inside: avoid !important;
+ height: auto !important;
+ }
+
+ /* Allow list items to break across pages */
+ :global(.case-list-global) {
+ page-break-inside: auto !important;
+ }
+
+ :global(.case-list-item-global) {
+ break-inside: avoid-page !important;
+ page-break-inside: avoid !important;
+ }
+
+ /* Remove scroll containers for print */
+ .trackingListContainer,
+ .trackingListContainerDark {
+ max-height: none !important;
+ overflow: visible !important;
+ height: auto !important;
+ }
+
+ /* Avoid breaking elements */
+ :global(.tracking-table-global) tr {
+ break-inside: avoid;
+ page-break-inside: avoid;
+ }
+
+ .insightItem {
+ break-inside: avoid;
+ page-break-inside: avoid;
+ }
+
+ /* Hide non-print elements */
+ :global(.view-switcher-global),
+ :global(.filter-wrapper-global),
+ :global(.create-new-global),
+ :global(.more-btn-global),
+ .noPrint {
+ display: none !important;
+ }
+
+ .noPrintGap {
+ margin-bottom: 8px;
+ }
+
+ /* Ensure table headers are visible */
+ :global(.tracking-table-global) thead th {
+ background: #f4f4f4 !important;
+ color: #333 !important;
+ }
+
+ :global(.tracking-table-global-dark) thead th {
+ background: #1C2541 !important;
+ color: #ffffff !important;
+ }
+
+ .printOnly {
+ display: block !important;
+ }
+
+ /* Force proper backgrounds for all elements */
+ .participationLandingPage,
+ .participationLandingPage * {
+ -webkit-print-color-adjust: exact !important;
+ print-color-adjust: exact !important;
+ }
+
+ /* Light mode styles for print */
+ .participationLandingPage {
+ background: white !important;
+ }
+
+
+ :global(#root) .case-card-global {
+ background: white !important;
+ color: #333 !important;
+ border: 1px solid #ddd !important;
+ }
+
+ .trackingContainer {
+ background: white !important;
+ color: #333 !important;
+ border: 1px solid #ddd !important;
+ }
+
+ .insights {
+ background: white !important;
+ color: #333 !important;
+ border: 1px solid #ddd !important;
+ }
+
+ /* Dark mode styles for print */
+ .participationLandingPageDark {
+ background: #1B2A41 !important;
+ color: #ffffff !important;
+ }
+
+ .participationLandingPageDark :global(.case-card-global) {
+ background: #3A506B !important;
+ color: #ffffff !important;
+ border: 1px solid #555 !important;
+ }
+
+ .participationLandingPageDark .trackingContainerDark {
+ background: #1C2541 !important;
+ color: #ffffff !important;
+ border: 1px solid #555 !important;
+ }
+
+ .participationLandingPageDark .insightsDark {
+ background: #1C2541 !important;
+ color: #ffffff !important;
+ border: 1px solid #555 !important;
+ }
+
+ .participationLandingPageDark .trackingListContainerDark {
+ background: #3A506B !important;
+ color: #ffffff !important;
+ }
+
+ .participationLandingPageDark :global(.tracking-table-global-dark) thead th {
+ background: #1C2541 !important;
+ color: #ffffff !important;
+ }
+
+ .participationLandingPageDark .trackingRateDark {
+ background: #3A506B !important;
+ color: #ffffff !important;
+ }
+
+ /* Event badge colors for print */
+ :global(.event-badge-global)[data-type='Yoga Class'] {
+ background-color: #e9f7ef !important;
+ color: #28a745 !important;
+ }
+
+ :global(.event-badge-global)[data-type='Cooking Workshop'] {
+ background-color: #fdecea !important;
+ color: #e74c3c !important;
+ }
+
+ :global(.event-badge-global)[data-type='Dance Class'] {
+ background-color: #fff5e6 !important;
+ color: #f39c12 !important;
+ }
+
+ :global(.event-badge-global)[data-type='Fitness Bootcamp'] {
+ background-color: #f5e6ff !important;
+ color: #9b59b6 !important;
+ }
+
+ /* Rate colors for print */
+ .trackingRateGreen {
+ color: green !important;
+ font-weight: bold !important;
+ }
+
+ .trackingRateRed {
+ color: red !important;
+ font-weight: bold !important;
+ }
+
+ /* Insight bar colors */
+ .insightFill {
+ background: #007bff !important;
+ }
+
+ /* Text colors for dark mode */
+ .participationLandingPageDark .landingPageHeaderDark,
+ .participationLandingPageDark .sectionTitleDark,
+ .participationLandingPageDark .eventNameDark,
+ .participationLandingPageDark .eventTimeDark,
+ .participationLandingPageDark .attendeesCountDark,
+ .participationLandingPageDark .insightsLabelDark,
+ .participationLandingPageDark .insightsPercentageDark {
+ color: #ffffff !important;
+ }
+}
/* Active tab dark mode */
.activeTabDarkMode {
background-color: #3b82f6;
diff --git a/src/components/CommunityPortal/Reports/Participation/mockData.jsx b/src/components/CommunityPortal/Reports/Participation/mockData.jsx
index d822006b4d..d7589d6797 100644
--- a/src/components/CommunityPortal/Reports/Participation/mockData.jsx
+++ b/src/components/CommunityPortal/Reports/Participation/mockData.jsx
@@ -39,7 +39,7 @@ let id = 1;
for (let month = 0; month < 12; month++) {
for (let week = 0; week < 4; week++) {
for (let t = 0; t < eventTypes.length; t++) {
- const eventDate = new Date(2025, month, 1 + week * 7 + t);
+ const eventDate = new Date(new Date().getFullYear(), month, 1 + week * 7 + t);
mockEvents.push({
id: id++,
eventType: eventTypes[t],
@@ -56,7 +56,7 @@ for (let month = 0; month < 12; month++) {
}
const today = new Date();
-for (let t = 0; t < 3; t++) {
+for (let t = 0; t < 6; t++) {
const eventDate = new Date(today);
eventDate.setHours(10 + t * 2, 0, 0, 0);
mockEvents.push({
diff --git a/src/components/Teams/ToggleSwitch/ToggleSwitch.module.scss b/src/components/Teams/ToggleSwitch/ToggleSwitch.module.scss
index fc411d3551..5704ab5c13 100644
--- a/src/components/Teams/ToggleSwitch/ToggleSwitch.module.scss
+++ b/src/components/Teams/ToggleSwitch/ToggleSwitch.module.scss
@@ -33,8 +33,7 @@
background: dodgerblue;
&:after {
- transform: translatex(15px);
-
+ transform: translatex(15px);
}
}
&:not(:checked) {
diff --git a/yarn.lock b/yarn.lock
index dcacc694fe..327d876b24 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -22,20 +22,20 @@
dependencies:
lodash "^4.17.21"
-"@ant-design/charts-util@0.0.2":
- version "0.0.2"
- resolved "https://registry.npmjs.org/@ant-design/charts-util/-/charts-util-0.0.2.tgz"
- integrity sha512-JuThvtHE8R3PldXzTkL3bmmFf0HVhih49CYinRrkwgovOmvDYaaKHnI53EWJbW8n4Ndcyy8jiZTSkoxcjGS6Zg==
+"@ant-design/charts-util@0.0.3":
+ version "0.0.3"
+ resolved "https://registry.npmjs.org/@ant-design/charts-util/-/charts-util-0.0.3.tgz"
+ integrity sha512-x1H7UT6t4dXAyGRoHqlOnEsEqBSTANFGTZEAMI0CWYhYUpp13n0o9grl9oPtoL6FEQMjUBTY+zGJKlHkz8smMw==
dependencies:
lodash "^4.17.21"
"@ant-design/charts@^2.6.4":
- version "2.6.6"
- resolved "https://registry.npmjs.org/@ant-design/charts/-/charts-2.6.6.tgz"
- integrity sha512-Mw2XqB9c7JoENyewJmtxU+5TU2sW5VEyct2f6n4HjJ/6hBo4ht3qdu965G3UrNLyiRctd47Qje32u+8DeFZ6Bg==
+ version "2.6.7"
+ resolved "https://registry.npmjs.org/@ant-design/charts/-/charts-2.6.7.tgz"
+ integrity sha512-XfmsnspUpfrMlRFGTwmHJ2TPKcosq5a5nSxAfIOpEXAvmJBT2N16oejGTZhUFTzba8W3XtBOziwRAXmDmLUqvA==
dependencies:
"@ant-design/graphs" "^2.1.1"
- "@ant-design/plots" "^2.6.6"
+ "@ant-design/plots" "^2.6.7"
lodash "^4.17.21"
"@ant-design/colors@^7.0.0", "@ant-design/colors@^7.2.1":
@@ -46,9 +46,9 @@
"@ant-design/fast-color" "^2.0.6"
"@ant-design/colors@^8.0.0":
- version "8.0.0"
- resolved "https://registry.npmjs.org/@ant-design/colors/-/colors-8.0.0.tgz"
- integrity sha512-6YzkKCw30EI/E9kHOIXsQDHmMvTllT8STzjMb4K2qzit33RW2pqCJP0sk+hidBntXxE+Vz4n1+RvCTfBw6OErw==
+ version "8.0.1"
+ resolved "https://registry.npmjs.org/@ant-design/colors/-/colors-8.0.1.tgz"
+ integrity sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==
dependencies:
"@ant-design/fast-color" "^3.0.0"
@@ -124,12 +124,12 @@
"@rc-component/util" "^1.3.0"
clsx "^2.1.1"
-"@ant-design/plots@^2.6.6":
- version "2.6.6"
- resolved "https://registry.npmjs.org/@ant-design/plots/-/plots-2.6.6.tgz"
- integrity sha512-yUcvW/b7FPiIKwCpC0AOYQhHVKFCOpthlizsJx2Tuq7OEzTCLSWjRjT8o8sEWo3CCtIAtAuLY4GOfGdGGz1f0A==
+"@ant-design/plots@^2.6.7":
+ version "2.6.8"
+ resolved "https://registry.npmjs.org/@ant-design/plots/-/plots-2.6.8.tgz"
+ integrity sha512-QsunUs2d5rbq/1BwVhga/siA5H50OaG23YopMYwPD4sPsza6NQzPQ8FM3elNIsD/BIk298tihqX1cJ/MmvVJbQ==
dependencies:
- "@ant-design/charts-util" "0.0.2"
+ "@ant-design/charts-util" "0.0.3"
"@antv/event-emitter" "^0.1.3"
"@antv/g" "^6.1.7"
"@antv/g2" "^5.2.7"
@@ -184,47 +184,24 @@
resolved "https://registry.npmjs.org/@antv/expr/-/expr-1.0.2.tgz"
integrity sha512-vrfdmPHkTuiS5voVutKl2l06w1ihBh9A8SFdQPEE+2KMVpkymzGOF1eWpfkbGZ7tiFE15GodVdhhHomD/hdIwg==
-"@antv/g-camera-api@2.0.45":
- version "2.0.45"
- resolved "https://registry.npmjs.org/@antv/g-camera-api/-/g-camera-api-2.0.45.tgz"
- integrity sha512-LhRFSFJtVvaIZYHG0jYHPx0/+Zwg5aFc+Iw2jo8o73vwGutmx2yNMYSJr/JOExgzulsGzGONezFENfLbccgh5A==
+"@antv/g-canvas@^2.0.43", "@antv/g-canvas@^2.0.48":
+ version "2.2.0"
+ resolved "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-2.2.0.tgz"
+ integrity sha512-h7zVBBo2aO64DuGKvq9sG+yTU3sCUb9DALCVm7nz8qGPs8hhLuFOkKPEzUDNfNYZGJUGzY8UDtJ3QRGRFcvEQg==
dependencies:
- "@antv/g-lite" "2.5.1"
+ "@antv/g-lite" "2.7.0"
+ "@antv/g-math" "3.1.0"
"@antv/util" "^3.3.5"
"@babel/runtime" "^7.25.6"
gl-matrix "^3.4.3"
tslib "^2.5.3"
-"@antv/g-canvas@^2.0.43", "@antv/g-canvas@^2.0.48":
- version "2.0.52"
- resolved "https://registry.npmjs.org/@antv/g-canvas/-/g-canvas-2.0.52.tgz"
- integrity sha512-tZoRfkrvVTe3e9OU+xhpgweTnQIctgaevoN47ZW15ymW792eq0oYRHPzNGsAAnhoFvBIhsT2/xEC9TuPFQdKuQ==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-plugin-canvas-path-generator" "2.1.26"
- "@antv/g-plugin-canvas-picker" "2.3.1"
- "@antv/g-plugin-canvas-renderer" "2.5.1"
- "@antv/g-plugin-dom-interaction" "2.1.31"
- "@antv/g-plugin-html-renderer" "2.3.1"
- "@antv/g-plugin-image-loader" "2.3.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
-"@antv/g-dom-mutation-observer-api@2.0.42":
- version "2.0.42"
- resolved "https://registry.npmjs.org/@antv/g-dom-mutation-observer-api/-/g-dom-mutation-observer-api-2.0.42.tgz"
- integrity sha512-Utu0TZFEeGrBsw3cQD7MZwKBY39Cuys4zMsZpVetYDqQm/SexzqUQeIgCm9V0zJZfXPGEJNSvWL0NV6HGSYT3Q==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@babel/runtime" "^7.25.6"
-
-"@antv/g-lite@2.5.1":
- version "2.5.1"
- resolved "https://registry.npmjs.org/@antv/g-lite/-/g-lite-2.5.1.tgz"
- integrity sha512-58Ul+fZb9qT/PYXMW7zUJrl62Q46MmZYZ6V7XelDZxZCL6LP2F2avDrreDGa3uYrihUjf7IvhVfBDviL4T4sdg==
+"@antv/g-lite@2.7.0":
+ version "2.7.0"
+ resolved "https://registry.npmjs.org/@antv/g-lite/-/g-lite-2.7.0.tgz"
+ integrity sha512-uSzgHYa5bwR5L2Au7/5tsOhFmXKZKLPBH90+Q9bP9teVs5VT4kOAi0isPSpDI8uhdDC2/VrfTWu5K9HhWI6FWw==
dependencies:
- "@antv/g-math" "3.0.1"
+ "@antv/g-math" "3.1.0"
"@antv/util" "^3.3.5"
"@antv/vendor" "^1.0.3"
"@babel/runtime" "^7.25.6"
@@ -232,138 +209,35 @@
gl-matrix "^3.4.3"
tslib "^2.5.3"
-"@antv/g-math@3.0.1":
- version "3.0.1"
- resolved "https://registry.npmjs.org/@antv/g-math/-/g-math-3.0.1.tgz"
- integrity sha512-FvkDBNRpj+HsLINunrL2PW0OlG368MlpHuihbxleuajGim5kra8tgISwCLmAf8Yz2b1CgZ9PvpohqiLzHS7HLg==
- dependencies:
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- gl-matrix "^3.4.3"
- tslib "^2.5.3"
-
-"@antv/g-plugin-canvas-path-generator@2.1.26":
- version "2.1.26"
- resolved "https://registry.npmjs.org/@antv/g-plugin-canvas-path-generator/-/g-plugin-canvas-path-generator-2.1.26.tgz"
- integrity sha512-87V9NUbESa4PecvQmdGiQKu2avgLln3OTC1zjtexioOUJEpfTx8NTQeWcyzv6T7mJJMlptznfpkuRyZgDg/1+g==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-math" "3.0.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
-"@antv/g-plugin-canvas-picker@2.3.1":
- version "2.3.1"
- resolved "https://registry.npmjs.org/@antv/g-plugin-canvas-picker/-/g-plugin-canvas-picker-2.3.1.tgz"
- integrity sha512-h/ZgCuLxFo6xiA/XLGihBvfBjcGayua9buY6sqvyu8fHGA3AvE1RAhA/PeEOCDVBVQFvFLlkP1SaU9c+fqp23Q==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-math" "3.0.1"
- "@antv/g-plugin-canvas-path-generator" "2.1.26"
- "@antv/g-plugin-canvas-renderer" "2.5.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- gl-matrix "^3.4.3"
- tslib "^2.5.3"
-
-"@antv/g-plugin-canvas-renderer@2.5.1":
- version "2.5.1"
- resolved "https://registry.npmjs.org/@antv/g-plugin-canvas-renderer/-/g-plugin-canvas-renderer-2.5.1.tgz"
- integrity sha512-nhKLU2tsMItOHWnPAQR3ryy/tQG4X5f2IGgzp8UjA1r2qwPcS8eB+vt0uqOwlk4Lo0ugujTt4rIIbfAXL6cRfQ==
+"@antv/g-math@3.1.0":
+ version "3.1.0"
+ resolved "https://registry.npmjs.org/@antv/g-math/-/g-math-3.1.0.tgz"
+ integrity sha512-DtN1Gj/yI0UiK18nSBsZX8RK0LszGwqfb+cBYWgE+ddyTm8dZnW4tPUhV7QXePsS6/A5hHC+JFpAAK7OEGo5ZQ==
dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-math" "3.0.1"
- "@antv/g-plugin-canvas-path-generator" "2.1.26"
- "@antv/g-plugin-image-loader" "2.3.1"
"@antv/util" "^3.3.5"
"@babel/runtime" "^7.25.6"
gl-matrix "^3.4.3"
tslib "^2.5.3"
-"@antv/g-plugin-dom-interaction@2.1.31":
- version "2.1.31"
- resolved "https://registry.npmjs.org/@antv/g-plugin-dom-interaction/-/g-plugin-dom-interaction-2.1.31.tgz"
- integrity sha512-5FKJaVvc1O80yQlSLwyevuZZgYXGzcRHCLjPDwZ9tIa/79S5q9Hc9qkTBS4pM5B85EtHN+wZqVXHZKfm/6a9jA==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
"@antv/g-plugin-dragndrop@^2.0.35", "@antv/g-plugin-dragndrop@^2.0.38":
- version "2.0.42"
- resolved "https://registry.npmjs.org/@antv/g-plugin-dragndrop/-/g-plugin-dragndrop-2.0.42.tgz"
- integrity sha512-EGrs8om9CwQka1Pgw02namBo1h0iqhskL5i1pD0CFhvCfAU2lxA2EHdYan+8vRQnDQVgXNbS+XAxzI6LQwByUQ==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
-"@antv/g-plugin-html-renderer@2.3.1":
- version "2.3.1"
- resolved "https://registry.npmjs.org/@antv/g-plugin-html-renderer/-/g-plugin-html-renderer-2.3.1.tgz"
- integrity sha512-s13zOJHbtCIRiSKI1N2xnX+XT253a9npPuJKH8bxbujWbRfXQVW6VaP517hVDeODO3sDklbEuDlMHSF94IP0Hg==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- gl-matrix "^3.4.3"
- tslib "^2.5.3"
-
-"@antv/g-plugin-image-loader@2.3.1":
- version "2.3.1"
- resolved "https://registry.npmjs.org/@antv/g-plugin-image-loader/-/g-plugin-image-loader-2.3.1.tgz"
- integrity sha512-7UKLe2nbg/5YBQN3yy+dir5gHp53tp7rk7JxqnQnB2piXv/eZe6yq5hrfSVn74jwWkoUnjLe8u+++mHgoAsTng==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- gl-matrix "^3.4.3"
- tslib "^2.5.3"
-
-"@antv/g-plugin-svg-picker@2.0.46":
- version "2.0.46"
- resolved "https://registry.npmjs.org/@antv/g-plugin-svg-picker/-/g-plugin-svg-picker-2.0.46.tgz"
- integrity sha512-Uz7+7tzXQHFDra3Mz/zZKw1OGYtXmXUtx69loIK8+iybviaNNPmjL2Cavj+LvcjvSlHFvNakzFPwBl54Isd74Q==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-plugin-svg-renderer" "2.4.1"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
-"@antv/g-plugin-svg-renderer@2.4.1":
- version "2.4.1"
- resolved "https://registry.npmjs.org/@antv/g-plugin-svg-renderer/-/g-plugin-svg-renderer-2.4.1.tgz"
- integrity sha512-7KA3bC3Ilfs52rZvD21spoSxPU5ONsdW7RCZ0wW2qkyLwrCGAJabzdsEP8sF27WWLl/4Pf5QHVP6kcLWvT1eyA==
+ version "2.1.1"
+ resolved "https://registry.npmjs.org/@antv/g-plugin-dragndrop/-/g-plugin-dragndrop-2.1.1.tgz"
+ integrity sha512-+aesDUJVQDs6UJ2bOBbDlaGAPCfHmU0MbrMTlQlfpwNplWueqtgVAZ3L57oZ2ZGHRWUHiRwZGPjXMBM3O2LELw==
dependencies:
- "@antv/g-lite" "2.5.1"
+ "@antv/g-lite" "2.7.0"
"@antv/util" "^3.3.5"
"@babel/runtime" "^7.25.6"
- gl-matrix "^3.4.3"
tslib "^2.5.3"
"@antv/g-svg@^2.0.38":
- version "2.0.46"
- resolved "https://registry.npmjs.org/@antv/g-svg/-/g-svg-2.0.46.tgz"
- integrity sha512-HWKR1vuBAggah8IRJXamUfJG3O38irsRcpqtQHNsLvoBxn426ZSISI4kjX2fc08xFu3nHy/ZkFQC4m5xd9s6KQ==
- dependencies:
- "@antv/g-lite" "2.5.1"
- "@antv/g-plugin-dom-interaction" "2.1.31"
- "@antv/g-plugin-svg-picker" "2.0.46"
- "@antv/g-plugin-svg-renderer" "2.4.1"
- "@antv/util" "^3.3.5"
- "@babel/runtime" "^7.25.6"
- tslib "^2.5.3"
-
-"@antv/g-web-animations-api@2.1.32":
- version "2.1.32"
- resolved "https://registry.npmjs.org/@antv/g-web-animations-api/-/g-web-animations-api-2.1.32.tgz"
- integrity sha512-4Tf1bJbXxZkBF+DsHS+c6vEiv+ccNRqjeRfmniPOE3vwSVXZCKgvMhhIMQoxz0vVOaxYrDTpchquM5PF64qC0Q==
+ version "2.1.1"
+ resolved "https://registry.npmjs.org/@antv/g-svg/-/g-svg-2.1.1.tgz"
+ integrity sha512-gVzBkjqA8FzDTbkuIxj6L0Omz/X/hFbYLzK6alWr0sHTfywqP6czcjDUJU8DF2MRIY1Twy55uZYW4dqqLXOXXg==
dependencies:
- "@antv/g-lite" "2.5.1"
+ "@antv/g-lite" "2.7.0"
"@antv/util" "^3.3.5"
"@babel/runtime" "^7.25.6"
+ gl-matrix "^3.4.3"
tslib "^2.5.3"
"@antv/g2-extension-plot@^0.2.1":
@@ -376,9 +250,9 @@
"@antv/vendor" "^1.0.10"
"@antv/g2@^5.1.8", "@antv/g2@^5.2.7":
- version "5.4.7"
- resolved "https://registry.npmjs.org/@antv/g2/-/g2-5.4.7.tgz"
- integrity sha512-pYXOZ4Am+xgQbPshbHlbAsH6+DTPZ2iF8b63Vtfp19CoRuq6oO3cNZl+yweBs2WxLLSxVzjDkwBmB1kZBXOpFg==
+ version "5.4.8"
+ resolved "https://registry.npmjs.org/@antv/g2/-/g2-5.4.8.tgz"
+ integrity sha512-IvgIpwmT4M5/QAd3Mn2WiHIDeBqFJ4WA2gcZhRRSZuZ2KmgCqZWZwwIT0hc+kIGxwYeDoCQqf//t6FMVu3ryBg==
dependencies:
"@antv/component" "^2.1.9"
"@antv/coord" "^0.4.7"
@@ -402,9 +276,9 @@
"@antv/g-svg" "^2.0.38"
"@antv/g6@^5.0.28", "@antv/g6@^5.0.44":
- version "5.0.50"
- resolved "https://registry.npmjs.org/@antv/g6/-/g6-5.0.50.tgz"
- integrity sha512-L2ZdekSpJreIvSc4DkqGCh2bFmCadDZiR6q9euVtXdLeHPl/YQ4hqTvLIkc7aYO6oE/nC5mPAIOaM6ZiAy7QKA==
+ version "5.0.51"
+ resolved "https://registry.npmjs.org/@antv/g6/-/g6-5.0.51.tgz"
+ integrity sha512-/88LJDZ7FHKtpyJibXOnJWZ8gFRp32mLb8KzEFrMuiIC/dsZgTf/oYVw6L4tLKooPXfXqUtrJb2tWFMGR04EMg==
dependencies:
"@antv/algorithm" "^0.1.26"
"@antv/component" "^2.1.7"
@@ -413,21 +287,21 @@
"@antv/g-canvas" "^2.0.48"
"@antv/g-plugin-dragndrop" "^2.0.38"
"@antv/graphlib" "^2.0.4"
- "@antv/hierarchy" "^0.6.14"
+ "@antv/hierarchy" "^0.7.1"
"@antv/layout" "1.2.14-beta.9"
"@antv/util" "^3.3.11"
bubblesets-js "^2.3.4"
"@antv/g@^6.1.11", "@antv/g@^6.1.24", "@antv/g@^6.1.28", "@antv/g@^6.1.7":
- version "6.2.1"
- resolved "https://registry.npmjs.org/@antv/g/-/g-6.2.1.tgz"
- integrity sha512-RdRXtSKhS8u9xCkJQD6h5YthyyY5w5lTrx6VKyC96iE7YhPqrhEeOEqba9yxAR9tG5yy15Ix6vxBc0zWQ8ZZMA==
- dependencies:
- "@antv/g-camera-api" "2.0.45"
- "@antv/g-dom-mutation-observer-api" "2.0.42"
- "@antv/g-lite" "2.5.1"
- "@antv/g-web-animations-api" "2.1.32"
+ version "6.3.1"
+ resolved "https://registry.npmjs.org/@antv/g/-/g-6.3.1.tgz"
+ integrity sha512-WYEKqy86LHB2PzTmrZXrIsIe+3Epeds2f68zceQ+BJtRoGki7Sy4IhlC8LrUMztgfT1t3d/0L745NWZwITroKA==
+ dependencies:
+ "@antv/g-lite" "2.7.0"
+ "@antv/util" "^3.3.5"
"@babel/runtime" "^7.25.6"
+ gl-matrix "^3.4.3"
+ html2canvas "^1.4.1"
"@antv/graphin@^3.0.4":
version "3.0.5"
@@ -443,10 +317,10 @@
dependencies:
"@antv/event-emitter" "^0.1.3"
-"@antv/hierarchy@^0.6.14":
- version "0.6.14"
- resolved "https://registry.npmjs.org/@antv/hierarchy/-/hierarchy-0.6.14.tgz"
- integrity sha512-V3uknf7bhynOqQDw2sg+9r9DwZ9pc6k/EcqyTFdfXB1+ydr7urisP0MipIuimucvQKN+Qkd+d6w601r1UIroqQ==
+"@antv/hierarchy@^0.7.1":
+ version "0.7.1"
+ resolved "https://registry.npmjs.org/@antv/hierarchy/-/hierarchy-0.7.1.tgz"
+ integrity sha512-7r22r+HxfcRZp79ZjGmsn97zgC1Iajrv0Mm9DIgx3lPfk+Kme2MG/+EKdZj1iEBsN0rJRzjWVPGL5YrBdVHchw==
"@antv/layout@1.2.14-beta.9":
version "1.2.14-beta.9"
@@ -1516,9 +1390,9 @@
core-js-pure "^3.43.0"
"@babel/runtime@^7.0.0", "@babel/runtime@^7.1.2", "@babel/runtime@^7.10.1", "@babel/runtime@^7.10.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.10.4", "@babel/runtime@^7.11.1", "@babel/runtime@^7.11.2", "@babel/runtime@^7.12.0", "@babel/runtime@^7.12.13", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.8", "@babel/runtime@^7.14.0", "@babel/runtime@^7.15.4", "@babel/runtime@^7.16.7", "@babel/runtime@^7.18.0", "@babel/runtime@^7.18.3", "@babel/runtime@^7.20.0", "@babel/runtime@^7.20.7", "@babel/runtime@^7.21.0", "@babel/runtime@^7.22.5", "@babel/runtime@^7.23.2", "@babel/runtime@^7.23.6", "@babel/runtime@^7.23.9", "@babel/runtime@^7.24.4", "@babel/runtime@^7.24.7", "@babel/runtime@^7.24.8", "@babel/runtime@^7.25.6", "@babel/runtime@^7.25.7", "@babel/runtime@^7.26.0", "@babel/runtime@^7.26.7", "@babel/runtime@^7.27.6", "@babel/runtime@^7.28.2", "@babel/runtime@^7.28.4", "@babel/runtime@^7.4.2", "@babel/runtime@^7.5.5", "@babel/runtime@^7.6.3", "@babel/runtime@^7.8.7", "@babel/runtime@^7.9.2":
- version "7.28.4"
- resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz"
- integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==
+ version "7.28.6"
+ resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.6.tgz"
+ integrity sha512-05WQkdpL9COIMz4LjTxGpPNCdlpyimKppYNoJ5Di5EUObifl8t4tuLuUBBZEpoLYOmfvIWrsp9fCl0HoPRVTdA==
"@babel/template@^7.27.1", "@babel/template@^7.27.2", "@babel/template@^7.3.3":
version "7.27.2"
@@ -1577,23 +1451,30 @@
"@types/tough-cookie" "^4.0.5"
tough-cookie "^4.1.4"
-"@cacheable/memory@^2.0.6":
- version "2.0.7"
- resolved "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.7.tgz"
- integrity sha512-RbxnxAMf89Tp1dLhXMS7ceft/PGsDl1Ip7T20z5nZ+pwIAsQ1p2izPjVG69oCLv/jfQ7HDPHTWK0c9rcAWXN3A==
+"@cacheable/memoize@^2.0.3":
+ version "2.0.3"
+ resolved "https://registry.npmjs.org/@cacheable/memoize/-/memoize-2.0.3.tgz"
+ integrity sha512-hl9wfQgpiydhQEIv7fkjEzTGE+tcosCXLKFDO707wYJ/78FVOlowb36djex5GdbSyeHnG62pomYLMuV/OT8Pbw==
dependencies:
- "@cacheable/utils" "^2.3.3"
- "@keyv/bigmap" "^1.3.0"
- hookified "^1.14.0"
- keyv "^5.5.5"
+ "@cacheable/utils" "^2.0.3"
-"@cacheable/utils@^2.3.2", "@cacheable/utils@^2.3.3":
- version "2.3.3"
- resolved "https://registry.npmjs.org/@cacheable/utils/-/utils-2.3.3.tgz"
- integrity sha512-JsXDL70gQ+1Vc2W/KUFfkAJzgb4puKwwKehNLuB+HrNKWf91O736kGfxn4KujXCCSuh6mRRL4XEB0PkAFjWS0A==
+"@cacheable/memory@^2.0.3":
+ version "2.0.3"
+ resolved "https://registry.npmjs.org/@cacheable/memory/-/memory-2.0.3.tgz"
+ integrity sha512-R3UKy/CKOyb1LZG/VRCTMcpiMDyLH7SH3JrraRdK6kf3GweWCOU3sgvE13W3TiDRbxnDKylzKJvhUAvWl9LQOA==
dependencies:
- hashery "^1.3.0"
- keyv "^5.5.5"
+ "@cacheable/memoize" "^2.0.3"
+ "@cacheable/utils" "^2.0.3"
+ "@keyv/bigmap" "^1.0.2"
+ hookified "^1.12.1"
+ keyv "^5.5.3"
+
+"@cacheable/utils@^2.0.3", "@cacheable/utils@^2.1.0":
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/@cacheable/utils/-/utils-2.1.0.tgz"
+ integrity sha512-ZdxfOiaarMqMj+H7qwlt5EBKWaeGihSYVHdQv5lUsbn8MJJOTW82OIwirQ39U5tMZkNvy3bQE+ryzC+xTAb9/g==
+ dependencies:
+ keyv "^5.5.3"
"@changey/react-leaflet-markercluster@^4.0.0-rc1":
version "4.0.0-rc1"
@@ -1628,11 +1509,6 @@
resolved "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-3.0.5.tgz"
integrity sha512-DaDeUkXZKjdGhgYaHNJTV9pV7Y9B3b644jCLs9Upc3VeNGg6LWARAT6O+Q+/COo+2gg/bM5rhpMAtf70WqfBdQ==
-"@csstools/css-syntax-patches-for-csstree@^1.0.19":
- version "1.0.25"
- resolved "https://registry.npmjs.org/@csstools/css-syntax-patches-for-csstree/-/css-syntax-patches-for-csstree-1.0.25.tgz"
- integrity sha512-g0Kw9W3vjx5BEBAF8c5Fm2NcB/Fs8jJXh85aXqwEXiL+tqtOut07TWgyaGzAAfTM+gKckrrncyeGEZPcaRgm2Q==
-
"@csstools/css-tokenizer@^3.0.3", "@csstools/css-tokenizer@^3.0.4":
version "3.0.4"
resolved "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-3.0.4.tgz"
@@ -1725,25 +1601,13 @@
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz"
integrity sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==
-"@emotion/is-prop-valid@1.2.2":
- version "1.2.2"
- resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz"
- integrity sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==
- dependencies:
- "@emotion/memoize" "^0.8.1"
-
-"@emotion/is-prop-valid@^1.3.0":
- version "1.3.1"
- resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz"
- integrity sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==
+"@emotion/is-prop-valid@1.4.0", "@emotion/is-prop-valid@^1.3.0":
+ version "1.4.0"
+ resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.4.0.tgz"
+ integrity sha512-QgD4fyscGcbbKwJmqNvUMSE02OsHUa+lAWKdEUIJKgqe5IwRSKd7+KhibEWdaKwgjLj0DRSHA9biAIqGBk05lw==
dependencies:
"@emotion/memoize" "^0.9.0"
-"@emotion/memoize@^0.8.1":
- version "0.8.1"
- resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz"
- integrity sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==
-
"@emotion/memoize@^0.9.0":
version "0.9.0"
resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.9.0.tgz"
@@ -1791,12 +1655,7 @@
"@emotion/use-insertion-effect-with-fallbacks" "^1.2.0"
"@emotion/utils" "^1.4.2"
-"@emotion/unitless@0.8.1":
- version "0.8.1"
- resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
- integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
-
-"@emotion/unitless@^0.10.0":
+"@emotion/unitless@0.10.0", "@emotion/unitless@^0.10.0":
version "0.10.0"
resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz"
integrity sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==
@@ -2660,13 +2519,12 @@
"@jridgewell/resolve-uri" "^3.1.0"
"@jridgewell/sourcemap-codec" "^1.4.14"
-"@keyv/bigmap@^1.3.0":
- version "1.3.0"
- resolved "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.3.0.tgz"
- integrity sha512-KT01GjzV6AQD5+IYrcpoYLkCu1Jod3nau1Z7EsEuViO3TZGRacSbO9MfHmbJ1WaOXFtWLxPVj169cn2WNKPkIg==
+"@keyv/bigmap@^1.0.2":
+ version "1.0.3"
+ resolved "https://registry.npmjs.org/@keyv/bigmap/-/bigmap-1.0.3.tgz"
+ integrity sha512-jUEkNlnE9tYzX2AIBeoSe1gVUvSOfIOQ5EFPL5Un8cFHGvjD9L/fxpxlS1tEivRLHgapO2RZJ3D93HYAa049pg==
dependencies:
- hashery "^1.2.0"
- hookified "^1.13.0"
+ hookified "^1.12.1"
"@keyv/serialize@^1.1.1":
version "1.1.1"
@@ -2972,9 +2830,9 @@
integrity sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==
"@rc-component/async-validator@^5.0.3":
- version "5.0.4"
- resolved "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.0.4.tgz"
- integrity sha512-qgGdcVIF604M9EqjNF0hbUTz42bz/RDtxWdWuU5EQe3hi7M8ob54B6B35rOsvX5eSvIHIzT9iH1R3n+hk3CGfg==
+ version "5.1.0"
+ resolved "https://registry.npmjs.org/@rc-component/async-validator/-/async-validator-5.1.0.tgz"
+ integrity sha512-n4HcR5siNUXRX23nDizbZBQPO0ZM/5oTtmKZ6/eqL0L2bo747cklFdZGRN2f+c9qWGICwDzrhW0H7tE9PptdcA==
dependencies:
"@babel/runtime" "^7.24.4"
@@ -3052,9 +2910,9 @@
rc-util "^5.44.0"
"@rc-component/util@^1.3.0":
- version "1.6.0"
- resolved "https://registry.npmjs.org/@rc-component/util/-/util-1.6.0.tgz"
- integrity sha512-YbjuIVAm8InCnXVoA4n6G+uh31yESTxQ6fSY2frZ2/oMSvktoB+bumFUfNN7RKh7YeOkZgOvN2suGtEDhJSX0A==
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/@rc-component/util/-/util-1.7.0.tgz"
+ integrity sha512-tIvIGj4Vl6fsZFvWSkYw9sAfiCKUXMyhVz6kpKyZbwyZyRPqv2vxYZROdaO1VB4gqTNvUZFXh6i3APUiterw5g==
dependencies:
is-mobile "^5.0.0"
react-is "^18.2.0"
@@ -3290,17 +3148,17 @@
resolved "https://registry.npmjs.org/@standard-schema/utils/-/utils-0.3.0.tgz"
integrity sha512-e7Mew686owMaPJVNNLs55PUvgz371nKgwsc4vxE49zsODpJEnxgxRo2y/OKrqueavXgZNMDVj3DdHFlaSAeU8g==
-"@tanstack/query-core@5.90.16":
- version "5.90.16"
- resolved "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.16.tgz"
- integrity sha512-MvtWckSVufs/ja463/K4PyJeqT+HMlJWtw6PrCpywznd2NSgO3m4KwO9RqbFqGg6iDE8vVMFWMeQI4Io3eEYww==
+"@tanstack/query-core@5.90.20":
+ version "5.90.20"
+ resolved "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.90.20.tgz"
+ integrity sha512-OMD2HLpNouXEfZJWcKeVKUgQ5n+n3A2JFmBaScpNDUqSrQSjiveC7dKMe53uJUg1nDG16ttFPz2xfilz6i2uVg==
"@tanstack/react-query@^5.90.16":
- version "5.90.16"
- resolved "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.16.tgz"
- integrity sha512-bpMGOmV4OPmif7TNMteU/Ehf/hoC0Kf98PDc0F4BZkFrEapRMEqI/V6YS0lyzwSV6PQpY1y4xxArUIfBW5LVxQ==
+ version "5.90.20"
+ resolved "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.90.20.tgz"
+ integrity sha512-vXBxa+qeyveVO7OA0jX1z+DeyCA4JKnThKv411jd5SORpBKgkcVnYKCiBgECvADvniBX7tobwBmg01qq9JmMJw==
dependencies:
- "@tanstack/query-core" "5.90.16"
+ "@tanstack/query-core" "5.90.20"
"@testing-library/dom@^10.4.0":
version "10.4.1"
@@ -3749,10 +3607,10 @@
resolved "https://registry.npmjs.org/@types/statuses/-/statuses-2.0.6.tgz"
integrity sha512-xMAgYwceFhRA2zY+XbEA7mxYbA093wdiW8Vu6gZPGWy9cmOyU9XesH1tNcEWsKFd5Vzrqx5T3D38PWx1FIIXkA==
-"@types/stylis@4.2.5":
- version "4.2.5"
- resolved "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.5.tgz"
- integrity sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==
+"@types/stylis@4.2.7":
+ version "4.2.7"
+ resolved "https://registry.npmjs.org/@types/stylis/-/stylis-4.2.7.tgz"
+ integrity sha512-VgDNokpBoKF+wrdvhAAfS55OMQpL6QRglwTwNC3kIgBrzZxA4WsFj+2eLfEA/uMUDzBcEhYmjSbwQakn/i3ajA==
"@types/testing-library__jest-dom@^5.9.1":
version "5.14.9"
@@ -4947,16 +4805,17 @@ cac@^6.7.14:
resolved "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz"
integrity sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==
-cacheable@^2.2.0:
- version "2.3.1"
- resolved "https://registry.npmjs.org/cacheable/-/cacheable-2.3.1.tgz"
- integrity sha512-yr+FSHWn1ZUou5LkULX/S+jhfgfnLbuKQjE40tyEd4fxGZVMbBL5ifno0J0OauykS8UiCSgHi+DV/YD+rjFxFg==
+cacheable@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.npmjs.org/cacheable/-/cacheable-2.1.0.tgz"
+ integrity sha512-zzL1BxdnqwD69JRT0dihnawAcLkBMwAH+hZSKjUzeBbPedVhk3qYPjRw9VOMYWwt5xRih5xd8S+3kEdGohZm/g==
dependencies:
- "@cacheable/memory" "^2.0.6"
- "@cacheable/utils" "^2.3.2"
- hookified "^1.14.0"
- keyv "^5.5.5"
- qified "^0.5.3"
+ "@cacheable/memoize" "^2.0.3"
+ "@cacheable/memory" "^2.0.3"
+ "@cacheable/utils" "^2.1.0"
+ hookified "^1.12.1"
+ keyv "^5.5.3"
+ qified "^0.5.0"
call-bind-apply-helpers@^1.0.0, call-bind-apply-helpers@^1.0.1, call-bind-apply-helpers@^1.0.2:
version "1.0.2"
@@ -5514,10 +5373,10 @@ cssstyle@^4.2.1:
"@asamuzakjp/css-color" "^3.2.0"
rrweb-cssom "^0.8.0"
-csstype@3.1.3, csstype@^3.0.2, csstype@^3.0.8, csstype@^3.1.3:
- version "3.1.3"
- resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
- integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
+csstype@3.2.3, csstype@^3.0.2, csstype@^3.0.8, csstype@^3.1.3:
+ version "3.2.3"
+ resolved "https://registry.npmjs.org/csstype/-/csstype-3.2.3.tgz"
+ integrity sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==
"d3-array@1 - 3", "d3-array@2 - 3", "d3-array@2.10.0 - 3", "d3-array@2.5.0 - 3", d3-array@3, d3-array@^3.1.6, d3-array@^3.2.0, d3-array@^3.2.4:
version "3.2.4"
@@ -6849,12 +6708,12 @@ fflate@^0.8.1, fflate@^0.8.2:
resolved "https://registry.npmjs.org/fflate/-/fflate-0.8.2.tgz"
integrity sha512-cPJU47OaAoCbg0pBvzsgpTPhmhqI5eJjh/JIu8tPj5q+T7iLvW/JAYUqmE7KOB4R1ZyEhzBaIQpQpardBF5z8A==
-file-entry-cache@^11.1.1:
- version "11.1.1"
- resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-11.1.1.tgz"
- integrity sha512-TPVFSDE7q91Dlk1xpFLvFllf8r0HyOMOlnWy7Z2HBku5H3KhIeOGInexrIeg2D64DosVB/JXkrrk6N/7Wriq4A==
+file-entry-cache@^10.1.4:
+ version "10.1.4"
+ resolved "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-10.1.4.tgz"
+ integrity sha512-5XRUFc0WTtUbjfGzEwXc42tiGxQHBmtbUG1h9L2apu4SulCGN3Hqm//9D6FAolf8MYNL7f/YlJl9vy08pj5JuA==
dependencies:
- flat-cache "^6.1.19"
+ flat-cache "^6.1.13"
file-entry-cache@^6.0.1:
version "6.0.1"
@@ -6900,14 +6759,14 @@ flat-cache@^3.0.4:
keyv "^4.5.3"
rimraf "^3.0.2"
-flat-cache@^6.1.19:
- version "6.1.19"
- resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.19.tgz"
- integrity sha512-l/K33newPTZMTGAnnzaiqSl6NnH7Namh8jBNjrgjprWxGmZUuxx/sJNIRaijOh3n7q7ESbhNZC+pvVZMFdeU4A==
+flat-cache@^6.1.13:
+ version "6.1.18"
+ resolved "https://registry.npmjs.org/flat-cache/-/flat-cache-6.1.18.tgz"
+ integrity sha512-JUPnFgHMuAVmLmoH9/zoZ6RHOt5n9NlUw/sDXsTbROJ2SFoS2DS4s+swAV6UTeTbGH/CAsZIE6M8TaG/3jVxgQ==
dependencies:
- cacheable "^2.2.0"
+ cacheable "^2.1.0"
flatted "^3.3.3"
- hookified "^1.13.0"
+ hookified "^1.12.0"
flatted@^3.2.9, flatted@^3.3.3:
version "3.3.3"
@@ -7263,13 +7122,6 @@ hash.js@^1.0.0, hash.js@^1.0.3:
inherits "^2.0.3"
minimalistic-assert "^1.0.1"
-hashery@^1.2.0, hashery@^1.3.0:
- version "1.4.0"
- resolved "https://registry.npmjs.org/hashery/-/hashery-1.4.0.tgz"
- integrity sha512-Wn2i1In6XFxl8Az55kkgnFRiAlIAushzh26PTjL2AKtQcEfXrcLa7Hn5QOWGZEf3LU057P9TwwZjFyxfS1VuvQ==
- dependencies:
- hookified "^1.14.0"
-
hasown@^2.0.2:
version "2.0.2"
resolved "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz"
@@ -7310,10 +7162,10 @@ hoist-non-react-statics@^3.1.0, hoist-non-react-statics@^3.3.0, hoist-non-react-
dependencies:
react-is "^16.7.0"
-hookified@^1.13.0, hookified@^1.14.0:
- version "1.15.0"
- resolved "https://registry.npmjs.org/hookified/-/hookified-1.15.0.tgz"
- integrity sha512-51w+ZZGt7Zw5q7rM3nC4t3aLn/xvKDETsXqMczndvwyVQhAHfUmUuFBRFcos8Iyebtk7OAE9dL26wFNzZVVOkw==
+hookified@^1.12.0, hookified@^1.12.1:
+ version "1.12.2"
+ resolved "https://registry.npmjs.org/hookified/-/hookified-1.12.2.tgz"
+ integrity sha512-aokUX1VdTpI0DUsndvW+OiwmBpKCu/NgRsSSkuSY0zq8PY6Q6a+lmOfAFDXAAOtBqJELvcWY9L1EVtzjbQcMdg==
html-dom-parser@1.2.0:
version "1.2.0"
@@ -8608,10 +8460,10 @@ keyv@^4.5.3:
dependencies:
json-buffer "3.0.1"
-keyv@^5.5.5:
- version "5.5.5"
- resolved "https://registry.npmjs.org/keyv/-/keyv-5.5.5.tgz"
- integrity sha512-FA5LmZVF1VziNc0bIdCSA1IoSVnDCqE8HJIZZv2/W8YmoAM50+tnUgJR/gQZwEeIMleuIOnRnHA/UaZRNeV4iQ==
+keyv@^5.5.3:
+ version "5.5.3"
+ resolved "https://registry.npmjs.org/keyv/-/keyv-5.5.3.tgz"
+ integrity sha512-h0Un1ieD+HUrzBH6dJXhod3ifSghk5Hw/2Y4/KHBziPlZecrFyE9YOTPU6eOs0V9pYl8gOs86fkr/KN8lUX39A==
dependencies:
"@keyv/serialize" "^1.1.1"
@@ -9507,9 +9359,9 @@ postcss-safe-parser@^7.0.1:
integrity sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==
postcss-selector-parser@^7.1.0:
- version "7.1.1"
- resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.1.tgz"
- integrity sha512-orRsuYpJVw8LdAwqqLykBj9ecS5/cRHlI5+nvTo8LcCKmzDmqVORXtOIYEEQuL9D4BxtA1lm5isAqzQZCoQ6Eg==
+ version "7.1.0"
+ resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.1.0.tgz"
+ integrity sha512-8sLjZwK0R+JlxlYcTuVnyT2v+htpdrjDOKuMcOVdYjt52Lh8hWRYpxBPoKx/Zg+bcjc3wx6fmQevMmUztS/ccA==
dependencies:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
@@ -9661,12 +9513,12 @@ pure-rand@^7.0.0:
resolved "https://registry.npmjs.org/pure-rand/-/pure-rand-7.0.1.tgz"
integrity sha512-oTUZM/NAZS8p7ANR3SHh30kXB+zK2r2BPcEn/awJIbOvq82WoMN4p62AWWp3Hhw50G0xMsw1mhIBLqHw64EcNQ==
-qified@^0.5.3:
- version "0.5.3"
- resolved "https://registry.npmjs.org/qified/-/qified-0.5.3.tgz"
- integrity sha512-kXuQdQTB6oN3KhI6V4acnBSZx8D2I4xzZvn9+wFLLFCoBNQY/sFnCW6c43OL7pOQ2HvGV4lnWIXNmgfp7cTWhQ==
+qified@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.npmjs.org/qified/-/qified-0.5.0.tgz"
+ integrity sha512-Zj6Q/Vc/SQ+Fzc87N90jJUzBzxD7MVQ2ZvGyMmYtnl2u1a07CejAhvtk4ZwASos+SiHKCAIylyGHJKIek75QBw==
dependencies:
- hookified "^1.13.0"
+ hookified "^1.12.1"
querystringify@^2.1.1:
version "2.2.0"
@@ -11396,19 +11248,19 @@ style-to-object@0.3.0:
inline-style-parser "0.1.1"
styled-components@^6.1.15:
- version "6.1.19"
- resolved "https://registry.npmjs.org/styled-components/-/styled-components-6.1.19.tgz"
- integrity sha512-1v/e3Dl1BknC37cXMhwGomhO8AkYmN41CqyX9xhUDxry1ns3BFQy2lLDRQXJRdVVWB9OHemv/53xaStimvWyuA==
+ version "6.3.8"
+ resolved "https://registry.npmjs.org/styled-components/-/styled-components-6.3.8.tgz"
+ integrity sha512-Kq/W41AKQloOqKM39zfaMdJ4BcYDw/N5CIq4/GTI0YjU6pKcZ1KKhk6b4du0a+6RA9pIfOP/eu94Ge7cu+PDCA==
dependencies:
- "@emotion/is-prop-valid" "1.2.2"
- "@emotion/unitless" "0.8.1"
- "@types/stylis" "4.2.5"
+ "@emotion/is-prop-valid" "1.4.0"
+ "@emotion/unitless" "0.10.0"
+ "@types/stylis" "4.2.7"
css-to-react-native "3.2.0"
- csstype "3.1.3"
+ csstype "3.2.3"
postcss "8.4.49"
shallowequal "1.1.0"
- stylis "4.3.2"
- tslib "2.6.2"
+ stylis "4.3.6"
+ tslib "2.8.1"
stylelint-config-recommended@^17.0.0:
version "17.0.0"
@@ -11423,12 +11275,11 @@ stylelint-config-standard@^39.0.1:
stylelint-config-recommended "^17.0.0"
stylelint@^16.25.0:
- version "16.26.1"
- resolved "https://registry.npmjs.org/stylelint/-/stylelint-16.26.1.tgz"
- integrity sha512-v20V59/crfc8sVTAtge0mdafI3AdnzQ2KsWe6v523L4OA1bJO02S7MO2oyXDCS6iWb9ckIPnqAFVItqSBQr7jw==
+ version "16.25.0"
+ resolved "https://registry.npmjs.org/stylelint/-/stylelint-16.25.0.tgz"
+ integrity sha512-Li0avYWV4nfv1zPbdnxLYBGq4z8DVZxbRgx4Kn6V+Uftz1rMoF1qiEI3oL4kgWqyYgCgs7gT5maHNZ82Gk03vQ==
dependencies:
"@csstools/css-parser-algorithms" "^3.0.5"
- "@csstools/css-syntax-patches-for-csstree" "^1.0.19"
"@csstools/css-tokenizer" "^3.0.4"
"@csstools/media-query-list-parser" "^4.0.3"
"@csstools/selector-specificity" "^5.0.0"
@@ -11441,7 +11292,7 @@ stylelint@^16.25.0:
debug "^4.4.3"
fast-glob "^3.3.3"
fastest-levenshtein "^1.0.16"
- file-entry-cache "^11.1.1"
+ file-entry-cache "^10.1.4"
global-modules "^2.0.0"
globby "^11.1.0"
globjoin "^0.1.4"
@@ -11472,12 +11323,7 @@ stylis@4.2.0:
resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz"
integrity sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==
-stylis@4.3.2:
- version "4.3.2"
- resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz"
- integrity sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==
-
-stylis@^4.3.4:
+stylis@4.3.6, stylis@^4.3.4:
version "4.3.6"
resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz"
integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==
@@ -11765,12 +11611,7 @@ tsconfig-paths@^3.15.0:
minimist "^1.2.6"
strip-bom "^3.0.0"
-tslib@2.6.2:
- version "2.6.2"
- resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"
- integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
-
-tslib@^2.0.0, tslib@^2.0.3, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.5.3:
+tslib@2.8.1, tslib@^2.0.0, tslib@^2.0.3, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.5.0, tslib@^2.5.3:
version "2.8.1"
resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==