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