@team-monolith/cds 0.29.26 → 0.29.28
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -158,9 +158,13 @@ export class Quote {
|
|
|
158
158
|
title: "Quote",
|
|
159
159
|
};
|
|
160
160
|
}
|
|
161
|
-
|
|
161
|
+
onPaste(event) {
|
|
162
|
+
const content = event.detail.data;
|
|
163
|
+
this._wrapper.innerHTML = content.textContent;
|
|
164
|
+
}
|
|
165
|
+
static get pasteConfig() {
|
|
162
166
|
return {
|
|
163
|
-
|
|
167
|
+
tags: ["BLOCKQUOTE"],
|
|
164
168
|
};
|
|
165
169
|
}
|
|
166
170
|
}
|