@whitesev/pops 2.0.1 → 2.0.2
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.
- package/dist/index.amd.js +6 -1
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +6 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +6 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +6 -1
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +6 -1
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +6 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/panel/PanelHandleContentDetails.ts +6 -1
package/dist/index.umd.js
CHANGED
|
@@ -6059,7 +6059,12 @@
|
|
|
6059
6059
|
return;
|
|
6060
6060
|
}
|
|
6061
6061
|
Object.keys(props).forEach((propName) => {
|
|
6062
|
-
|
|
6062
|
+
let value = props[propName];
|
|
6063
|
+
if (propName === "innerHTML") {
|
|
6064
|
+
PopsSafeUtils.setSafeHTML(element, value);
|
|
6065
|
+
return;
|
|
6066
|
+
}
|
|
6067
|
+
Reflect.set(element, propName, value);
|
|
6063
6068
|
});
|
|
6064
6069
|
},
|
|
6065
6070
|
/**
|