addedInput schema / $defs / ElementSourceInput
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "kind": {
+ "const": "element",
+ "title": "Kind",
+ "type": "string"
+ },
+ "target": {
+ "$ref": "#/$defs/ElementTargetInput"
+ }
+ },
+ "required": [
+ "kind",
+ "target"
+ ],
+ "title": "ElementSourceInput",
+ "type": "object"
+}
addedInput schema / $defs / OffsetDestinationInput / properties / dx
Added value: +{
+ "description": "Horizontal delta from the freshly resolved source point.",
+ "maximum": 10000,
+ "minimum": -10000,
+ "title": "Dx",
+ "type": "number"
+}
addedInput schema / $defs / OffsetDestinationInput / properties / dy
Added value: +{
+ "description": "Vertical delta from the freshly resolved source point.",
+ "maximum": 10000,
+ "minimum": -10000,
+ "title": "Dy",
+ "type": "number"
+}
removedInput schema / $defs / OffsetDestinationInput / properties / x
Removed value: -{
- "maximum": 10000,
- "minimum": -10000,
- "title": "X",
- "type": "number"
-}
removedInput schema / $defs / OffsetDestinationInput / properties / y
Removed value: -{
- "maximum": 10000,
- "minimum": -10000,
- "title": "Y",
- "type": "number"
-}
changedInput schema / $defs / OffsetDestinationInput / required
Previous value: -[
- "kind",
- "x",
- "y"
-]New value: +[
+ "kind",
+ "dx",
+ "dy"
+]
removedInput schema / properties / source / $ref
Removed value: -"#/$defs/ElementTargetInput"
addedInput schema / properties / source / anyOf
Added value: +[
+ {
+ "$ref": "#/$defs/ElementTargetInput"
+ },
+ {
+ "$ref": "#/$defs/ElementSourceInput"
+ }
+]
addedInput schema / properties / source / title
Added value: +"Source"