From e359d7f9f3d01189bf904757c7a913941c9be4cd Mon Sep 17 00:00:00 2001 From: Bernardo Codesido Date: Fri, 25 Oct 2024 15:58:51 -0300 Subject: [PATCH 001/115] Add dependency review --- .github/workflows/dependency_review.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/dependency_review.yml diff --git a/.github/workflows/dependency_review.yml b/.github/workflows/dependency_review.yml new file mode 100644 index 00000000..eadb2edf --- /dev/null +++ b/.github/workflows/dependency_review.yml @@ -0,0 +1,20 @@ +name: 'Dependency Review' +on: [pull_request] + +permissions: read-all + +jobs: + dependency-review: + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write + steps: + - name: 'Checkout Repository' + uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + + - name: 'Dependency Review' + uses: actions/dependency-review-action@a6993e2c61fd5dc440b409aa1d6904921c5e1894 # v4.3.5 + with: + fail-on-severity: high + comment-summary-in-pr: true From 1e637c279a095cedac5b54992638232baf052137 Mon Sep 17 00:00:00 2001 From: LordCheta Date: Tue, 29 Oct 2024 09:06:27 +0100 Subject: [PATCH 002/115] fix: make left bottom info in left side bar fixed and sticky --- src/components/LeftSidebar/LeftSidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LeftSidebar/LeftSidebar.tsx b/src/components/LeftSidebar/LeftSidebar.tsx index 63532227..b557a0eb 100644 --- a/src/components/LeftSidebar/LeftSidebar.tsx +++ b/src/components/LeftSidebar/LeftSidebar.tsx @@ -12,7 +12,7 @@ export const LeftSidebar = ({
-
+
{ConnectedComponent && ConnectedComponent}
From 9edff2d032f86d8f48048adde5042c7602977bc0 Mon Sep 17 00:00:00 2001 From: LordCheta Date: Tue, 29 Oct 2024 16:37:06 +0100 Subject: [PATCH 003/115] fix: implement correct render for smaller screens --- src/components/LeftSidebar/SidebarButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LeftSidebar/SidebarButtons.tsx b/src/components/LeftSidebar/SidebarButtons.tsx index c51c1d61..b4b720bd 100644 --- a/src/components/LeftSidebar/SidebarButtons.tsx +++ b/src/components/LeftSidebar/SidebarButtons.tsx @@ -1,7 +1,7 @@ import { Button } from '@/components/Button' import { SidebarButtonsProps } from '@/components/LeftSidebar/types' -const DEFAULT_BUTTON_CLASSNAME = 'mb-[32px] pl-11' +const DEFAULT_BUTTON_CLASSNAME = 'mb-[32px] pl-11 md:mb-[15px]' const START_ICON_CLASSES = 'left-[-28px] top-[2px]' From 999671922b896bbad10f18075702318ec52dd62d Mon Sep 17 00:00:00 2001 From: Francis Rodriguez Date: Tue, 29 Oct 2024 11:39:15 -0400 Subject: [PATCH 004/115] Revert "fix: implement correct render for smaller screens" This reverts commit c68c425f278cb8eaa267887770b605777e43651e. --- src/components/LeftSidebar/SidebarButtons.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/LeftSidebar/SidebarButtons.tsx b/src/components/LeftSidebar/SidebarButtons.tsx index b4b720bd..c51c1d61 100644 --- a/src/components/LeftSidebar/SidebarButtons.tsx +++ b/src/components/LeftSidebar/SidebarButtons.tsx @@ -1,7 +1,7 @@ import { Button } from '@/components/Button' import { SidebarButtonsProps } from '@/components/LeftSidebar/types' -const DEFAULT_BUTTON_CLASSNAME = 'mb-[32px] pl-11 md:mb-[15px]' +const DEFAULT_BUTTON_CLASSNAME = 'mb-[32px] pl-11' const START_ICON_CLASSES = 'left-[-28px] top-[2px]' From d4c7ac7f4c0c8ebbcfe95a4d5a509169ea1dfdae Mon Sep 17 00:00:00 2001 From: Francis Rodriguez Date: Tue, 29 Oct 2024 11:43:21 -0400 Subject: [PATCH 005/115] Implemented sidebar from the design --- src/components/LeftSidebar/LeftSidebar.tsx | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/components/LeftSidebar/LeftSidebar.tsx b/src/components/LeftSidebar/LeftSidebar.tsx index b557a0eb..f7488d0e 100644 --- a/src/components/LeftSidebar/LeftSidebar.tsx +++ b/src/components/LeftSidebar/LeftSidebar.tsx @@ -8,12 +8,14 @@ export const LeftSidebar = ({ ConnectedComponent, }: LeftSidebarProps) => { return ( -