Implement minWidth property + refactor default property of new containers and main container (#34)
All checks were successful
continuous-integration/drone/push Build is passing

Co-authored-by: Eric NGUYEN <enguyen@techform.fr>
Reviewed-on: https://git.siklos-chaneru.duckdns.org/Siklos/svg-layout-designer-react/pulls/34
This commit is contained in:
Siklos 2022-08-17 11:14:19 -04:00
parent 60329ef143
commit 2945febd91
12 changed files with 137 additions and 44 deletions

View file

@ -5,13 +5,14 @@ import { XPositionReference } from '../Enums/XPositionReference';
/** Model of available container used in application configuration */
export interface IAvailableContainer {
Type: string
Width?: number
Height?: number
DefaultX?: number
DefaultY?: number
Width?: number
Height?: number
MinWidth?: number
AddMethod?: AddMethod
XPositionReference?: XPositionReference
CustomSVG?: string
Style: React.CSSProperties
Style?: React.CSSProperties
UserData?: object
}