From 4df2196b1de5b9b594106a2927a01c17d22ccb19 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Tue, 17 Sep 2024 16:03:30 +0000 Subject: [PATCH 01/28] fix(deps): update maven all non-major dependencies --- backend/pom.xml | 4 ++-- legacy/pom.xml | 2 +- processor/pom.xml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/backend/pom.xml b/backend/pom.xml index c0fce02dbf..bfde1ae97a 100644 --- a/backend/pom.xml +++ b/backend/pom.xml @@ -45,7 +45,7 @@ 1.9.1 4.1.113.Final ${project.version} - 9.41 + 9.41.1 @@ -224,7 +224,7 @@ org.springframework spring-web - 6.1.12 + 6.1.13 org.springframework.security diff --git a/legacy/pom.xml b/legacy/pom.xml index e2abba2c7e..5f87e21754 100644 --- a/legacy/pom.xml +++ b/legacy/pom.xml @@ -199,7 +199,7 @@ org.springframework spring-web - 6.1.12 + 6.1.13 io.netty diff --git a/processor/pom.xml b/processor/pom.xml index ac0d21888e..940a7d07bc 100644 --- a/processor/pom.xml +++ b/processor/pom.xml @@ -46,7 +46,7 @@ 3.24.2 4.1.113.Final ${project.version} - 10.17.3 + 10.18.0 @@ -186,7 +186,7 @@ org.springframework spring-web - 6.1.12 + 6.1.13 io.netty From 0564821f1b699c7d446ea181eb6136208c432adf Mon Sep 17 00:00:00 2001 From: Maria Martinez <77364706+mamartinezmejia@users.noreply.github.com> Date: Wed, 18 Sep 2024 10:54:22 -0700 Subject: [PATCH 02/28] feat(fe:FSADT1-1503): Adjust button and message for the "Need help?" side menu item (#1164) --- frontend/src/assets/styles/global.scss | 7 +++++++ frontend/src/components/MainHeaderComponent.vue | 8 ++++---- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/frontend/src/assets/styles/global.scss b/frontend/src/assets/styles/global.scss index 9f4a9cf942..b5e6dbb799 100644 --- a/frontend/src/assets/styles/global.scss +++ b/frontend/src/assets/styles/global.scss @@ -642,6 +642,13 @@ cds-actionable-notification * { letter-spacing: 0.01rem; } +.body-compact-02 { + font-size: 0.8712rem; + font-weight: 700; + line-height: 1.12rem; + letter-spacing: 0.01rem; +} + .content { flex-grow: 1; align-self: stretch; diff --git a/frontend/src/components/MainHeaderComponent.vue b/frontend/src/components/MainHeaderComponent.vue index 1610924000..991221fe9d 100644 --- a/frontend/src/components/MainHeaderComponent.vue +++ b/frontend/src/components/MainHeaderComponent.vue @@ -260,8 +260,8 @@ const userHasAuthority = ["CLIENT_EDITOR", "CLIENT_ADMIN"].some(authority => For class="unbolded" @click.prevent="helpModalActive = true" > - Need help? - + Need help? + @@ -283,8 +283,8 @@ const userHasAuthority = ["CLIENT_EDITOR", "CLIENT_ADMIN"].some(authority => For

- Can’t proceed with your application? Let us know by emailing your issue to - + Email your issue to + and we'll get back to you.

From 5b7500def4f45f9e1248e6bb1e4e920b5ad97bb3 Mon Sep 17 00:00:00 2001 From: Maria Martinez <77364706+mamartinezmejia@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:02:59 -0700 Subject: [PATCH 03/28] feat(fe:FSADT1-1445): Change "Logout" icon in "My profile" panel (#1165) * feat(fe:FSADT1-1445): Change "Logout" icon in "My profile" panel * Removed unused import --- frontend/src/components/MainHeaderComponent.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/components/MainHeaderComponent.vue b/frontend/src/components/MainHeaderComponent.vue index 991221fe9d..66923388a2 100644 --- a/frontend/src/components/MainHeaderComponent.vue +++ b/frontend/src/components/MainHeaderComponent.vue @@ -27,8 +27,6 @@ import Avatar16 from "@carbon/icons-vue/es/user--avatar/24"; // @ts-ignore import Result16 from "@carbon/icons-vue/es/result/16"; // @ts-ignore -import SignOut16 from "@carbon/icons-vue/es/user--follow/16"; -// @ts-ignore import Close16 from "@carbon/icons-vue/es/close/16"; // @ts-ignore import TaskAdd16 from "@carbon/icons-vue/es/task--add/16"; @@ -209,7 +207,7 @@ const userHasAuthority = ["CLIENT_EDITOR", "CLIENT_ADMIN"].some(authority => For - + From c9ab307f733dbd784ffe2268ddea7791f505774d Mon Sep 17 00:00:00 2001 From: Maria Martinez <77364706+mamartinezmejia@users.noreply.github.com> Date: Wed, 18 Sep 2024 14:55:41 -0700 Subject: [PATCH 04/28] feat(fe:FSADT1-1502): Adjust logout behavior (#1167) --- .../src/components/MainHeaderComponent.vue | 22 ++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/frontend/src/components/MainHeaderComponent.vue b/frontend/src/components/MainHeaderComponent.vue index 66923388a2..0042ba03a7 100644 --- a/frontend/src/components/MainHeaderComponent.vue +++ b/frontend/src/components/MainHeaderComponent.vue @@ -85,7 +85,7 @@ const session = instance?.appContext.config.globalProperties.$session; const logout = () => { session?.logOut(); -} +}; const route = useRoute(); @@ -98,14 +98,26 @@ const onClickLogout = () => { }; const headerBarButtonsSize = computed(() => - isSmallScreen.value || isMediumScreen.value ? "lg" : "sm", + isSmallScreen.value || isMediumScreen.value ? "lg" : "sm" ); const logoutBtnKind = computed(() => - isSmallScreen.value || isMediumScreen.value ? "ghost" : "tertiary", + isSmallScreen.value || isMediumScreen.value ? "ghost" : "tertiary" +); + +const userHasAuthority = ["CLIENT_EDITOR", "CLIENT_ADMIN"].some((authority) => + ForestClientUserSession.authorities.includes(authority) ); -const userHasAuthority = ["CLIENT_EDITOR", "CLIENT_ADMIN"].some(authority => ForestClientUserSession.authorities.includes(authority)); +const handleLogoutClick = (event) => { + event.preventDefault(); + + if (route.name === "staff-form") { + logoutModalActive.value = true; + } else { + logout(); + } +};