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:
parent
459e83a0c8
commit
18cbacaca1
45 changed files with 2112 additions and 1063 deletions
|
@ -138,7 +138,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
{
|
||||
Type: 'Montant',
|
||||
Width: 10,
|
||||
XPositionReference: 1,
|
||||
PositionReference: 1,
|
||||
MarkPositionToDimensionBorrower: true,
|
||||
Style: {
|
||||
fillOpacity: 0,
|
||||
|
@ -150,7 +150,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
{
|
||||
Type: 'Dilatation',
|
||||
Width: 4,
|
||||
XPositionReference: 1,
|
||||
PositionReference: 1,
|
||||
MarkPositionToDimensionBorrower: true,
|
||||
Style: {
|
||||
fillOpacity: 0,
|
||||
|
@ -193,7 +193,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Url: 'https://www.manutan.fr/img/S/GRP/ST/AIG3930272.jpg'
|
||||
},
|
||||
Name: 'Poteau structure',
|
||||
XPositionReference: 1
|
||||
PositionReference: 1
|
||||
},
|
||||
{
|
||||
Width: 32,
|
||||
|
@ -205,7 +205,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Url: 'https://e7.pngegg.com/pngimages/647/127/png-clipart-svg-working-group-information-world-wide-web-internet-structure.png'
|
||||
},
|
||||
Name: 'Joint de structure',
|
||||
XPositionReference: 0
|
||||
PositionReference: 0
|
||||
}
|
||||
],
|
||||
Categories: [
|
||||
|
|
|
@ -69,11 +69,24 @@ const GetSVGLayoutConfiguration = () => {
|
|||
AvailableContainers: [
|
||||
{
|
||||
Type: 'Chassis',
|
||||
DisplayedText: 'Chassis?',
|
||||
Whitelist: ["Trou"],
|
||||
MaxWidth: 500,
|
||||
MinWidth: 200,
|
||||
Width: 200,
|
||||
DisplayedText: 'Chassis horizontal',
|
||||
MaxHeight: 200,
|
||||
DefaultChildType: 'Trou',
|
||||
Style: {
|
||||
fillOpacity: 1,
|
||||
strokeWidth: 2,
|
||||
stroke: 'red',
|
||||
fill: '#d3c9b7',
|
||||
},
|
||||
ShowSelfDimensions: true,
|
||||
IsDimensionBorrower: true,
|
||||
Category: "Stuff"
|
||||
},
|
||||
{
|
||||
Type: 'ChassisVertical',
|
||||
Orientation: 1,
|
||||
DisplayedText: 'Chassis vertical',
|
||||
MaxWidth: 200,
|
||||
DefaultChildType: 'Trou',
|
||||
Style: {
|
||||
fillOpacity: 1,
|
||||
|
@ -143,7 +156,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
{
|
||||
Type: 'Montant',
|
||||
Width: 10,
|
||||
XPositionReference: 1,
|
||||
PositionReference: 4,
|
||||
MarkPositionToDimensionBorrower: true,
|
||||
Style: {
|
||||
fillOpacity: 0,
|
||||
|
@ -152,10 +165,23 @@ const GetSVGLayoutConfiguration = () => {
|
|||
fill: '#713f12',
|
||||
}
|
||||
},
|
||||
{
|
||||
Type: 'Traverse',
|
||||
Height: 10,
|
||||
PositionReference: 4,
|
||||
Orientation: 1,
|
||||
MarkPositionToDimensionBorrower: true,
|
||||
Style: {
|
||||
fillOpacity: 0,
|
||||
strokeWidth: 2,
|
||||
stroke: '#6517fa',
|
||||
fill: '#6517fa',
|
||||
}
|
||||
},
|
||||
{
|
||||
Type: 'Dilatation',
|
||||
Width: 4,
|
||||
XPositionReference: 1,
|
||||
PositionReference: 1,
|
||||
MarkPositionToDimensionBorrower: true,
|
||||
Style: {
|
||||
fillOpacity: 0,
|
||||
|
@ -198,7 +224,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Url: 'https://www.manutan.fr/img/S/GRP/ST/AIG3930272.jpg'
|
||||
},
|
||||
Name: 'Poteau structure',
|
||||
XPositionReference: 1
|
||||
PositionReference: 1
|
||||
},
|
||||
{
|
||||
Width: 32,
|
||||
|
@ -210,7 +236,7 @@ const GetSVGLayoutConfiguration = () => {
|
|||
Url: 'https://e7.pngegg.com/pngimages/647/127/png-clipart-svg-working-group-information-world-wide-web-internet-structure.png'
|
||||
},
|
||||
Name: 'Joint de structure',
|
||||
XPositionReference: 0
|
||||
PositionReference: 0
|
||||
}
|
||||
],
|
||||
Categories: [
|
||||
|
@ -227,7 +253,13 @@ const GetSVGLayoutConfiguration = () => {
|
|||
MainContainer: {
|
||||
Type: 'main',
|
||||
Width: 800,
|
||||
Height: 200
|
||||
Height: 800,
|
||||
Orientation: 1,
|
||||
Style: {
|
||||
stroke: 'black',
|
||||
strokeWidth: 2,
|
||||
fillOpacity: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue