Merge branch 'fe/fix/workspace-sidebar-icon' into 'fe/develop'
Fe/fix/workspace sidebar icon See merge request s11-s-project/S11P21S002!19
This commit is contained in:
commit
68fefbb399
16
frontend/package-lock.json
generated
16
frontend/package-lock.json
generated
@ -56,7 +56,7 @@
|
|||||||
"storybook": "^8.2.9",
|
"storybook": "^8.2.9",
|
||||||
"tailwindcss": "^3.4.10",
|
"tailwindcss": "^3.4.10",
|
||||||
"typescript": "^5.2.2",
|
"typescript": "^5.2.2",
|
||||||
"vite": "^5.3.1",
|
"vite": "~5.3.1",
|
||||||
"vite-plugin-svgr": "^4.2.0",
|
"vite-plugin-svgr": "^4.2.0",
|
||||||
"vite-tsconfig-paths": "^5.0.1",
|
"vite-tsconfig-paths": "^5.0.1",
|
||||||
"vitest": "^2.0.5"
|
"vitest": "^2.0.5"
|
||||||
@ -12531,15 +12531,15 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/vite": {
|
"node_modules/vite": {
|
||||||
"version": "5.4.2",
|
"version": "5.3.5",
|
||||||
"resolved": "https://registry.npmjs.org/vite/-/vite-5.4.2.tgz",
|
"resolved": "https://registry.npmjs.org/vite/-/vite-5.3.5.tgz",
|
||||||
"integrity": "sha512-dDrQTRHp5C1fTFzcSaMxjk6vdpKvT+2/mIdE07Gw2ykehT49O0z/VHS3zZ8iV/Gh8BJJKHWOe5RjaNrW5xf/GA==",
|
"integrity": "sha512-MdjglKR6AQXQb9JGiS7Rc2wC6uMjcm7Go/NHNO63EwiJXfuk9PgqiP/n5IDJCziMkfw9n4Ubp7lttNwz+8ZVKA==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"esbuild": "^0.21.3",
|
"esbuild": "^0.21.3",
|
||||||
"postcss": "^8.4.41",
|
"postcss": "^8.4.39",
|
||||||
"rollup": "^4.20.0"
|
"rollup": "^4.13.0"
|
||||||
},
|
},
|
||||||
"bin": {
|
"bin": {
|
||||||
"vite": "bin/vite.js"
|
"vite": "bin/vite.js"
|
||||||
@ -12558,7 +12558,6 @@
|
|||||||
"less": "*",
|
"less": "*",
|
||||||
"lightningcss": "^1.21.0",
|
"lightningcss": "^1.21.0",
|
||||||
"sass": "*",
|
"sass": "*",
|
||||||
"sass-embedded": "*",
|
|
||||||
"stylus": "*",
|
"stylus": "*",
|
||||||
"sugarss": "*",
|
"sugarss": "*",
|
||||||
"terser": "^5.4.0"
|
"terser": "^5.4.0"
|
||||||
@ -12576,9 +12575,6 @@
|
|||||||
"sass": {
|
"sass": {
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
"sass-embedded": {
|
|
||||||
"optional": true
|
|
||||||
},
|
|
||||||
"stylus": {
|
"stylus": {
|
||||||
"optional": true
|
"optional": true
|
||||||
},
|
},
|
||||||
|
@ -62,7 +62,7 @@
|
|||||||
"storybook": "^8.2.9",
|
"storybook": "^8.2.9",
|
||||||
"tailwindcss": "^3.4.10",
|
"tailwindcss": "^3.4.10",
|
||||||
"typescript": "^5.2.2",
|
"typescript": "^5.2.2",
|
||||||
"vite": "^5.3.1",
|
"vite": "~5.3.1",
|
||||||
"vite-plugin-svgr": "^4.2.0",
|
"vite-plugin-svgr": "^4.2.0",
|
||||||
"vite-tsconfig-paths": "^5.0.1",
|
"vite-tsconfig-paths": "^5.0.1",
|
||||||
"vitest": "^2.0.5"
|
"vitest": "^2.0.5"
|
||||||
|
15
frontend/src/components/WorkspaceLayout/index.stories.tsx
Normal file
15
frontend/src/components/WorkspaceLayout/index.stories.tsx
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
import '@/index.css';
|
||||||
|
import { Meta } from '@storybook/react';
|
||||||
|
import WorkspaceLayout from '.';
|
||||||
|
|
||||||
|
const meta: Meta<typeof WorkspaceLayout> = {
|
||||||
|
title: 'Layout/WorkspaceLayout',
|
||||||
|
component: WorkspaceLayout,
|
||||||
|
parameters: {
|
||||||
|
layout: 'fullscreen',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Default = () => <WorkspaceLayout />;
|
||||||
|
|
||||||
|
export default meta;
|
@ -30,12 +30,12 @@ export default function ProjectFileItem({
|
|||||||
{item.status === 'idle' ? (
|
{item.status === 'idle' ? (
|
||||||
<Minus
|
<Minus
|
||||||
size={16}
|
size={16}
|
||||||
className="stroke-gray-400"
|
className="shrink-0 stroke-gray-400"
|
||||||
/>
|
/>
|
||||||
) : (
|
) : (
|
||||||
<Check
|
<Check
|
||||||
size={16}
|
size={16}
|
||||||
className="stroke-green-500"
|
className="shrink-0 stroke-green-500"
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
</button>
|
</button>
|
||||||
|
Loading…
Reference in New Issue
Block a user