@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.iife.js
CHANGED
|
@@ -6056,7 +6056,12 @@ var pops = (function () {
|
|
|
6056
6056
|
return;
|
|
6057
6057
|
}
|
|
6058
6058
|
Object.keys(props).forEach((propName) => {
|
|
6059
|
-
|
|
6059
|
+
let value = props[propName];
|
|
6060
|
+
if (propName === "innerHTML") {
|
|
6061
|
+
PopsSafeUtils.setSafeHTML(element, value);
|
|
6062
|
+
return;
|
|
6063
|
+
}
|
|
6064
|
+
Reflect.set(element, propName, value);
|
|
6060
6065
|
});
|
|
6061
6066
|
},
|
|
6062
6067
|
/**
|