v1.59.0
This version changed the transient
option of Clipboard
to concealed
.
To migrate your extension manually, you need to ensure that all Clipboard.copy
that specify transient
are updated as follows:
Clipboard.copy
with transient
option
Clipboard.copy
with transient
optionClipboard.copy(content, { transient: true });
// becomes
Clipboard.copy(content, { concealed: true });
Action.CopyToClipboard
with transient
prop
Action.CopyToClipboard
with transient
prop<Action.CopyToClipboard ... transient />
// becomes
<Action.CopyToClipboard ... concealed />
Last updated