@lvce-editor/embeds-process 3.2.0 → 3.2.1
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.
|
@@ -208,9 +208,9 @@ const getDomTree = async id => {
|
|
|
208
208
|
// @ts-ignore
|
|
209
209
|
return invoke$1('ElectronWebContentsViewFunctions.getDomTree', id);
|
|
210
210
|
};
|
|
211
|
-
const insertCss = async id => {
|
|
211
|
+
const insertCss = async (id, css) => {
|
|
212
212
|
// @ts-ignore
|
|
213
|
-
return invoke$1('ElectronWebContentsViewFunctions.insertCss', id);
|
|
213
|
+
return invoke$1('ElectronWebContentsViewFunctions.insertCss', id, css);
|
|
214
214
|
};
|
|
215
215
|
const show = async (id, ...args) => {
|
|
216
216
|
return invoke$1('ElectronWebContentsViewFunctions.show', id, ...args);
|