support export canvas to clipboard (#232)
parent
1541428ab1
commit
deee57314d
@ -0,0 +1,16 @@
|
|||||||
|
.panelExport-imageButtons {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panelExport-exportToPngButton {
|
||||||
|
flex: 1 1 auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.panelExport-exportToClipboardButton {
|
||||||
|
margin-left: 10px;
|
||||||
|
padding: 0 15px;
|
||||||
|
|
||||||
|
svg {
|
||||||
|
width: 15px;
|
||||||
|
}
|
||||||
|
}
|
@ -0,0 +1,7 @@
|
|||||||
|
interface Window {
|
||||||
|
ClipboardItem: any;
|
||||||
|
}
|
||||||
|
|
||||||
|
interface Clipboard extends EventTarget {
|
||||||
|
write(data: any[]): Promise<void>;
|
||||||
|
}
|
Loading…
Reference in New Issue