File tree Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Expand file tree Collapse file tree 4 files changed +5
-0
lines changed Original file line number Diff line number Diff line change 1+ Complete expanders typings, include `translations`. @sneridagh
Original file line number Diff line number Diff line change 1+ Better `BlockViewProps` typings, include `isEditMode`. @sneridagh
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ export interface BlockViewProps {
2929 path : string ;
3030 className : string ;
3131 style : Record < `--${string } `, string > ;
32+ isEditMode ?: boolean ;
3233}
3334
3435type SearchMetadataResultItem = { } ;
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import type { GetSiteResponse } from '../services/site';
77import type { GetAliasesResponse } from '../services/aliases' ;
88import type { ContextNavigationResponse } from '../services/contextnavigation' ;
99import type { WorkflowResponse } from '../services/workflow' ;
10+ import type { GetTranslationResponse } from '../services/translations' ;
1011
1112export interface Expanders {
1213 [ key : string ] : unknown ;
@@ -17,6 +18,7 @@ export interface Expanders {
1718 navigation : NavigationResponse ;
1819 navroot : GetNavrootResponse ;
1920 site ?: GetSiteResponse ;
21+ translations ?: GetTranslationResponse ;
2022 types : GetTypesResponse ;
2123 workflow : WorkflowResponse ;
2224}
You can’t perform that action at this time.
0 commit comments