v8.3.1
When specifically using “right click, Paste” to paste a copied value to a prop value in multiple selected components, the first component clicked will have the whole object structure within which the key pasted onto it exists, copied into each of the selected components, except for the prop which was pasted onto which will get the value from the clipboard as expected.
E.g. if you selected multiple embedded views and pasted with right click some text into one of the params, the entire params object from the first selected component would be pasted into all selected embedded views (incorrect), and the text in the clipboard would be copied into the param you pasted it into (correct).
Best explained with a video…
Example 3 Labels:
[
{
"type": "ia.display.label",
"version": 0,
"props": {
"text": "Label 1",
"style": {
"color": "#440C0C",
"fontSize": "13pt",
"fontWeight": "bold"
}
},
"meta": {
"name": "Label"
},
"position": {
"basis": "32px"
},
"custom": {}
},
{
"type": "ia.display.label",
"version": 0,
"props": {
"text": "Label 2",
"style": {
"color": "#C444DE",
"fontSize": "23pt",
"fontWeight": "bold"
}
},
"meta": {
"name": "Label_0"
},
"position": {
"basis": "32px"
},
"custom": {}
},
{
"type": "ia.display.label",
"version": 0,
"props": {
"text": "Label 3",
"style": {
"color": "red",
"fontSize": "13pt",
"fontWeight": "bold"
}
},
"meta": {
"name": "Label_1"
},
"position": {
"basis": "32px"
},
"custom": {}
}
]