Merged PR 226: Implement associated container and default X, Y position for Symbol
Implement associated container and default X, Y position for Symbol Related work items: #7537, #7540
This commit is contained in:
parent
0a664752e9
commit
4ff2e0b7fb
9 changed files with 136 additions and 48 deletions
|
@ -1,13 +1,25 @@
|
|||
/* eslint-disable @typescript-eslint/naming-convention */
|
||||
import { PositionReference } from '../Enums/PositionReference';
|
||||
import { IAvailableContainer } from './IAvailableContainer';
|
||||
import { IImage } from './IImage';
|
||||
|
||||
/**
|
||||
* Model of available symbol to configure the application */
|
||||
export interface IAvailableSymbol {
|
||||
Name: string
|
||||
|
||||
Image: IImage
|
||||
|
||||
X?: number
|
||||
|
||||
Y?: number
|
||||
|
||||
Width?: number
|
||||
|
||||
Height?: number
|
||||
|
||||
PositionReference?: PositionReference
|
||||
|
||||
/** An existing or new available container */
|
||||
AssociatedContainer?: IAvailableContainer
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue