mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
feat: burndown chart (#268)
* chore: recharts dependencie added * chore: tpye added for issue completed at * feat: date range helper fn added * feat: progress chart added * feat: ideal task line added in progress chart * feat: chart legends added
This commit is contained in:
parent
af22dc9c58
commit
bb4ffec7e8
97
apps/app/components/core/sidebar/progress-chart.tsx
Normal file
97
apps/app/components/core/sidebar/progress-chart.tsx
Normal file
@ -0,0 +1,97 @@
|
|||||||
|
import React from "react";
|
||||||
|
|
||||||
|
import {
|
||||||
|
XAxis,
|
||||||
|
YAxis,
|
||||||
|
Tooltip,
|
||||||
|
ResponsiveContainer,
|
||||||
|
AreaChart,
|
||||||
|
Area,
|
||||||
|
ReferenceLine,
|
||||||
|
} from "recharts";
|
||||||
|
|
||||||
|
//types
|
||||||
|
import { IIssue } from "types";
|
||||||
|
// helper
|
||||||
|
import { getDatesInRange, renderShortNumericDateFormat } from "helpers/date-time.helper";
|
||||||
|
|
||||||
|
type Props = {
|
||||||
|
issues: IIssue[];
|
||||||
|
start: string;
|
||||||
|
end: string;
|
||||||
|
};
|
||||||
|
|
||||||
|
const ProgressChart: React.FC<Props> = ({ issues, start, end }) => {
|
||||||
|
const startDate = new Date(start);
|
||||||
|
const endDate = new Date(end);
|
||||||
|
const getChartData = () => {
|
||||||
|
const dateRangeArray = getDatesInRange(startDate, endDate);
|
||||||
|
let count = 0;
|
||||||
|
const dateWiseData = dateRangeArray.map((d) => {
|
||||||
|
const current = d.toISOString().split("T")[0];
|
||||||
|
const total = issues.length;
|
||||||
|
const currentData = issues.filter(
|
||||||
|
(i) => i.completed_at && i.completed_at.toString().split("T")[0] === current
|
||||||
|
);
|
||||||
|
count = currentData ? currentData.length + count : count;
|
||||||
|
|
||||||
|
return {
|
||||||
|
currentDate: renderShortNumericDateFormat(current),
|
||||||
|
currentDateData: currentData,
|
||||||
|
pending: new Date(current) < new Date() ? total - count : null,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
return dateWiseData;
|
||||||
|
};
|
||||||
|
const ChartData = getChartData();
|
||||||
|
return (
|
||||||
|
<div className="relative h-[200px] w-full ">
|
||||||
|
<div className="flex items-center justify-center h-full w-full absolute -left-8 py-3 text-xs">
|
||||||
|
<ResponsiveContainer width="100%" height="100%">
|
||||||
|
<AreaChart
|
||||||
|
width={300}
|
||||||
|
height={200}
|
||||||
|
data={ChartData}
|
||||||
|
margin={{
|
||||||
|
top: 0,
|
||||||
|
right: 0,
|
||||||
|
left: 0,
|
||||||
|
bottom: 0,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<XAxis dataKey="currentDate" />
|
||||||
|
<YAxis />
|
||||||
|
<Tooltip />
|
||||||
|
<Area
|
||||||
|
type="monotone"
|
||||||
|
dataKey="pending"
|
||||||
|
stroke="#8884d8"
|
||||||
|
fill="#98d1fb"
|
||||||
|
activeDot={{ r: 8 }}
|
||||||
|
/>
|
||||||
|
<ReferenceLine
|
||||||
|
stroke="#16a34a"
|
||||||
|
strokeDasharray="3 3"
|
||||||
|
segment={[
|
||||||
|
{ x: `${renderShortNumericDateFormat(endDate)}`, y: 0 },
|
||||||
|
{ x: `${renderShortNumericDateFormat(startDate)}`, y: issues.length },
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</AreaChart>
|
||||||
|
</ResponsiveContainer>
|
||||||
|
</div>
|
||||||
|
<div className="z-10 flex flex-col absolute top-2 right-2 justify-center items-start gap-1 text-xs">
|
||||||
|
<div className="flex justify-center items-center gap-2">
|
||||||
|
<span className="h-2 w-2 bg-green-600" />
|
||||||
|
<span>Ideal</span>
|
||||||
|
</div>
|
||||||
|
<div className="flex justify-center items-center gap-2">
|
||||||
|
<span className="h-2 w-2 bg-[#8884d8]" />
|
||||||
|
<span>Current</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default ProgressChart;
|
@ -53,130 +53,128 @@ export const SidebarProgressStats: React.FC<Props> = ({ groupedIssues, issues })
|
|||||||
: null
|
: null
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col items-center justify-center w-full gap-2 ">
|
<Tab.Group>
|
||||||
<Tab.Group>
|
<Tab.List
|
||||||
<Tab.List
|
as="div"
|
||||||
as="div"
|
className="flex items-center justify-between w-full rounded bg-gray-100 text-xs"
|
||||||
className="flex items-center justify-between w-full rounded bg-gray-100 text-xs"
|
>
|
||||||
|
<Tab
|
||||||
|
className={({ selected }) =>
|
||||||
|
`w-1/2 rounded py-1 ${selected ? "bg-gray-300" : "hover:bg-gray-200"}`
|
||||||
|
}
|
||||||
>
|
>
|
||||||
<Tab
|
Assignees
|
||||||
className={({ selected }) =>
|
</Tab>
|
||||||
`w-1/2 rounded py-1 ${selected ? "bg-gray-300" : "hover:bg-gray-200"}`
|
<Tab
|
||||||
|
className={({ selected }) =>
|
||||||
|
`w-1/2 rounded py-1 ${selected ? "bg-gray-300 font-semibold" : "hover:bg-gray-200 "}`
|
||||||
|
}
|
||||||
|
>
|
||||||
|
Labels
|
||||||
|
</Tab>
|
||||||
|
<Tab
|
||||||
|
className={({ selected }) =>
|
||||||
|
`w-1/2 rounded py-1 ${selected ? "bg-gray-300 font-semibold" : "hover:bg-gray-200 "}`
|
||||||
|
}
|
||||||
|
>
|
||||||
|
States
|
||||||
|
</Tab>
|
||||||
|
</Tab.List>
|
||||||
|
<Tab.Panels className="flex items-center justify-between w-full">
|
||||||
|
<Tab.Panel as="div" className="w-full flex flex-col ">
|
||||||
|
{members?.map((member, index) => {
|
||||||
|
const totalArray = issues?.filter((i) => i.assignees?.includes(member.member.id));
|
||||||
|
const completeArray = totalArray?.filter((i) => i.state_detail.group === "completed");
|
||||||
|
if (totalArray.length > 0) {
|
||||||
|
return (
|
||||||
|
<SingleProgressStats
|
||||||
|
key={index}
|
||||||
|
title={
|
||||||
|
<>
|
||||||
|
<Avatar user={member.member} />
|
||||||
|
<span>{member.member.first_name}</span>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
completed={completeArray.length}
|
||||||
|
total={totalArray.length}
|
||||||
|
/>
|
||||||
|
);
|
||||||
}
|
}
|
||||||
>
|
})}
|
||||||
Assignees
|
{issues?.filter((i) => i.assignees?.length === 0).length > 0 ? (
|
||||||
</Tab>
|
<SingleProgressStats
|
||||||
<Tab
|
title={
|
||||||
className={({ selected }) =>
|
<>
|
||||||
`w-1/2 rounded py-1 ${selected ? "bg-gray-300 font-semibold" : "hover:bg-gray-200 "}`
|
<div className="h-5 w-5 rounded-full border-2 border-white bg-white">
|
||||||
}
|
<Image
|
||||||
>
|
src={User}
|
||||||
Labels
|
height="100%"
|
||||||
</Tab>
|
width="100%"
|
||||||
<Tab
|
className="rounded-full"
|
||||||
className={({ selected }) =>
|
alt="User"
|
||||||
`w-1/2 rounded py-1 ${selected ? "bg-gray-300 font-semibold" : "hover:bg-gray-200 "}`
|
|
||||||
}
|
|
||||||
>
|
|
||||||
States
|
|
||||||
</Tab>
|
|
||||||
</Tab.List>
|
|
||||||
<Tab.Panels className="flex items-center justify-between w-full">
|
|
||||||
<Tab.Panel as="div" className="w-full flex flex-col ">
|
|
||||||
{members?.map((member, index) => {
|
|
||||||
const totalArray = issues?.filter((i) => i.assignees?.includes(member.member.id));
|
|
||||||
const completeArray = totalArray?.filter((i) => i.state_detail.group === "completed");
|
|
||||||
if (totalArray.length > 0) {
|
|
||||||
return (
|
|
||||||
<SingleProgressStats
|
|
||||||
key={index}
|
|
||||||
title={
|
|
||||||
<>
|
|
||||||
<Avatar user={member.member} />
|
|
||||||
<span>{member.member.first_name}</span>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
completed={completeArray.length}
|
|
||||||
total={totalArray.length}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
})}
|
|
||||||
{issues?.filter((i) => i.assignees?.length === 0).length > 0 ? (
|
|
||||||
<SingleProgressStats
|
|
||||||
title={
|
|
||||||
<>
|
|
||||||
<div className="h-5 w-5 rounded-full border-2 border-white bg-white">
|
|
||||||
<Image
|
|
||||||
src={User}
|
|
||||||
height="100%"
|
|
||||||
width="100%"
|
|
||||||
className="rounded-full"
|
|
||||||
alt="User"
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
<span>No assignee</span>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
completed={
|
|
||||||
issues?.filter(
|
|
||||||
(i) => i.state_detail.group === "completed" && i.assignees?.length === 0
|
|
||||||
).length
|
|
||||||
}
|
|
||||||
total={issues?.filter((i) => i.assignees?.length === 0).length}
|
|
||||||
/>
|
|
||||||
) : (
|
|
||||||
""
|
|
||||||
)}
|
|
||||||
</Tab.Panel>
|
|
||||||
<Tab.Panel as="div" className="w-full flex flex-col ">
|
|
||||||
{issueLabels?.map((issue, index) => {
|
|
||||||
const totalArray = issues?.filter((i) => i.labels?.includes(issue.id));
|
|
||||||
const completeArray = totalArray?.filter((i) => i.state_detail.group === "completed");
|
|
||||||
if (totalArray.length > 0) {
|
|
||||||
return (
|
|
||||||
<SingleProgressStats
|
|
||||||
key={index}
|
|
||||||
title={
|
|
||||||
<>
|
|
||||||
<span
|
|
||||||
className="block h-2 w-2 rounded-full "
|
|
||||||
style={{
|
|
||||||
backgroundColor: issue.color,
|
|
||||||
}}
|
|
||||||
/>
|
|
||||||
<span className="text-xs capitalize">{issue.name}</span>
|
|
||||||
</>
|
|
||||||
}
|
|
||||||
completed={completeArray.length}
|
|
||||||
total={totalArray.length}
|
|
||||||
/>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
})}
|
|
||||||
</Tab.Panel>
|
|
||||||
<Tab.Panel as="div" className="w-full flex flex-col ">
|
|
||||||
{Object.keys(groupedIssues).map((group, index) => (
|
|
||||||
<SingleProgressStats
|
|
||||||
key={index}
|
|
||||||
title={
|
|
||||||
<>
|
|
||||||
<span
|
|
||||||
className="block h-2 w-2 rounded-full "
|
|
||||||
style={{
|
|
||||||
backgroundColor: stateGroupColours[group],
|
|
||||||
}}
|
|
||||||
/>
|
/>
|
||||||
<span className="text-xs capitalize">{group}</span>
|
</div>
|
||||||
</>
|
<span>No assignee</span>
|
||||||
}
|
</>
|
||||||
completed={groupedIssues[group].length}
|
}
|
||||||
total={issues.length}
|
completed={
|
||||||
/>
|
issues?.filter(
|
||||||
))}
|
(i) => i.state_detail.group === "completed" && i.assignees?.length === 0
|
||||||
</Tab.Panel>
|
).length
|
||||||
</Tab.Panels>
|
}
|
||||||
</Tab.Group>
|
total={issues?.filter((i) => i.assignees?.length === 0).length}
|
||||||
</div>
|
/>
|
||||||
|
) : (
|
||||||
|
""
|
||||||
|
)}
|
||||||
|
</Tab.Panel>
|
||||||
|
<Tab.Panel as="div" className="w-full flex flex-col ">
|
||||||
|
{issueLabels?.map((issue, index) => {
|
||||||
|
const totalArray = issues?.filter((i) => i.labels?.includes(issue.id));
|
||||||
|
const completeArray = totalArray?.filter((i) => i.state_detail.group === "completed");
|
||||||
|
if (totalArray.length > 0) {
|
||||||
|
return (
|
||||||
|
<SingleProgressStats
|
||||||
|
key={index}
|
||||||
|
title={
|
||||||
|
<>
|
||||||
|
<span
|
||||||
|
className="block h-2 w-2 rounded-full "
|
||||||
|
style={{
|
||||||
|
backgroundColor: issue.color,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<span className="text-xs capitalize">{issue.name}</span>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
completed={completeArray.length}
|
||||||
|
total={totalArray.length}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
})}
|
||||||
|
</Tab.Panel>
|
||||||
|
<Tab.Panel as="div" className="w-full flex flex-col ">
|
||||||
|
{Object.keys(groupedIssues).map((group, index) => (
|
||||||
|
<SingleProgressStats
|
||||||
|
key={index}
|
||||||
|
title={
|
||||||
|
<>
|
||||||
|
<span
|
||||||
|
className="block h-2 w-2 rounded-full "
|
||||||
|
style={{
|
||||||
|
backgroundColor: stateGroupColours[group],
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
<span className="text-xs capitalize">{group}</span>
|
||||||
|
</>
|
||||||
|
}
|
||||||
|
completed={groupedIssues[group].length}
|
||||||
|
total={issues.length}
|
||||||
|
/>
|
||||||
|
))}
|
||||||
|
</Tab.Panel>
|
||||||
|
</Tab.Panels>
|
||||||
|
</Tab.Group>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
@ -42,6 +42,7 @@ import { groupBy } from "helpers/array.helper";
|
|||||||
import { IIssue, IModule, ModuleIssueResponse } from "types";
|
import { IIssue, IModule, ModuleIssueResponse } from "types";
|
||||||
// fetch-keys
|
// fetch-keys
|
||||||
import { MODULE_DETAILS } from "constants/fetch-keys";
|
import { MODULE_DETAILS } from "constants/fetch-keys";
|
||||||
|
import ProgressChart from "components/core/sidebar/progress-chart";
|
||||||
|
|
||||||
const defaultValues: Partial<IModule> = {
|
const defaultValues: Partial<IModule> = {
|
||||||
lead: "",
|
lead: "",
|
||||||
@ -295,7 +296,13 @@ export const ModuleDetailsSidebar: React.FC<Props> = ({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="w-full">
|
<div className="flex flex-col items-center justify-center w-full gap-2 ">
|
||||||
|
<ProgressChart
|
||||||
|
issues={issues}
|
||||||
|
start={module?.start_date ?? ""}
|
||||||
|
end={module?.target_date ?? ""}
|
||||||
|
/>
|
||||||
|
|
||||||
<SidebarProgressStats issues={issues} groupedIssues={groupedIssues} />
|
<SidebarProgressStats issues={issues} groupedIssues={groupedIssues} />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
@ -29,6 +29,7 @@ import { renderShortNumericDateFormat } from "helpers/date-time.helper";
|
|||||||
import { CycleIssueResponse, ICycle, IIssue } from "types";
|
import { CycleIssueResponse, ICycle, IIssue } from "types";
|
||||||
// fetch-keys
|
// fetch-keys
|
||||||
import { CYCLE_DETAILS } from "constants/fetch-keys";
|
import { CYCLE_DETAILS } from "constants/fetch-keys";
|
||||||
|
import ProgressChart from "components/core/sidebar/progress-chart";
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
issues: IIssue[];
|
issues: IIssue[];
|
||||||
@ -246,7 +247,14 @@ const CycleDetailSidebar: React.FC<Props> = ({ issues, cycle, isOpen, cycleIssue
|
|||||||
</div>
|
</div>
|
||||||
<div className="py-1" />
|
<div className="py-1" />
|
||||||
</div>
|
</div>
|
||||||
<div className="w-full">
|
<div className="flex flex-col items-center justify-center w-full gap-2 ">
|
||||||
|
<div className="relative h-[200px] w-full ">
|
||||||
|
<ProgressChart
|
||||||
|
issues={issues}
|
||||||
|
start={cycle?.start_date ?? ""}
|
||||||
|
end={cycle?.end_date ?? ""}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
<SidebarProgressStats issues={issues} groupedIssues={groupedIssues} />
|
<SidebarProgressStats issues={issues} groupedIssues={groupedIssues} />
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
|
@ -25,6 +25,16 @@ export const findHowManyDaysLeft = (date: string | Date) => {
|
|||||||
return Math.ceil(timeDiff / (1000 * 3600 * 24));
|
return Math.ceil(timeDiff / (1000 * 3600 * 24));
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export const getDatesInRange = (startDate: Date, endDate: Date) => {
|
||||||
|
const date = new Date(startDate.getTime());
|
||||||
|
const dates = [];
|
||||||
|
while (date <= endDate) {
|
||||||
|
dates.push(new Date(date));
|
||||||
|
date.setDate(date.getDate() + 1);
|
||||||
|
}
|
||||||
|
return dates;
|
||||||
|
};
|
||||||
|
|
||||||
export const timeAgo = (time: any) => {
|
export const timeAgo = (time: any) => {
|
||||||
switch (typeof time) {
|
switch (typeof time) {
|
||||||
case "number":
|
case "number":
|
||||||
|
@ -31,6 +31,7 @@
|
|||||||
"react-dom": "18.2.0",
|
"react-dom": "18.2.0",
|
||||||
"react-dropzone": "^14.2.3",
|
"react-dropzone": "^14.2.3",
|
||||||
"react-hook-form": "^7.38.0",
|
"react-hook-form": "^7.38.0",
|
||||||
|
"recharts": "^2.3.2",
|
||||||
"remirror": "^2.0.23",
|
"remirror": "^2.0.23",
|
||||||
"swr": "^1.3.0",
|
"swr": "^1.3.0",
|
||||||
"uuid": "^9.0.0"
|
"uuid": "^9.0.0"
|
||||||
|
1
apps/app/types/issues.d.ts
vendored
1
apps/app/types/issues.d.ts
vendored
@ -74,6 +74,7 @@ export interface IIssue {
|
|||||||
blockers_list: string[];
|
blockers_list: string[];
|
||||||
blocks_list: string[];
|
blocks_list: string[];
|
||||||
bridge: string;
|
bridge: string;
|
||||||
|
completed_at: Date;
|
||||||
created_at: Date;
|
created_at: Date;
|
||||||
created_by: string;
|
created_by: string;
|
||||||
cycle: string | null;
|
cycle: string | null;
|
||||||
|
323
pnpm-lock.yaml
323
pnpm-lock.yaml
@ -9,8 +9,8 @@ importers:
|
|||||||
turbo: latest
|
turbo: latest
|
||||||
devDependencies:
|
devDependencies:
|
||||||
config: link:packages/config
|
config: link:packages/config
|
||||||
prettier: 2.8.3
|
prettier: 2.8.4
|
||||||
turbo: 1.7.2
|
turbo: 1.7.4
|
||||||
|
|
||||||
apps/app:
|
apps/app:
|
||||||
specifiers:
|
specifiers:
|
||||||
@ -50,6 +50,7 @@ importers:
|
|||||||
react-dom: 18.2.0
|
react-dom: 18.2.0
|
||||||
react-dropzone: ^14.2.3
|
react-dropzone: ^14.2.3
|
||||||
react-hook-form: ^7.38.0
|
react-hook-form: ^7.38.0
|
||||||
|
recharts: ^2.3.2
|
||||||
remirror: ^2.0.23
|
remirror: ^2.0.23
|
||||||
swr: ^1.3.0
|
swr: ^1.3.0
|
||||||
tailwindcss: ^3.1.6
|
tailwindcss: ^3.1.6
|
||||||
@ -79,6 +80,7 @@ importers:
|
|||||||
react-dom: 18.2.0_react@18.2.0
|
react-dom: 18.2.0_react@18.2.0
|
||||||
react-dropzone: 14.2.3_react@18.2.0
|
react-dropzone: 14.2.3_react@18.2.0
|
||||||
react-hook-form: 7.40.0_react@18.2.0
|
react-hook-form: 7.40.0_react@18.2.0
|
||||||
|
recharts: 2.3.2_biqbaboplfbrettd7655fr4n2y
|
||||||
remirror: 2.0.23_yxmznn53udiq54cecqhape5kke
|
remirror: 2.0.23_yxmznn53udiq54cecqhape5kke
|
||||||
swr: 1.3.0_react@18.2.0
|
swr: 1.3.0_react@18.2.0
|
||||||
uuid: 9.0.0
|
uuid: 9.0.0
|
||||||
@ -1462,13 +1464,13 @@ packages:
|
|||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
regenerator-runtime: 0.13.11
|
regenerator-runtime: 0.13.11
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@babel/runtime/7.20.7:
|
/@babel/runtime/7.20.7:
|
||||||
resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
|
resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
|
||||||
engines: {node: '>=6.9.0'}
|
engines: {node: '>=6.9.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
regenerator-runtime: 0.13.11
|
regenerator-runtime: 0.13.11
|
||||||
dev: false
|
|
||||||
|
|
||||||
/@babel/template/7.20.7:
|
/@babel/template/7.20.7:
|
||||||
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
|
resolution: {integrity: sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==}
|
||||||
@ -1842,7 +1844,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-owjYOn/3xaWVW01p32Ylt3cXkCP79oudJCHdcNOn4noxd/9BhyFX2wLiVf02DxGYnkAgAD3KCp3Z4iyKlueymg==}
|
resolution: {integrity: sha512-owjYOn/3xaWVW01p32Ylt3cXkCP79oudJCHdcNOn4noxd/9BhyFX2wLiVf02DxGYnkAgAD3KCp3Z4iyKlueymg==}
|
||||||
engines: {node: '>=10.0.0'}
|
engines: {node: '>=10.0.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
make-plural: 6.2.2
|
make-plural: 6.2.2
|
||||||
messageformat-parser: 4.1.3
|
messageformat-parser: 4.1.3
|
||||||
dev: false
|
dev: false
|
||||||
@ -2414,13 +2416,13 @@ packages:
|
|||||||
/@remirror/core-constants/2.0.0:
|
/@remirror/core-constants/2.0.0:
|
||||||
resolution: {integrity: sha512-vpePPMecHJllBqCWXl6+FIcZqS+tRUM2kSCCKFeEo1H3XUEv3ocijBIPhnlSAa7g6maX+12ATTgxrOsLpWVr2g==}
|
resolution: {integrity: sha512-vpePPMecHJllBqCWXl6+FIcZqS+tRUM2kSCCKFeEo1H3XUEv3ocijBIPhnlSAa7g6maX+12ATTgxrOsLpWVr2g==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@remirror/core-helpers/2.0.1:
|
/@remirror/core-helpers/2.0.1:
|
||||||
resolution: {integrity: sha512-s8M1pn33aBUhduvD1QR02uUQMegnFkGaTr4c1iBzxTTyg0rbQstzuQ7Q8TkL6n64JtgCdJS9jLz2dONb2meBKQ==}
|
resolution: {integrity: sha512-s8M1pn33aBUhduvD1QR02uUQMegnFkGaTr4c1iBzxTTyg0rbQstzuQ7Q8TkL6n64JtgCdJS9jLz2dONb2meBKQ==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@linaria/core': 3.0.0-beta.13
|
'@linaria/core': 3.0.0-beta.13
|
||||||
'@remirror/core-constants': 2.0.0
|
'@remirror/core-constants': 2.0.0
|
||||||
'@remirror/types': 1.0.0
|
'@remirror/types': 1.0.0
|
||||||
@ -2456,7 +2458,7 @@ packages:
|
|||||||
'@types/node':
|
'@types/node':
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@remirror/core-constants': 2.0.0
|
'@remirror/core-constants': 2.0.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
'@remirror/core-types': 2.0.3_@remirror+pm@2.0.3
|
'@remirror/core-types': 2.0.3_@remirror+pm@2.0.3
|
||||||
@ -3358,7 +3360,7 @@ packages:
|
|||||||
/@remirror/i18n/2.0.2:
|
/@remirror/i18n/2.0.2:
|
||||||
resolution: {integrity: sha512-NYKGdMf3DGILMHKZfOrmiGW8XlhQ7w4edkenjQfa5FPTyvZTbQzKT0urxeoF9B1Pfu7VR6yiZZLp4yRMIiGqvw==}
|
resolution: {integrity: sha512-NYKGdMf3DGILMHKZfOrmiGW8XlhQ7w4edkenjQfa5FPTyvZTbQzKT0urxeoF9B1Pfu7VR6yiZZLp4yRMIiGqvw==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@lingui/core': 3.15.0
|
'@lingui/core': 3.15.0
|
||||||
'@lingui/detect-locale': 3.15.0
|
'@lingui/detect-locale': 3.15.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
@ -3368,14 +3370,14 @@ packages:
|
|||||||
/@remirror/icons/2.0.1:
|
/@remirror/icons/2.0.1:
|
||||||
resolution: {integrity: sha512-dk+F9c38seXFnJLfPNDXKCUonUAg53LFxhpBXNkZfPxmf6bVqv2p3L5QhwEvbYmvOgdY0w4BM1Po1NYHUJfATg==}
|
resolution: {integrity: sha512-dk+F9c38seXFnJLfPNDXKCUonUAg53LFxhpBXNkZfPxmf6bVqv2p3L5QhwEvbYmvOgdY0w4BM1Po1NYHUJfATg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/@remirror/messages/2.0.2:
|
/@remirror/messages/2.0.2:
|
||||||
resolution: {integrity: sha512-Cf78RL2OXQCWkiO0QgV+1FCpmDwjoVctZ/ZAXT2RgBBmNKQHauPBZaG0Z3Cpb9I0vdz3xIaaEghwVS0cJNWtYA==}
|
resolution: {integrity: sha512-Cf78RL2OXQCWkiO0QgV+1FCpmDwjoVctZ/ZAXT2RgBBmNKQHauPBZaG0Z3Cpb9I0vdz3xIaaEghwVS0cJNWtYA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@lingui/core': 3.15.0
|
'@lingui/core': 3.15.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
dev: false
|
dev: false
|
||||||
@ -4075,6 +4077,48 @@ packages:
|
|||||||
'@types/tern': 0.23.4
|
'@types/tern': 0.23.4
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-array/3.0.4:
|
||||||
|
resolution: {integrity: sha512-nwvEkG9vYOc0Ic7G7kwgviY4AQlTfYGIZ0fqB7CQHXGyYM6nO7kJh5EguSNA3jfh4rq7Sb7eMVq8isuvg2/miQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-color/3.1.0:
|
||||||
|
resolution: {integrity: sha512-HKuicPHJuvPgCD+np6Se9MQvS6OCbJmOjGvylzMJRlDwUXjKTTXs6Pwgk79O09Vj/ho3u1ofXnhFOaEWWPrlwA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-ease/3.0.0:
|
||||||
|
resolution: {integrity: sha512-aMo4eaAOijJjA6uU+GIeW018dvy9+oH5Y2VPPzjjfxevvGQ/oRDs+tfYC9b50Q4BygRR8yE2QCLsrT0WtAVseA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-interpolate/3.0.1:
|
||||||
|
resolution: {integrity: sha512-jx5leotSeac3jr0RePOH1KdR9rISG91QIE4Q2PYTu4OymLTZfA3SrnURSLzKH48HmXVUru50b8nje4E79oQSQw==}
|
||||||
|
dependencies:
|
||||||
|
'@types/d3-color': 3.1.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-path/3.0.0:
|
||||||
|
resolution: {integrity: sha512-0g/A+mZXgFkQxN3HniRDbXMN79K3CdTpLsevj+PXiTcb2hVyvkZUBg37StmgCQkaD84cUJ4uaDAWq7UJOQy2Tg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-scale/4.0.3:
|
||||||
|
resolution: {integrity: sha512-PATBiMCpvHJSMtZAMEhc2WyL+hnzarKzI6wAHYjhsonjWJYGq5BXTzQjv4l8m2jO183/4wZ90rKvSeT7o72xNQ==}
|
||||||
|
dependencies:
|
||||||
|
'@types/d3-time': 3.0.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-shape/3.1.1:
|
||||||
|
resolution: {integrity: sha512-6Uh86YFF7LGg4PQkuO2oG6EMBRLuW9cbavUW46zkIO5kuS2PfTqo2o9SkgtQzguBHbLgNnU90UNsITpsX1My+A==}
|
||||||
|
dependencies:
|
||||||
|
'@types/d3-path': 3.0.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-time/3.0.0:
|
||||||
|
resolution: {integrity: sha512-sZLCdHvBUcNby1cB6Fd3ZBrABbjz3v1Vm90nysCQ6Vt7vd6e/h9Lt7SiJUoEX0l4Dzc7P5llKyhqSi1ycSf1Hg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/@types/d3-timer/3.0.0:
|
||||||
|
resolution: {integrity: sha512-HNB/9GHqu7Fo8AQiugyJbv6ZxYz58wef0esl4Mv828w1ZKpAshw/uFWVDUcIB9KKFeFKoxS3cHY07FFgtTRZ1g==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/@types/debug/4.1.7:
|
/@types/debug/4.1.7:
|
||||||
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
|
resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -4698,7 +4742,7 @@ packages:
|
|||||||
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
|
resolution: {integrity: sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==}
|
||||||
engines: {node: '>=6.0'}
|
engines: {node: '>=6.0'}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@babel/runtime-corejs3': 7.20.6
|
'@babel/runtime-corejs3': 7.20.6
|
||||||
|
|
||||||
/array-includes/3.1.6:
|
/array-includes/3.1.6:
|
||||||
@ -5210,6 +5254,10 @@ packages:
|
|||||||
source-map: 0.6.1
|
source-map: 0.6.1
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/css-unit-converter/1.1.2:
|
||||||
|
resolution: {integrity: sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/cssesc/3.0.0:
|
/cssesc/3.0.0:
|
||||||
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==}
|
||||||
engines: {node: '>=4'}
|
engines: {node: '>=4'}
|
||||||
@ -5218,6 +5266,77 @@ packages:
|
|||||||
/csstype/3.1.1:
|
/csstype/3.1.1:
|
||||||
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
|
resolution: {integrity: sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==}
|
||||||
|
|
||||||
|
/d3-array/3.2.2:
|
||||||
|
resolution: {integrity: sha512-yEEyEAbDrF8C6Ob2myOBLjwBLck1Z89jMGFee0oPsn95GqjerpaOA4ch+vc2l0FNFFwMD5N7OCSEN5eAlsUbgQ==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
internmap: 2.0.3
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-color/3.1.0:
|
||||||
|
resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-ease/3.0.1:
|
||||||
|
resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-format/3.1.0:
|
||||||
|
resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-interpolate/3.0.1:
|
||||||
|
resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
d3-color: 3.1.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-path/3.1.0:
|
||||||
|
resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-scale/4.0.2:
|
||||||
|
resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
d3-array: 3.2.2
|
||||||
|
d3-format: 3.1.0
|
||||||
|
d3-interpolate: 3.0.1
|
||||||
|
d3-time: 3.1.0
|
||||||
|
d3-time-format: 4.1.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-shape/3.2.0:
|
||||||
|
resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
d3-path: 3.1.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-time-format/4.1.0:
|
||||||
|
resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
d3-time: 3.1.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-time/3.1.0:
|
||||||
|
resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dependencies:
|
||||||
|
d3-array: 3.2.2
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/d3-timer/3.0.1:
|
||||||
|
resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/damerau-levenshtein/1.0.8:
|
/damerau-levenshtein/1.0.8:
|
||||||
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
resolution: {integrity: sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==}
|
||||||
|
|
||||||
@ -5261,6 +5380,10 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
ms: 2.1.2
|
ms: 2.1.2
|
||||||
|
|
||||||
|
/decimal.js-light/2.5.1:
|
||||||
|
resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/decode-named-character-reference/1.0.2:
|
/decode-named-character-reference/1.0.2:
|
||||||
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
|
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5355,6 +5478,12 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
esutils: 2.0.3
|
esutils: 2.0.3
|
||||||
|
|
||||||
|
/dom-helpers/3.4.0:
|
||||||
|
resolution: {integrity: sha512-LnuPJ+dwqKDIyotW1VzmOZ5TONUN7CwkCR5hrgawTUbkBGYdeoNLZo6nNfGkCrjtE1nXXaj7iMMpDa8/d9WoIA==}
|
||||||
|
dependencies:
|
||||||
|
'@babel/runtime': 7.20.7
|
||||||
|
dev: false
|
||||||
|
|
||||||
/dom-helpers/5.2.1:
|
/dom-helpers/5.2.1:
|
||||||
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
|
resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
@ -5836,7 +5965,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
aria-query: 4.2.2
|
aria-query: 4.2.2
|
||||||
array-includes: 3.1.6
|
array-includes: 3.1.6
|
||||||
ast-types-flow: 0.0.7
|
ast-types-flow: 0.0.7
|
||||||
@ -5858,7 +5987,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
aria-query: 4.2.2
|
aria-query: 4.2.2
|
||||||
array-includes: 3.1.6
|
array-includes: 3.1.6
|
||||||
ast-types-flow: 0.0.7
|
ast-types-flow: 0.0.7
|
||||||
@ -5880,7 +6009,7 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
aria-query: 4.2.2
|
aria-query: 4.2.2
|
||||||
array-includes: 3.1.6
|
array-includes: 3.1.6
|
||||||
ast-types-flow: 0.0.7
|
ast-types-flow: 0.0.7
|
||||||
@ -6314,6 +6443,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
|
||||||
engines: {node: '>=0.10.0'}
|
engines: {node: '>=0.10.0'}
|
||||||
|
|
||||||
|
/eventemitter3/4.0.7:
|
||||||
|
resolution: {integrity: sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/extend/3.0.2:
|
/extend/3.0.2:
|
||||||
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==}
|
||||||
dev: false
|
dev: false
|
||||||
@ -6325,6 +6458,10 @@ packages:
|
|||||||
/fast-deep-equal/3.1.3:
|
/fast-deep-equal/3.1.3:
|
||||||
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
||||||
|
|
||||||
|
/fast-equals/2.0.4:
|
||||||
|
resolution: {integrity: sha512-caj/ZmjHljPrZtbzJ3kfH5ia/k4mTJe/qSiXAGzxZWRZgsgDV0cvNaQULqUX8t0/JVlzzEdYOwCN5DmzTxoD4w==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/fast-glob/3.2.12:
|
/fast-glob/3.2.12:
|
||||||
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
|
resolution: {integrity: sha512-DVj4CQIYYow0BlaelwK1pHl5n5cRSJfM60UA0zK891sVInoPri2Ekj7+e1CT3/3qxXenpI+nBBmQAcJPJgaj4w==}
|
||||||
engines: {node: '>=8.6.0'}
|
engines: {node: '>=8.6.0'}
|
||||||
@ -6803,6 +6940,11 @@ packages:
|
|||||||
has: 1.0.3
|
has: 1.0.3
|
||||||
side-channel: 1.0.4
|
side-channel: 1.0.4
|
||||||
|
|
||||||
|
/internmap/2.0.3:
|
||||||
|
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/is-alphabetical/1.0.4:
|
/is-alphabetical/1.0.4:
|
||||||
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
|
resolution: {integrity: sha512-DwzsA04LQ10FHTZuL0/grVDk4rFoVH1pjAToYwBrHSxcrBIGQuXrQMtD5U1b0U2XVgKZCTLLP8u2Qxqhy3l2Vg==}
|
||||||
dev: false
|
dev: false
|
||||||
@ -8423,6 +8565,10 @@ packages:
|
|||||||
cssesc: 3.0.0
|
cssesc: 3.0.0
|
||||||
util-deprecate: 1.0.2
|
util-deprecate: 1.0.2
|
||||||
|
|
||||||
|
/postcss-value-parser/3.3.1:
|
||||||
|
resolution: {integrity: sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/postcss-value-parser/4.2.0:
|
/postcss-value-parser/4.2.0:
|
||||||
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
|
||||||
|
|
||||||
@ -8469,8 +8615,8 @@ packages:
|
|||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/prettier/2.8.3:
|
/prettier/2.8.4:
|
||||||
resolution: {integrity: sha512-tJ/oJ4amDihPoufT5sM0Z1SKEuKay8LfVAMlbbhnnkvt6BUserZylqo2PN+p9KeljLr0OHa2rXHU1T8reeoTrw==}
|
resolution: {integrity: sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==}
|
||||||
engines: {node: '>=10.13.0'}
|
engines: {node: '>=10.13.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
@ -8576,7 +8722,7 @@ packages:
|
|||||||
prosemirror-state: ^1
|
prosemirror-state: ^1
|
||||||
prosemirror-view: ^1
|
prosemirror-view: ^1
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@remirror/core-constants': 2.0.0
|
'@remirror/core-constants': 2.0.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
@ -8622,7 +8768,7 @@ packages:
|
|||||||
prosemirror-state: ^1
|
prosemirror-state: ^1
|
||||||
prosemirror-view: ^1
|
prosemirror-view: ^1
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@remirror/core-constants': 2.0.0
|
'@remirror/core-constants': 2.0.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
'@remirror/types': 1.0.0
|
'@remirror/types': 1.0.0
|
||||||
@ -8649,7 +8795,7 @@ packages:
|
|||||||
prosemirror-state: ^1
|
prosemirror-state: ^1
|
||||||
prosemirror-view: ^1
|
prosemirror-view: ^1
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@remirror/core-constants': 2.0.0
|
'@remirror/core-constants': 2.0.0
|
||||||
'@remirror/core-helpers': 2.0.1
|
'@remirror/core-helpers': 2.0.1
|
||||||
escape-string-regexp: 4.0.0
|
escape-string-regexp: 4.0.0
|
||||||
@ -8805,6 +8951,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
|
resolution: {integrity: sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==}
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/react-lifecycles-compat/3.0.4:
|
||||||
|
resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
|
||||||
|
dev: false
|
||||||
|
|
||||||
/react-onclickoutside/6.12.2_biqbaboplfbrettd7655fr4n2y:
|
/react-onclickoutside/6.12.2_biqbaboplfbrettd7655fr4n2y:
|
||||||
resolution: {integrity: sha512-NMXGa223OnsrGVp5dJHkuKxQ4czdLmXSp5jSV9OqiCky9LOpPATn3vLldc+q5fK3gKbEHvr7J1u0yhBh/xYkpA==}
|
resolution: {integrity: sha512-NMXGa223OnsrGVp5dJHkuKxQ4czdLmXSp5jSV9OqiCky9LOpPATn3vLldc+q5fK3gKbEHvr7J1u0yhBh/xYkpA==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -8841,7 +8991,7 @@ packages:
|
|||||||
react-native:
|
react-native:
|
||||||
optional: true
|
optional: true
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
'@types/react-redux': 7.1.24
|
'@types/react-redux': 7.1.24
|
||||||
hoist-non-react-statics: 3.3.2
|
hoist-non-react-statics: 3.3.2
|
||||||
loose-envify: 1.4.0
|
loose-envify: 1.4.0
|
||||||
@ -8851,6 +9001,44 @@ packages:
|
|||||||
react-is: 17.0.2
|
react-is: 17.0.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/react-resize-detector/7.1.2_biqbaboplfbrettd7655fr4n2y:
|
||||||
|
resolution: {integrity: sha512-zXnPJ2m8+6oq9Nn8zsep/orts9vQv3elrpA+R8XTcW7DVVUJ9vwDwMXaBtykAYjMnkCIaOoK9vObyR7ZgFNlOw==}
|
||||||
|
peerDependencies:
|
||||||
|
react: ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
dependencies:
|
||||||
|
lodash: 4.17.21
|
||||||
|
react: 18.2.0
|
||||||
|
react-dom: 18.2.0_react@18.2.0
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/react-smooth/2.0.1_biqbaboplfbrettd7655fr4n2y:
|
||||||
|
resolution: {integrity: sha512-Own9TA0GPPf3as4vSwFhDouVfXP15ie/wIHklhyKBH5AN6NFtdk0UpHBnonV11BtqDkAWlt40MOUc+5srmW7NA==}
|
||||||
|
peerDependencies:
|
||||||
|
prop-types: ^15.6.0
|
||||||
|
react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
dependencies:
|
||||||
|
fast-equals: 2.0.4
|
||||||
|
react: 18.2.0
|
||||||
|
react-dom: 18.2.0_react@18.2.0
|
||||||
|
react-transition-group: 2.9.0_biqbaboplfbrettd7655fr4n2y
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/react-transition-group/2.9.0_biqbaboplfbrettd7655fr4n2y:
|
||||||
|
resolution: {integrity: sha512-+HzNTCHpeQyl4MJ/bdE0u6XRMe9+XG/+aL4mCxVN4DnPBQ0/5bfHWPDuOZUzYdMj94daZaZdCCc1Dzt9R/xSSg==}
|
||||||
|
peerDependencies:
|
||||||
|
react: '>=15.0.0'
|
||||||
|
react-dom: '>=15.0.0'
|
||||||
|
dependencies:
|
||||||
|
dom-helpers: 3.4.0
|
||||||
|
loose-envify: 1.4.0
|
||||||
|
prop-types: 15.8.1
|
||||||
|
react: 18.2.0
|
||||||
|
react-dom: 18.2.0_react@18.2.0
|
||||||
|
react-lifecycles-compat: 3.0.4
|
||||||
|
dev: false
|
||||||
|
|
||||||
/react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y:
|
/react-transition-group/4.4.5_biqbaboplfbrettd7655fr4n2y:
|
||||||
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
|
resolution: {integrity: sha512-pZcd1MCJoiKiBR2NRxeCRg13uCXbydPnmB4EOeRrY7480qNWO8IIgQG6zlDkm6uRMsURXPuKq0GWtiM59a5Q6g==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@ -8937,6 +9125,33 @@ packages:
|
|||||||
dependencies:
|
dependencies:
|
||||||
picomatch: 2.3.1
|
picomatch: 2.3.1
|
||||||
|
|
||||||
|
/recharts-scale/0.4.5:
|
||||||
|
resolution: {integrity: sha512-kivNFO+0OcUNu7jQquLXAxz1FIwZj8nrj+YkOKc5694NbjCvcT6aSZiIzNzd2Kul4o4rTto8QVR9lMNtxD4G1w==}
|
||||||
|
dependencies:
|
||||||
|
decimal.js-light: 2.5.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
|
/recharts/2.3.2_biqbaboplfbrettd7655fr4n2y:
|
||||||
|
resolution: {integrity: sha512-2II30fGzKaypHfHNQNUhCfiLMxrOS/gF0WFahDIEFgXtJkVEe2DpZWFfEfAn+RU3B7/h2V/B05Bwmqq3rTXwLw==}
|
||||||
|
engines: {node: '>=12'}
|
||||||
|
peerDependencies:
|
||||||
|
prop-types: ^15.6.0
|
||||||
|
react: ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
react-dom: ^16.0.0 || ^17.0.0 || ^18.0.0
|
||||||
|
dependencies:
|
||||||
|
classnames: 2.3.2
|
||||||
|
eventemitter3: 4.0.7
|
||||||
|
lodash: 4.17.21
|
||||||
|
react: 18.2.0
|
||||||
|
react-dom: 18.2.0_react@18.2.0
|
||||||
|
react-is: 16.13.1
|
||||||
|
react-resize-detector: 7.1.2_biqbaboplfbrettd7655fr4n2y
|
||||||
|
react-smooth: 2.0.1_biqbaboplfbrettd7655fr4n2y
|
||||||
|
recharts-scale: 0.4.5
|
||||||
|
reduce-css-calc: 2.1.8
|
||||||
|
victory-vendor: 36.6.8
|
||||||
|
dev: false
|
||||||
|
|
||||||
/recma-nextjs-static-props/1.0.0:
|
/recma-nextjs-static-props/1.0.0:
|
||||||
resolution: {integrity: sha512-szo+rOZFU6mR0YWZi3e3dSqcEQU+E0f7GIyfMfntHeJccH1s9ODP0HWUeK7No0lcY1smRCcC43JrpoekzuX4Aw==}
|
resolution: {integrity: sha512-szo+rOZFU6mR0YWZi3e3dSqcEQU+E0f7GIyfMfntHeJccH1s9ODP0HWUeK7No0lcY1smRCcC43JrpoekzuX4Aw==}
|
||||||
engines: {node: '>=14.0.0'}
|
engines: {node: '>=14.0.0'}
|
||||||
@ -8946,10 +9161,17 @@ packages:
|
|||||||
unified: 10.1.2
|
unified: 10.1.2
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/reduce-css-calc/2.1.8:
|
||||||
|
resolution: {integrity: sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg==}
|
||||||
|
dependencies:
|
||||||
|
css-unit-converter: 1.1.2
|
||||||
|
postcss-value-parser: 3.3.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
/redux/4.2.0:
|
/redux/4.2.0:
|
||||||
resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==}
|
resolution: {integrity: sha512-oSBmcKKIuIR4ME29/AeNUnl5L+hvBq7OaJWzaptTQJAntaPvxIJqfnjbaEiCzzaIz+XmVILfqAM3Ob0aXLPfjA==}
|
||||||
dependencies:
|
dependencies:
|
||||||
'@babel/runtime': 7.20.6
|
'@babel/runtime': 7.20.7
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/refractor/3.6.0:
|
/refractor/3.6.0:
|
||||||
@ -9867,65 +10089,65 @@ packages:
|
|||||||
typescript: 4.9.4
|
typescript: 4.9.4
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
/turbo-darwin-64/1.7.2:
|
/turbo-darwin-64/1.7.4:
|
||||||
resolution: {integrity: sha512-Sml3WR8MSu80W+gS8SnoKNImcDOlIX7zlvezzds65mW11yGniIFfZ18aKWGOm92Nj2SvXCQ2+UmyGghbFaHNmQ==}
|
resolution: {integrity: sha512-ZyYrQlUl8K/mYN1e6R7bEhPPYjMakz0DYMaexkyD7TAijQtWmTSd4a+I7VknOYNEssnUZ/v41GU3gPV1JAzxxQ==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo-darwin-arm64/1.7.2:
|
/turbo-darwin-arm64/1.7.4:
|
||||||
resolution: {integrity: sha512-JnlgGLScboUJGJxvmSsF+5xkImEDTMPg2FHzX4n8AMB9az9ZlPQAMtc+xu4p6Xp9eaykKiV2RG81YS3H0fxDLA==}
|
resolution: {integrity: sha512-CKIXg9uqp1a+Yeq/c4U0alPOqvwLUq5SBZf1PGYhGqJsfG0fRBtJfkUjHuBsuJIOGXg8rCmcGSWGIsIF6fqYuw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [darwin]
|
os: [darwin]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo-linux-64/1.7.2:
|
/turbo-linux-64/1.7.4:
|
||||||
resolution: {integrity: sha512-vbLJw6ovG+lpiPqxniscBjljKJ2jbsHuKp8uK4j/wqgp68wAVKeAZW77GGDAUgDb88XH6Kvhh2hcizL+iWduww==}
|
resolution: {integrity: sha512-RIUl4RUFFyzD2T024vL7509Ygwcw+SEa8NOwPfaN6TtJHK7RZV/SBP3fLNVOptG9WRLnOWX3OvsLMbiOqDLLyA==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo-linux-arm64/1.7.2:
|
/turbo-linux-arm64/1.7.4:
|
||||||
resolution: {integrity: sha512-zLnuS8WdHonKL74KqOopOH/leBOWumlVGF8/8hldbDPq0mwY+6myRR5/5LdveB51rkG4UJh/sQ94xV67tjBoyw==}
|
resolution: {integrity: sha512-Bg65F0AjYYYxqE6RPf2H5TIGuA/EyWMeGOATHVSZOWAbYcnG3Ly03GZii8AHnUi7ntWBdjwvXf/QbOS1ayNB6A==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [linux]
|
os: [linux]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo-windows-64/1.7.2:
|
/turbo-windows-64/1.7.4:
|
||||||
resolution: {integrity: sha512-oE5PMoXjmR09okvVzteFb6FjA6yo+nMsacsgKH2yLNq4sOrVo9tG98JkRurOv5+L6ZQ3yGXPxWHiqeH7hLkAVQ==}
|
resolution: {integrity: sha512-rTaV50XZ2BRxRHOHqt1UsWfeDmYLbn8UKE6g2D2ED+uW+kmnTvR9s01nmlGWd2sAuWcRYQyQ2V+O09VfKPKcQw==}
|
||||||
cpu: [x64]
|
cpu: [x64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo-windows-arm64/1.7.2:
|
/turbo-windows-arm64/1.7.4:
|
||||||
resolution: {integrity: sha512-mdTUJk23acRv5qxA/yEstYhM1VFenVE3FDrssxGRFq7S80smtCGK1xUd4BEDDzDlVXOqBohmM5jRh9516rcjPQ==}
|
resolution: {integrity: sha512-h8sxdKPvHTnWUPtwnYszFMmSO0P/iUUwmYY9n7iYThA71zSao28UeZ0H0Gw75cY3MPjvkjn2C4EBAUGPjuZJLw==}
|
||||||
cpu: [arm64]
|
cpu: [arm64]
|
||||||
os: [win32]
|
os: [win32]
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
dev: true
|
dev: true
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
/turbo/1.7.2:
|
/turbo/1.7.4:
|
||||||
resolution: {integrity: sha512-YR/x3GZEx0C1RV6Yvuw/HB1Ixx3upM6ZTTa4WqKz9WtLWN8u2g+u2h5KpG5YtjCS3wl/8zVXgHf2WiMK6KIghg==}
|
resolution: {integrity: sha512-8RLedDoUL0kkVKWEZ/RMM70BvKLyDFen06QuKKhYC2XNOfNKqFDqzIdcY/vGick869bNIWalChoy4O07k0HLsA==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
requiresBuild: true
|
requiresBuild: true
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
turbo-darwin-64: 1.7.2
|
turbo-darwin-64: 1.7.4
|
||||||
turbo-darwin-arm64: 1.7.2
|
turbo-darwin-arm64: 1.7.4
|
||||||
turbo-linux-64: 1.7.2
|
turbo-linux-64: 1.7.4
|
||||||
turbo-linux-arm64: 1.7.2
|
turbo-linux-arm64: 1.7.4
|
||||||
turbo-windows-64: 1.7.2
|
turbo-windows-64: 1.7.4
|
||||||
turbo-windows-arm64: 1.7.2
|
turbo-windows-arm64: 1.7.4
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/turndown-plugin-gfm/1.0.2:
|
/turndown-plugin-gfm/1.0.2:
|
||||||
@ -10187,6 +10409,25 @@ packages:
|
|||||||
vfile-message: 3.1.3
|
vfile-message: 3.1.3
|
||||||
dev: false
|
dev: false
|
||||||
|
|
||||||
|
/victory-vendor/36.6.8:
|
||||||
|
resolution: {integrity: sha512-H3kyQ+2zgjMPvbPqAl7Vwm2FD5dU7/4bCTQakFQnpIsfDljeOMDojRsrmJfwh4oAlNnWhpAf+mbAoLh8u7dwyQ==}
|
||||||
|
dependencies:
|
||||||
|
'@types/d3-array': 3.0.4
|
||||||
|
'@types/d3-ease': 3.0.0
|
||||||
|
'@types/d3-interpolate': 3.0.1
|
||||||
|
'@types/d3-scale': 4.0.3
|
||||||
|
'@types/d3-shape': 3.1.1
|
||||||
|
'@types/d3-time': 3.0.0
|
||||||
|
'@types/d3-timer': 3.0.0
|
||||||
|
d3-array: 3.2.2
|
||||||
|
d3-ease: 3.0.1
|
||||||
|
d3-interpolate: 3.0.1
|
||||||
|
d3-scale: 4.0.2
|
||||||
|
d3-shape: 3.2.0
|
||||||
|
d3-time: 3.1.0
|
||||||
|
d3-timer: 3.0.1
|
||||||
|
dev: false
|
||||||
|
|
||||||
/vscode-oniguruma/1.7.0:
|
/vscode-oniguruma/1.7.0:
|
||||||
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
|
resolution: {integrity: sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA==}
|
||||||
dev: false
|
dev: false
|
||||||
|
Loading…
Reference in New Issue
Block a user