@progress/kendo-spreadsheet-common 1.1.2-develop.3 → 1.1.2-develop.4

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-esm.js CHANGED
@@ -1250,6 +1250,10 @@ function deepExtendOne(destination, source) {
1250
1250
  destProp;
1251
1251
 
1252
1252
  for (property in source) {
1253
+ if (property === '__proto__' || property === 'constructor') {
1254
+ continue;
1255
+ }
1256
+
1253
1257
  propValue = source[property];
1254
1258
  propType = typeof propValue;
1255
1259
 
package/dist/index.js CHANGED
@@ -1251,6 +1251,10 @@
1251
1251
  destProp;
1252
1252
 
1253
1253
  for (property in source) {
1254
+ if (property === '__proto__' || property === 'constructor') {
1255
+ continue;
1256
+ }
1257
+
1254
1258
  propValue = source[property];
1255
1259
  propType = typeof propValue;
1256
1260
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@progress/kendo-spreadsheet-common",
3
3
  "description": "Kendo UI platform-independent Spreadsheet library",
4
- "version": "1.1.2-develop.3",
4
+ "version": "1.1.2-develop.4",
5
5
  "keywords": [
6
6
  "Kendo UI"
7
7
  ],