feat(dashboard,admin-shared): InjectionZones for Profile, Store, Users and Login (#7471)

This commit is contained in:
Kasper Fabricius Kristensen
2024-05-27 17:45:51 +02:00
committed by GitHub
parent 45bcdfec17
commit 81c27e3524
6 changed files with 147 additions and 52 deletions

View File

@@ -82,6 +82,23 @@ const GIFT_CARD_INJECTION_ZONES = [
"custom_gift_card.after",
] as const
const USER_INJECTION_ZONES = [
"user.details.before",
"user.details.after",
"user.list.before",
"user.list.after",
] as const
const STORE_INJECTION_ZONES = [
"store.details.before",
"store.details.after",
] as const
const PROFILE_INJECTION_ZONES = [
"profile.details.before",
"profile.details.after",
] as const
const REGION_INJECTION_ZONES = [
"region.details.before",
"region.details.after",
@@ -122,6 +139,9 @@ export const INJECTION_ZONES = [
...PRICE_LIST_INJECTION_ZONES,
...PROMOTION_INJECTION_ZONES,
...GIFT_CARD_INJECTION_ZONES,
...USER_INJECTION_ZONES,
...STORE_INJECTION_ZONES,
...PROFILE_INJECTION_ZONES,
...REGION_INJECTION_ZONES,
...SHIPPING_PROFILE_INJECTION_ZONES,
...LOCATION_INJECTION_ZONES,