@@ -425,6 +425,10 @@ export function createStore(): ISpaceStore {
425425 const canResizeRight = ( position && position . leftResizable ) || false ;
426426 const canResizeTop = ( position && position . bottomResizable ) || false ;
427427 const canResizeBottom = ( position && position . topResizable ) || false ;
428+ const canResizeTopLeft = ( position && position . topLeftResizable ) || false ;
429+ const canResizeTopRight = ( position && position . topRightResizable ) || false ;
430+ const canResizeBottomLeft = ( position && position . bottomLeftResizable ) || false ;
431+ const canResizeBottomRight = ( position && position . bottomRightResizable ) || false ;
428432
429433 const newSpace : ISpaceDefinition = {
430434 ...spaceDefaults ,
@@ -456,11 +460,15 @@ export function createStore(): ISpaceStore {
456460 canResizeRight : canResizeRight ,
457461 canResizeTop : canResizeTop ,
458462 canResizeBottom : canResizeBottom ,
463+ canResizeTopLeft : canResizeTopLeft ,
464+ canResizeTopRight : canResizeTopRight ,
465+ canResizeBottomLeft : canResizeBottomLeft ,
466+ canResizeBottomRight : canResizeBottomRight ,
459467 } ,
460468 } as ISpaceDefinition ;
461469
462- newSpace . anchoredChildren = ( children , anchor , zIndex ) => {
463- return children . filter ( ( s ) => s . type === Type . Anchored && s . anchor === anchor && s . zIndex === zIndex ) ;
470+ newSpace . anchoredChildren = ( children , chanchor , zIndex ) => {
471+ return children . filter ( ( s ) => s . type === Type . Anchored && s . anchor === chanchor && s . zIndex === zIndex ) ;
464472 } ;
465473
466474 newSpace . adjustLeft = ( adjusted ) => {
0 commit comments