Merged PR 173: Implements API methods through right click + more (read desc)

- Implements API methods through right click
- Refactor events
- Refactor usage of setHistory and setHistoryCurrentStep into a single function
- Update ContainerOperations documentations
- Added AddContainers in order to add multiple containers + refactor AddContainer to use it
- Fix regression
- Fix AddContainer at index
This commit is contained in:
Eric Nguyen 2022-08-30 14:45:29 +00:00
parent 79c6874240
commit 57e6c9a156
20 changed files with 652 additions and 291 deletions

View file

@ -2,6 +2,7 @@
import React from 'react';
import { AddMethod } from '../Enums/AddMethod';
import { XPositionReference } from '../Enums/XPositionReference';
import { IAction } from './IAction';
import { IMargin } from './IMargin';
/** Model of available container used in application configuration */
@ -20,5 +21,6 @@ export interface IAvailableContainer {
CustomSVG?: string
DefaultChildType?: string
Style?: React.CSSProperties
Actions?: IAction[]
UserData?: object
}