From 978ba90c0b180313393dec543eee62527b100d43 Mon Sep 17 00:00:00 2001 From: Tyler Date: Tue, 23 Sep 2025 15:18:02 -0600 Subject: [PATCH] feat: add ASSET_SIDEBAR location constants - Add LOCATION_ASSET_SIDEBAR to locations.ts - Update Locations interface in api.types.ts - Part of EXT-6786: Asset Sidebar App Framework Location --- lib/locations.ts | 1 + lib/types/api.types.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/lib/locations.ts b/lib/locations.ts index 0f5d601194..23e604cb42 100644 --- a/lib/locations.ts +++ b/lib/locations.ts @@ -4,6 +4,7 @@ const locations: Locations = { LOCATION_ENTRY_FIELD: 'entry-field', LOCATION_ENTRY_FIELD_SIDEBAR: 'entry-field-sidebar', LOCATION_ENTRY_SIDEBAR: 'entry-sidebar', + LOCATION_ASSET_SIDEBAR: 'asset-sidebar', LOCATION_DIALOG: 'dialog', LOCATION_ENTRY_EDITOR: 'entry-editor', LOCATION_PAGE: 'page', diff --git a/lib/types/api.types.ts b/lib/types/api.types.ts index 7694fed922..1547037328 100644 --- a/lib/types/api.types.ts +++ b/lib/types/api.types.ts @@ -386,6 +386,7 @@ export interface Locations { LOCATION_ENTRY_FIELD: 'entry-field' LOCATION_ENTRY_FIELD_SIDEBAR: 'entry-field-sidebar' LOCATION_ENTRY_SIDEBAR: 'entry-sidebar' + LOCATION_ASSET_SIDEBAR: 'asset-sidebar' LOCATION_DIALOG: 'dialog' LOCATION_ENTRY_EDITOR: 'entry-editor' LOCATION_PAGE: 'page'