Skip to content

Commit

Permalink
update schema
Browse files Browse the repository at this point in the history
  • Loading branch information
bluepilledgreat committed Oct 20, 2024
1 parent cb70e8e commit fb7e14b
Showing 1 changed file with 34 additions and 2 deletions.
36 changes: 34 additions & 2 deletions Bloxstrap/Resources/CustomBootstrapperSchema.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"SuperClass": "Control",
"IsCreatable": true,
"Attributes": {
"Content": "Content"
"Content": "object"
}
},
"ProgressBar": {
Expand Down Expand Up @@ -153,6 +153,24 @@
"Viewport": "Rect",
"ImageSource": "ImageSource"
}
},
"LinearGradientBrush": {
"SuperClass": "Brush",
"IsCreatable": true,
"Attributes": {
"StartPoint": "Point",
"EndPoint": "Point",
"ColorInterpolationMode": "ColorInterpolationMode",
"MappingMode": "BrushMappingMode",
"SpreadMethod": "GradientSpreadMethod"
}
},
"GradientStop": {
"IsCreatable": true,
"Attributes": {
"Color": "Color",
"Offset": "double"
}
}
},
"Types": {
Expand All @@ -165,11 +183,12 @@
},
"int": {},
"double": {},
"object": {},
"Thickness": {},
"Rect": {},
"Point": {},
"Brush": {},
"Color": {},
"Content": {},
"ImageSource": {},
"Visibility": {
"Values": [
Expand Down Expand Up @@ -298,6 +317,19 @@
"Absolute",
"RelativeToBoundingBox"
]
},
"ColorInterpolationMode": {
"Values": [
"ScRgbLinearInterpolation",
"SRgbLinearInterpolation"
]
},
"GradientSpreadMethod": {
"Values": [
"Pad",
"Reflect",
"Repeat"
]
}
}
}

0 comments on commit fb7e14b

Please sign in to comment.