Merged PR 196: Implement Vertical orientation + Upgrade Heroicons to 2.0

Implémenter l'orientation verticale

Modifier l'effet de append

Implementer RigidBody

Implementer Flex et simplex

Implémenter Push

Implémenter Swap

Implement MinMaxHeight without behaviors

Fix Margin for Height

Implement PositionReference

Fix dimension vertical position inside children

Add orientation change in form

Implement sortChildren

Implement Anchor

Fix warning message on overlapping

Fix minimap when root container is vertical

#7287
#7288
#7289
#7290
#7291
#7292
#7294
#7295
#7296
#7297
#7298
#7299
#7300
#7301
#7302
This commit is contained in:
Eric Nguyen 2022-09-28 16:07:56 +00:00
parent 459e83a0c8
commit 18cbacaca1
45 changed files with 2112 additions and 1063 deletions

View file

@ -1,9 +1,10 @@
/* eslint-disable @typescript-eslint/naming-convention */
import React from 'react';
import { AddMethod } from '../Enums/AddMethod';
import { XPositionReference } from '../Enums/XPositionReference';
import { PositionReference } from '../Enums/PositionReference';
import { IAction } from './IAction';
import { IMargin } from './IMargin';
import { Orientation } from './Orientation';
/** Model of available container used in application configuration */
export interface IAvailableContainer {
@ -16,6 +17,9 @@ export interface IAvailableContainer {
/** category */
Category?: string
/** orientation */
Orientation?: Orientation
/** horizontal offset */
X?: number
@ -30,8 +34,6 @@ export interface IAvailableContainer {
/**
* Minimum width (min=1)
* Allows the container to set isRigidBody to false when it gets squeezed
* by an anchor
*/
MinWidth?: number
@ -40,6 +42,16 @@ export interface IAvailableContainer {
*/
MaxWidth?: number
/**
* Minimum height (min=1)
*/
MinHeight?: number
/**
* Maximum height
*/
MaxHeight?: number
/** margin */
Margin?: IMargin
@ -53,7 +65,7 @@ export interface IAvailableContainer {
AddMethod?: AddMethod
/** Horizontal alignment, also determines the visual location of x {Left = 0, Center, Right } */
XPositionReference?: XPositionReference
PositionReference?: PositionReference
/**
* (optional)