@progress/kendo-charts 2.7.2-dev.202502101310 → 2.7.2-dev.202503171225

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.
@@ -130,7 +130,7 @@ var LegendItem = (function (BoxElement) {
130
130
  if (typeof pattern === 'function') {
131
131
  pattern = pattern(options.series);
132
132
  }
133
- pattern = structuredClone(pattern);
133
+ pattern = Object.assign({}, pattern);
134
134
  this._reduceSize(pattern, 'gap');
135
135
  this._reduceSize(pattern, 'width');
136
136
  this._reduceSize(pattern, 'radius');
@@ -122,7 +122,7 @@ class LegendItem extends BoxElement {
122
122
  if (typeof pattern === 'function') {
123
123
  pattern = pattern(options.series);
124
124
  }
125
- pattern = structuredClone(pattern);
125
+ pattern = Object.assign({}, pattern);
126
126
  this._reduceSize(pattern, 'gap');
127
127
  this._reduceSize(pattern, 'width');
128
128
  this._reduceSize(pattern, 'radius');