Compare commits
1
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4ef8de4722 |
@@ -1,6 +1,8 @@
|
||||
import type { StorybookConfig } from "@storybook/react-vite";
|
||||
|
||||
import { join, dirname } from "path";
|
||||
import { mergeConfig } from "vite";
|
||||
|
||||
|
||||
/*
|
||||
* This function is used to resolve the absolute path of a package.
|
||||
@@ -16,5 +18,15 @@ const config: StorybookConfig = {
|
||||
name: getAbsolutePath("@storybook/react-vite"),
|
||||
options: {},
|
||||
},
|
||||
async viteFinal(config) {
|
||||
return mergeConfig(config, {
|
||||
define: {
|
||||
"process.env": {},
|
||||
"process.browser": true,
|
||||
"process.version": JSON.stringify(""),
|
||||
},
|
||||
});
|
||||
},
|
||||
};
|
||||
|
||||
export default config;
|
||||
|
||||
@@ -172,7 +172,8 @@
|
||||
"react-dom": "catalog:",
|
||||
"recharts": "^2.15.1",
|
||||
"tailwind-merge": "^3.3.1",
|
||||
"use-font-face-observer": "^1.3.0"
|
||||
"use-font-face-observer": "^1.3.0",
|
||||
"vite": "catalog:"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@plane/eslint-config": "workspace:*",
|
||||
|
||||
@@ -0,0 +1,135 @@
|
||||
import type { Meta, StoryObj } from "@storybook/react-vite";
|
||||
import { BarChart } from "./root";
|
||||
|
||||
const sampleData = [
|
||||
{ month: "Jan", workitems: 100, completed: 40 },
|
||||
{ month: "Feb", workitems: 200, completed: 80 },
|
||||
{ month: "Mar", workitems: 150, completed: 60 },
|
||||
{ month: "Apr", workitems: 300, completed: 120 },
|
||||
{ month: "May", workitems: 250, completed: 100 },
|
||||
{ month: "Jun", workitems: 400, completed: 160 },
|
||||
];
|
||||
|
||||
const baseArgs = {
|
||||
data: sampleData,
|
||||
xAxis: { key: "month", label: "Month" },
|
||||
yAxis: { key: "workitems", label: "Workitems", allowDecimals: false },
|
||||
className: "h-[400px] w-[600px]",
|
||||
};
|
||||
|
||||
const meta: Meta<typeof BarChart> = {
|
||||
title: "Charts/BarChart",
|
||||
component: BarChart,
|
||||
parameters: { layout: "centered" },
|
||||
};
|
||||
|
||||
export default meta;
|
||||
type Story = StoryObj<typeof meta>;
|
||||
|
||||
/* ---------- STORIES ---------- */
|
||||
|
||||
export const Default: Story = {
|
||||
args: {
|
||||
...baseArgs,
|
||||
bars: [
|
||||
{
|
||||
key: "workitems",
|
||||
label: "Workitems",
|
||||
fill: "#3B82F6",
|
||||
textClassName: "text-blue-500",
|
||||
stackId: "workitems",
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export const MultiBarChart: Story = {
|
||||
args: {
|
||||
...baseArgs,
|
||||
yAxis: { ...baseArgs.yAxis, label: "Amount" },
|
||||
bars: [
|
||||
{
|
||||
key: "workitems",
|
||||
label: "Workitems",
|
||||
fill: "#3B82F6",
|
||||
textClassName: "text-blue-500",
|
||||
stackId: "group",
|
||||
},
|
||||
{
|
||||
key: "completed",
|
||||
label: "Completed",
|
||||
fill: "#10B981",
|
||||
textClassName: "text-green-500",
|
||||
stackId: "group",
|
||||
},
|
||||
],
|
||||
legend: {
|
||||
align: "center",
|
||||
verticalAlign: "top",
|
||||
layout: "horizontal",
|
||||
},
|
||||
},
|
||||
};
|
||||
|
||||
export const LollipopChart: Story = {
|
||||
args: {
|
||||
...baseArgs,
|
||||
bars: [
|
||||
{
|
||||
key: "workitems",
|
||||
label: "Workitems",
|
||||
fill: "#3B82F6",
|
||||
textClassName: "text-blue-500",
|
||||
stackId: "workitems",
|
||||
shapeVariant: "lollipop",
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
||||
export const DottedLollipopChart: Story = {
|
||||
args: {
|
||||
...LollipopChart.args,
|
||||
bars: LollipopChart.args?.bars
|
||||
? LollipopChart.args.bars.map((bar) => ({
|
||||
...bar,
|
||||
shapeVariant: "lollipop-dotted",
|
||||
}))
|
||||
: [],
|
||||
},
|
||||
};
|
||||
|
||||
export const WithCustomTooltip: Story = {
|
||||
args: {
|
||||
...Default.args,
|
||||
customTooltipContent: ({ active, label, payload }) =>
|
||||
active && payload ? (
|
||||
<div className="rounded-md bg-white p-2 shadow-lg">
|
||||
<p className="font-medium">{label}</p>
|
||||
{payload.map((item: any) => (
|
||||
<p key={item.name} style={{ color: item.fill }}>
|
||||
{item.name}: {item.value}
|
||||
</p>
|
||||
))}
|
||||
</div>
|
||||
) : null,
|
||||
},
|
||||
};
|
||||
|
||||
export const WithCustomTicks: Story = {
|
||||
args: {
|
||||
...Default.args,
|
||||
customTicks: {
|
||||
x: (props: any) => (
|
||||
<text {...props} dy={16} textAnchor="middle" fill="#666">
|
||||
{props.payload.value}
|
||||
</text>
|
||||
),
|
||||
y: (props: any) => (
|
||||
<text {...props} dx={-10} textAnchor="end" fill="#666">
|
||||
${props.payload.value}
|
||||
</text>
|
||||
),
|
||||
},
|
||||
},
|
||||
};
|
||||
Generated
+96
-97
@@ -66,6 +66,9 @@ catalogs:
|
||||
uuid:
|
||||
specifier: 13.0.0
|
||||
version: 13.0.0
|
||||
vite:
|
||||
specifier: 7.0.7
|
||||
version: 7.0.7
|
||||
|
||||
overrides:
|
||||
brace-expansion: 2.0.2
|
||||
@@ -299,7 +302,7 @@ importers:
|
||||
version: 3.0.5
|
||||
'@types/node':
|
||||
specifier: ^20.14.9
|
||||
version: 20.19.17
|
||||
version: 20.19.13
|
||||
'@types/pino-http':
|
||||
specifier: ^5.8.4
|
||||
version: 5.8.4
|
||||
@@ -683,7 +686,7 @@ importers:
|
||||
version: 4.17.23
|
||||
'@types/node':
|
||||
specifier: ^20.14.9
|
||||
version: 20.19.17
|
||||
version: 20.19.13
|
||||
'@types/ws':
|
||||
specifier: ^8.5.10
|
||||
version: 8.18.1
|
||||
@@ -978,7 +981,7 @@ importers:
|
||||
version: 4.17.23
|
||||
'@types/node':
|
||||
specifier: ^20.14.9
|
||||
version: 20.19.17
|
||||
version: 20.19.13
|
||||
tsdown:
|
||||
specifier: 'catalog:'
|
||||
version: 0.15.5([email protected])
|
||||
@@ -1036,6 +1039,9 @@ importers:
|
||||
use-font-face-observer:
|
||||
specifier: ^1.3.0
|
||||
version: 1.3.0([email protected])
|
||||
vite:
|
||||
specifier: 'catalog:'
|
||||
version: 7.0.7(@types/[email protected])([email protected])([email protected])([email protected])
|
||||
devDependencies:
|
||||
'@plane/eslint-config':
|
||||
specifier: workspace:*
|
||||
@@ -1315,7 +1321,7 @@ importers:
|
||||
version: 4.17.12
|
||||
'@types/node':
|
||||
specifier: ^20.5.2
|
||||
version: 20.19.17
|
||||
version: 20.19.13
|
||||
'@types/react':
|
||||
specifier: 'catalog:'
|
||||
version: 18.3.11
|
||||
@@ -2200,8 +2206,8 @@ packages:
|
||||
'@napi-rs/[email protected]':
|
||||
resolution: {integrity: sha512-ZVWUcfwY4E/yPitQJl481FjFo3K22D6qF0DuFH6Y/nbnE11GY5uguDxZMGXPQ8WQ0128MXQD7TnfHyK4oWoIJQ==}
|
||||
|
||||
'@napi-rs/[email protected].5':
|
||||
resolution: {integrity: sha512-TBr9Cf9onSAS2LQ2+QHx6XcC6h9+RIzJgbqG3++9TUZSH204AwEy5jg3BTQ0VATsyoGj4ee49tN/y6rvaOOtcg==}
|
||||
'@napi-rs/[email protected].3':
|
||||
resolution: {integrity: sha512-rZxtMsLwjdXkMUGC3WwsPwLNVqVqnTJT6MNIB6e+5fhMcSCPP0AOsNWuMQ5mdCq6HNjs/ZeWAEchpqeprqBD2Q==}
|
||||
|
||||
'@next/[email protected]':
|
||||
resolution: {integrity: sha512-n9mQdigI6iZ/DF6pCTwMKeWgF2e8lg7qgt5M7HXMLtyhZYMnf/u905M18sSpPmHL9MKp9JHo56C6jrD2EvWxng==}
|
||||
@@ -2563,78 +2569,78 @@ packages:
|
||||
'@remirror/[email protected]':
|
||||
resolution: {integrity: sha512-42aWfPrimMfDKDi4YegyS7x+/0tlzaqwPQCULLanv3DMIlu96KTJR0fM5isWX2UViOqlGnX6YFgqWepcX+XMNg==}
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-jf5GNe5jP3Sr1Tih0WKvg2bzvh5T/1TA0fn1u32xSH7ca/p5t+/QRr4VRFCV/na5vjwKEhwWrChsL2AWlY+eoA==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-zVTg0544Ib1ldJSWwjy8URWYHlLFJ98rLnj+2FIj5fRs4KqGKP4VgH/pVUbXNGxeLFjItie6NSK1Un7nJixneQ==}
|
||||
cpu: [arm64]
|
||||
os: [android]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-2F/TqH4QuJQ34tgWxqBjFL3XV1gMzeQgUO8YRtCPGBSP0GhxtoFzsp7KqmQEothsxztlv+KhhT9Dbg3HHwHViQ==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-WPy0qx22CABTKDldEExfpYHWHulRoPo+m/YpyxP+6ODUPTQexWl8Wp12fn1CVP0xi0rOBj7ugs6+kKMAJW56wQ==}
|
||||
cpu: [arm64]
|
||||
os: [darwin]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-E1QuFslgLWbHQ8Qli/AqUKdfg0pockQPwRxVbhNQ74SciZEZpzLaujkdmOLSccMlSXDfFCF8RPnMoRAzQ9JV8Q==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-3k1TabJafF/GgNubXMkfp93d5p30SfIMOmQ5gm1tFwO+baMxxVPwDs3FDvSl+feCWwXxBA+bzemgkaDlInmp1Q==}
|
||||
cpu: [x64]
|
||||
os: [darwin]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-VS8VInNCwnkpI9WeQaWu3kVBq9ty6g7KrHdLxYMzeqz24+w9hg712TcWdqzdY6sn+24lUoMD9jTZrZ/qfVpk0g==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-GAiapN5YyIocnBVNEiOxMfWO9NqIeEKKWohj1sPLGc61P+9N1meXOOCiAPbLU+adXq0grtbYySid+Or7f2q+Mg==}
|
||||
cpu: [x64]
|
||||
os: [freebsd]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-4St4emjcnULnxJYb/5ZDrH/kK/j6PcUgc3eAqH5STmTrcF+I9m/X2xvSF2a2bWv1DOQhxBewThu0KkwGHdgu5w==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-okPKKIE73qkUMvq7dxDyzD0VIysdV4AirHqjf8tGTjuNoddUAl3WAtMYbuZCEKJwUyI67UINKO1peFVlYEb+8w==}
|
||||
cpu: [arm]
|
||||
os: [linux]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-a737FTqhFUoWfnebS2SnQ2BS50p0JdukdkUBwy2J06j4hZ6Eej0zEB8vTfAqoCjn8BQKkXBy+3Sx0IRkgwz1gA==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-Nky8Q2cxyKVkEETntrvcmlzNir5khQbDfX3PflHPbZY7XVZalllRqw7+MW5vn+jTsk5BfKVeLsvrF4344IU55g==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-NH+FeQWKyuw0k+PbXqpFWNfvD8RPvfJk766B/njdaWz4TmiEcSB0Nb6guNw1rBpM1FmltQYb3fFnTumtC6pRfA==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-8aHpWVSfZl3Dy2VNFG9ywmlCPAJx45g0z+qdOeqmYceY7PBAT4QGzii9ig1hPb1pY8K45TXH44UzQwr2fx352Q==}
|
||||
cpu: [arm64]
|
||||
os: [linux]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-Q3RSCivp8pNadYK8ke3hLnQk08BkpZX9BmMjgwae2FWzdxhxxUiUzd9By7kneUL0vRQ4uRnhD9VkFQ+Haeqdvw==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-1r1Ac/vTcm1q4kRiX/NB6qtorF95PhjdCxKH3Z5pb+bWMDZnmcz18fzFlT/3C6Qpj/ZqUF+EUrG4QEDXtVXGgg==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-wDd/HrNcVoBhWWBUW3evJHoo7GJE/RofssBy3Dsiip05YUBmokQVrYAyrboOY4dzs/lJ7HYeBtWQ9hj8wlyF0A==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-AFl1LnuhUBDfX2j+cE6DlVGROv4qG7GCPDhR1kJqi2+OuXGDkeEjqRvRQOFErhKz1ckkP/YakvN7JheLJ2PKHQ==}
|
||||
cpu: [x64]
|
||||
os: [linux]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-dH3FTEV6KTNWpYSgjSXZzeX7vLty9oBYn6R3laEdhwZftQwq030LKL+5wyQdlbX5pnbh4h127hpv3Hl1+sj8dg==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-Tuwb8vPs+TVJlHhyLik+nwln/burvIgaPDgg6wjNZ23F1ttjZi0w0rQSZfAgsX4jaUbylwCETXQmTp3w6vcJMw==}
|
||||
cpu: [arm64]
|
||||
os: [openharmony]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-y5BUf+QtO0JsIDKA51FcGwvhJmv89BYjUl8AmN7jqD6k/eU55mH6RJYnxwCsODq5m7KSSTigVb6O7/GqB8wbPw==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-rG0OozgqNUYcpu50MpICMlJflexRVtQfjlN9QYf6hoel46VvY0FbKGwBKoeUp2K5D4i8lV04DpEMfTZlzRjeiA==}
|
||||
engines: {node: '>=14.0.0'}
|
||||
cpu: [wasm32]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-ga5hFhdTwpaNxEiuxZHWnD3ed0GBAzbgzS5tRHpe0ObptxM1a9Xrq6TVfNQirBLwb5Y7T/FJmJi3pmdLy95ljg==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-WeOfAZrycFo9+ZqTDp3YDCAOLolymtKGwImrr9n+OW0lpwI2UKyKXbAwGXRhydAYbfrNmuqWyfyoAnLh3X9Hjg==}
|
||||
cpu: [arm64]
|
||||
os: [win32]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-4/MBp9T9eRnZskxWr8EXD/xHvLhdjWaeX/qY9LPRG1JdCGV3DphkLTy5AWwIQ5jhAy2ZNJR5z2fYRlpWU0sIyQ==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-XkLT7ikKGiUDvLh7qtJHRukbyyP1BIrD1xb7A+w4PjIiOKeOH8NqZ+PBaO4plT7JJnLxx+j9g/3B7iylR1nTFQ==}
|
||||
cpu: [ia32]
|
||||
os: [win32]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-7O5iUBX6HSBKlQU4WykpUoEmb0wQmonb6ziKFr3dJTHud2kzDnWMqk344T0qm3uGv9Ddq6Re/94pInxo1G2d4w==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-rftASFKVzjbcQHTCYHaBIDrnQFzbeV50tm4hVugG3tPjd435RHZC2pbeGV5IPdKEqyJSuurM/GfbV3kLQ3LY/A==}
|
||||
cpu: [x64]
|
||||
os: [win32]
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
resolution: {integrity: sha512-LyAREkZHP5pMom7c24meKmJCdhf2hEyvam2q0unr3or9ydwDL+DJ8chTF6Av/RFPb3rH8UFBdMzO5MxTZW97oA==}
|
||||
'@rolldown/[email protected]5':
|
||||
resolution: {integrity: sha512-slYrCpoxJUqzFDDNlvrOYRazQUNRvWPjXA17dAOISY3rDMxX6k8K4cj2H+hEYMHF81HO3uNd5rHVigAWRM5dSg==}
|
||||
|
||||
'@rollup/[email protected]':
|
||||
resolution: {integrity: sha512-qWJ2ZTbmumwiLFomfzTyt5Kng4hwPi9rwCYN4SHb6eaRU1KNO4ccxINHr/VhH4GgPlt1XfSTLX2LBTme8ne4Zw==}
|
||||
@@ -3551,11 +3557,8 @@ packages:
|
||||
'@types/[email protected]':
|
||||
resolution: {integrity: sha512-DZxSZWXxFfOlx7k7Rv4LAyiMroaxa3Ly/7OOzZO8cBNho0YzAi4qlbrx8W27JGqG57IgR/6J7r+nOJWw6kcvZA==}
|
||||
|
||||
'@types/[email protected]5':
|
||||
resolution: {integrity: sha512-W3bqcbLsRdFDVcmAM5l6oLlcl67vjevn8j1FPZ4nx+K5jNoWCh+FC/btxFoBPnvQlrHHDwfjp1kjIEDfwJ0Mog==}
|
||||
|
||||
'@types/[email protected]':
|
||||
resolution: {integrity: sha512-gfehUI8N1z92kygssiuWvLiwcbOB3IRktR6hTDgJlXMYh5OvkPSRmgfoBUmfZt+vhwJtX7v1Yw4KvvAf7c5QKQ==}
|
||||
'@types/[email protected]3':
|
||||
resolution: {integrity: sha512-yCAeZl7a0DxgNVteXFHt9+uyFbqXGy/ShC4BlcHkoE0AfGXYv/BUiplV72DjMYXHDBXFjhvr6DD1NiRVfB4j8g==}
|
||||
|
||||
'@types/[email protected]':
|
||||
resolution: {integrity: sha512-gL6z5N9Jm9mhY+U2KXZpteb+09zyffliRkZyZOHODGATyC5B1Jt/7TzuuiLkFsSUMLbS1OLmlj/E+/3KF4Q/4w==}
|
||||
@@ -7146,8 +7149,8 @@ packages:
|
||||
vue-tsc:
|
||||
optional: true
|
||||
|
||||
[email protected]4:
|
||||
resolution: {integrity: sha512-Wwh7EwalMzzX3Yy3VN58VEajeR2Si8+HDNMf706jPLIqU7CxneRW+dQVfznf5O0TWTnJyu4npelwg2bzTXB1Nw==}
|
||||
[email protected]5:
|
||||
resolution: {integrity: sha512-gJATyqcsJe0Cs8RMFO8XgFjfTc0lK1jcSvirDQDSIfsJE+vt53QH/Ob+OBSJsXb98YtZXHfP/bHpELpPwCprow==}
|
||||
hasBin: true
|
||||
|
||||
[email protected]:
|
||||
@@ -9065,7 +9068,7 @@ snapshots:
|
||||
'@tybys/wasm-util': 0.10.1
|
||||
optional: true
|
||||
|
||||
'@napi-rs/[email protected].5':
|
||||
'@napi-rs/[email protected].3':
|
||||
dependencies:
|
||||
'@emnapi/core': 1.5.0
|
||||
'@emnapi/runtime': 1.5.0
|
||||
@@ -9456,51 +9459,51 @@ snapshots:
|
||||
|
||||
'@remirror/[email protected]': {}
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
dependencies:
|
||||
'@napi-rs/wasm-runtime': 1.0.5
|
||||
'@napi-rs/wasm-runtime': 1.0.3
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4':
|
||||
'@rolldown/[email protected]5':
|
||||
optional: true
|
||||
|
||||
'@rolldown/[email protected]4': {}
|
||||
'@rolldown/[email protected]5': {}
|
||||
|
||||
'@rollup/[email protected]([email protected])':
|
||||
dependencies:
|
||||
@@ -10373,7 +10376,7 @@ snapshots:
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/connect': 3.4.38
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
@@ -10382,15 +10385,15 @@ snapshots:
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/express': 4.17.23
|
||||
'@types/node': 20.19.17
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.17
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@types/[email protected]': {}
|
||||
|
||||
@@ -10440,14 +10443,14 @@ snapshots:
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
'@types/qs': 6.14.0
|
||||
'@types/range-parser': 1.2.7
|
||||
'@types/send': 0.17.5
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
'@types/qs': 6.14.0
|
||||
'@types/range-parser': 1.2.7
|
||||
'@types/send': 0.17.5
|
||||
@@ -10521,11 +10524,7 @@ snapshots:
|
||||
|
||||
'@types/[email protected]': {}
|
||||
|
||||
'@types/[email protected]5':
|
||||
dependencies:
|
||||
undici-types: 6.21.0
|
||||
|
||||
'@types/[email protected]':
|
||||
'@types/[email protected]3':
|
||||
dependencies:
|
||||
undici-types: 6.21.0
|
||||
|
||||
@@ -10551,7 +10550,7 @@ snapshots:
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
'@types/pino-pretty': 5.0.0
|
||||
'@types/pino-std-serializers': 4.0.0
|
||||
sonic-boom: 2.8.0
|
||||
@@ -10591,12 +10590,12 @@ snapshots:
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/mime': 1.3.5
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/http-errors': 2.0.5
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
'@types/send': 0.17.5
|
||||
|
||||
'@types/[email protected]': {}
|
||||
@@ -10615,7 +10614,7 @@ snapshots:
|
||||
|
||||
'@types/[email protected]':
|
||||
dependencies:
|
||||
'@types/node': 20.19.17
|
||||
'@types/node': 20.19.13
|
||||
|
||||
'@typescript-eslint/[email protected](@typescript-eslint/[email protected]([email protected])([email protected]))([email protected])([email protected])':
|
||||
dependencies:
|
||||
@@ -12611,7 +12610,7 @@ snapshots:
|
||||
|
||||
[email protected]:
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
'@types/whatwg-mimetype': 3.0.2
|
||||
whatwg-mimetype: 3.0.0
|
||||
|
||||
@@ -13003,7 +13002,7 @@ snapshots:
|
||||
|
||||
[email protected]:
|
||||
dependencies:
|
||||
'@types/node': 20.19.15
|
||||
'@types/node': 20.19.13
|
||||
merge-stream: 2.0.0
|
||||
supports-color: 8.1.1
|
||||
|
||||
@@ -14507,7 +14506,7 @@ snapshots:
|
||||
dependencies:
|
||||
glob: 7.2.3
|
||||
|
||||
[email protected]([email protected]4)([email protected]):
|
||||
[email protected]([email protected]5)([email protected]):
|
||||
dependencies:
|
||||
'@babel/generator': 7.28.3
|
||||
'@babel/parser': 7.28.4
|
||||
@@ -14518,34 +14517,34 @@ snapshots:
|
||||
dts-resolver: 2.1.2
|
||||
get-tsconfig: 4.10.1
|
||||
magic-string: 0.30.19
|
||||
rolldown: 1.0.0-beta.34
|
||||
rolldown: 1.0.0-beta.35
|
||||
optionalDependencies:
|
||||
typescript: 5.8.3
|
||||
transitivePeerDependencies:
|
||||
- oxc-resolver
|
||||
- supports-color
|
||||
|
||||
[email protected]4:
|
||||
[email protected]5:
|
||||
dependencies:
|
||||
'@oxc-project/runtime': 0.82.3
|
||||
'@oxc-project/types': 0.82.3
|
||||
'@rolldown/pluginutils': 1.0.0-beta.34
|
||||
'@rolldown/pluginutils': 1.0.0-beta.35
|
||||
ansis: 4.1.0
|
||||
optionalDependencies:
|
||||
'@rolldown/binding-android-arm64': 1.0.0-beta.34
|
||||
'@rolldown/binding-darwin-arm64': 1.0.0-beta.34
|
||||
'@rolldown/binding-darwin-x64': 1.0.0-beta.34
|
||||
'@rolldown/binding-freebsd-x64': 1.0.0-beta.34
|
||||
'@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.34
|
||||
'@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.34
|
||||
'@rolldown/binding-linux-arm64-musl': 1.0.0-beta.34
|
||||
'@rolldown/binding-linux-x64-gnu': 1.0.0-beta.34
|
||||
'@rolldown/binding-linux-x64-musl': 1.0.0-beta.34
|
||||
'@rolldown/binding-openharmony-arm64': 1.0.0-beta.34
|
||||
'@rolldown/binding-wasm32-wasi': 1.0.0-beta.34
|
||||
'@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.34
|
||||
'@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.34
|
||||
'@rolldown/binding-win32-x64-msvc': 1.0.0-beta.34
|
||||
'@rolldown/binding-android-arm64': 1.0.0-beta.35
|
||||
'@rolldown/binding-darwin-arm64': 1.0.0-beta.35
|
||||
'@rolldown/binding-darwin-x64': 1.0.0-beta.35
|
||||
'@rolldown/binding-freebsd-x64': 1.0.0-beta.35
|
||||
'@rolldown/binding-linux-arm-gnueabihf': 1.0.0-beta.35
|
||||
'@rolldown/binding-linux-arm64-gnu': 1.0.0-beta.35
|
||||
'@rolldown/binding-linux-arm64-musl': 1.0.0-beta.35
|
||||
'@rolldown/binding-linux-x64-gnu': 1.0.0-beta.35
|
||||
'@rolldown/binding-linux-x64-musl': 1.0.0-beta.35
|
||||
'@rolldown/binding-openharmony-arm64': 1.0.0-beta.35
|
||||
'@rolldown/binding-wasm32-wasi': 1.0.0-beta.35
|
||||
'@rolldown/binding-win32-arm64-msvc': 1.0.0-beta.35
|
||||
'@rolldown/binding-win32-ia32-msvc': 1.0.0-beta.35
|
||||
'@rolldown/binding-win32-x64-msvc': 1.0.0-beta.35
|
||||
|
||||
[email protected]:
|
||||
dependencies:
|
||||
@@ -15199,8 +15198,8 @@ snapshots:
|
||||
diff: 8.0.2
|
||||
empathic: 2.0.0
|
||||
hookable: 5.5.3
|
||||
rolldown: 1.0.0-beta.34
|
||||
rolldown-plugin-dts: 0.16.11([email protected]4)([email protected])
|
||||
rolldown: 1.0.0-beta.35
|
||||
rolldown-plugin-dts: 0.16.11([email protected]5)([email protected])
|
||||
semver: 7.7.2
|
||||
tinyexec: 1.0.1
|
||||
tinyglobby: 0.2.15
|
||||
|
||||
+14
-14
@@ -1,34 +1,34 @@
|
||||
packages:
|
||||
- apps/*
|
||||
- packages/*
|
||||
- "!apps/api"
|
||||
- "!apps/proxy"
|
||||
- apps/*
|
||||
- packages/*
|
||||
- '!apps/api'
|
||||
- '!apps/proxy'
|
||||
|
||||
catalog:
|
||||
"@atlaskit/pragmatic-drag-and-drop": 1.7.4
|
||||
"@atlaskit/pragmatic-drag-and-drop-auto-scroll": 1.4.0
|
||||
"@atlaskit/pragmatic-drag-and-drop-hitbox": 1.1.0
|
||||
'@atlaskit/pragmatic-drag-and-drop': 1.7.4
|
||||
'@atlaskit/pragmatic-drag-and-drop-auto-scroll': 1.4.0
|
||||
'@atlaskit/pragmatic-drag-and-drop-hitbox': 1.1.0
|
||||
axios: 1.12.0
|
||||
mobx: 6.12.0
|
||||
mobx-react: 9.1.1
|
||||
mobx-utils: 6.0.8
|
||||
lodash-es: 4.17.21
|
||||
"@types/lodash-es": 4.17.12
|
||||
'@types/lodash-es': 4.17.12
|
||||
lucide-react: 0.469.0
|
||||
next: 14.2.32
|
||||
sharp: 0.33.5
|
||||
swr: 2.2.4
|
||||
react: 18.3.1
|
||||
react-dom: 18.3.1
|
||||
"@types/react": 18.3.11
|
||||
"@types/react-dom": 18.3.1
|
||||
'@types/react': 18.3.11
|
||||
'@types/react-dom': 18.3.1
|
||||
typescript: 5.8.3
|
||||
tsdown: 0.15.5
|
||||
vite: 7.0.7
|
||||
uuid: 13.0.0
|
||||
"@tiptap/core": ^3.5.3
|
||||
"@tiptap/html": ^3.5.3
|
||||
'@tiptap/core': ^3.5.3
|
||||
'@tiptap/html': ^3.5.3
|
||||
|
||||
onlyBuiltDependencies:
|
||||
- turbo
|
||||
- sharp
|
||||
- turbo
|
||||
- sharp
|
||||
|
||||
Reference in New Issue
Block a user