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