From dc313d6977c84c1f0015dbf05d41899255ab166d Mon Sep 17 00:00:00 2001 From: Pasindu Yeshan Date: Wed, 8 Jan 2025 13:39:52 +0530 Subject: [PATCH 1/4] myaccount-change primary icon and icon buttons --- apps/myaccount/src/components/profile/profile.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/myaccount/src/components/profile/profile.scss b/apps/myaccount/src/components/profile/profile.scss index ef998670c17..1fcfcc75236 100644 --- a/apps/myaccount/src/components/profile/profile.scss +++ b/apps/myaccount/src/components/profile/profile.scss @@ -38,17 +38,17 @@ flex-shrink: 0; padding-right: 12px; min-width: 30ch; - + &.mobile-label { min-width: 20ch; } } - + .verified-icon, .primary-icon { align-items: center; } } - + .table-c2 { display: flex; flex-wrap: nowrap; From 3240e8e77755c297c7e7531dee0c485fd9e42f99 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Fri, 10 Jan 2025 17:06:54 +0530 Subject: [PATCH 2/4] Fix incorrect imports --- .../components/add-organization-role-wizard.tsx | 3 ++- .../edit-organization-role/edit-organization-groups.tsx | 2 +- features/admin.organizations.v1/pages/organization-roles.tsx | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/features/admin.organizations.v1/components/add-organization-role-wizard.tsx b/features/admin.organizations.v1/components/add-organization-role-wizard.tsx index c4436b792aa..54d4418e9c8 100644 --- a/features/admin.organizations.v1/components/add-organization-role-wizard.tsx +++ b/features/admin.organizations.v1/components/add-organization-role-wizard.tsx @@ -16,7 +16,8 @@ * under the License. */ -import { CreateGroupMemberInterface, GroupsInterface, getGroupList } from "@wso2is/admin.groups.v1"; +import { getGroupList } from "@wso2is/admin.groups.v1/api"; +import { CreateGroupMemberInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { AssignGroupsUsers } from "@wso2is/admin.roles.v2/components/wizard/assign-groups-users"; import { getRolesWizardStepIcons } from "@wso2is/admin.roles.v2/configs/ui"; import { TreeNode } from "@wso2is/admin.roles.v2/models/permission"; diff --git a/features/admin.organizations.v1/components/edit-organization-role/edit-organization-groups.tsx b/features/admin.organizations.v1/components/edit-organization-role/edit-organization-groups.tsx index 6f40e8e9fa2..68646b5ab1d 100644 --- a/features/admin.organizations.v1/components/edit-organization-role/edit-organization-groups.tsx +++ b/features/admin.organizations.v1/components/edit-organization-role/edit-organization-groups.tsx @@ -18,7 +18,7 @@ import { AppState, getEmptyPlaceholderIllustrations } from "@wso2is/admin.core.v1"; import { getGroupList } from "@wso2is/admin.groups.v1/api"; -import { GroupListInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models"; +import { GroupListInterface, GroupsInterface } from "@wso2is/admin.groups.v1/models/groups"; import { PRIMARY_USERSTORE } from "@wso2is/admin.userstores.v1/constants"; import { AlertLevels, diff --git a/features/admin.organizations.v1/pages/organization-roles.tsx b/features/admin.organizations.v1/pages/organization-roles.tsx index 3c2ee606250..b9a0a79ab1c 100644 --- a/features/admin.organizations.v1/pages/organization-roles.tsx +++ b/features/admin.organizations.v1/pages/organization-roles.tsx @@ -25,7 +25,7 @@ import { UIConstants, history } from "@wso2is/admin.core.v1"; -import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models"; +import { CreateGroupMemberInterface } from "@wso2is/admin.groups.v1/models/groups"; import { CreateRoleInterface, CreateRoleMemberInterface } from "@wso2is/admin.roles.v2/models/roles"; import { IdentityAppsError } from "@wso2is/core/errors"; import { AlertLevels, IdentifiableComponentInterface } from "@wso2is/core/models"; From d18c7c8d774be7063e00ab9ccfd8edb65b77ff13 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Fri, 10 Jan 2025 17:07:25 +0530 Subject: [PATCH 3/4] =?UTF-8?q?=F0=9F=A6=8B=20Add=20changeset?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .changeset/slow-rules-relax.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/slow-rules-relax.md diff --git a/.changeset/slow-rules-relax.md b/.changeset/slow-rules-relax.md new file mode 100644 index 00000000000..85dd2525400 --- /dev/null +++ b/.changeset/slow-rules-relax.md @@ -0,0 +1,5 @@ +--- +"@wso2is/admin.organizations.v1": patch +--- + +Fix incorrect imports From 5ba1dee65c115a87ac3bce776f8b27ad60d2ecf5 Mon Sep 17 00:00:00 2001 From: Pavindu Lakshan Date: Fri, 10 Jan 2025 17:14:07 +0530 Subject: [PATCH 4/4] Remove mistakenly added space characters --- apps/myaccount/src/components/profile/profile.scss | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/myaccount/src/components/profile/profile.scss b/apps/myaccount/src/components/profile/profile.scss index 1fcfcc75236..ef998670c17 100644 --- a/apps/myaccount/src/components/profile/profile.scss +++ b/apps/myaccount/src/components/profile/profile.scss @@ -38,17 +38,17 @@ flex-shrink: 0; padding-right: 12px; min-width: 30ch; - + &.mobile-label { min-width: 20ch; } } - + .verified-icon, .primary-icon { align-items: center; } } - + .table-c2 { display: flex; flex-wrap: nowrap;