@wcardinal/wcardinal-ui 0.312.0 → 0.314.0

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.
Files changed (31) hide show
  1. package/dist/types/wcardinal/ui/shape/e-shape-points-formatters.d.ts +1 -0
  2. package/dist/types/wcardinal/ui/shape/e-shape-points.d.ts +1 -0
  3. package/dist/types/wcardinal/ui/shape/index.d.ts +1 -0
  4. package/dist/types/wcardinal/ui/shape/variant/e-shape-bar-points.d.ts +1 -0
  5. package/dist/types/wcardinal/ui/shape/variant/e-shape-group-points.d.ts +1 -0
  6. package/dist/types/wcardinal/ui/shape/variant/e-shape-line-of-any-points-impl.d.ts +1 -0
  7. package/dist/types/wcardinal/ui/shape/variant/e-shape-line-points.d.ts +1 -2
  8. package/dist/wcardinal/ui/shape/e-shape-points-formatters.js +8 -0
  9. package/dist/wcardinal/ui/shape/e-shape-points-formatters.js.map +1 -1
  10. package/dist/wcardinal/ui/shape/e-shape-points.js.map +1 -1
  11. package/dist/wcardinal/ui/shape/index.js +1 -0
  12. package/dist/wcardinal/ui/shape/index.js.map +1 -1
  13. package/dist/wcardinal/ui/shape/variant/e-shape-bar-points.js +8 -1
  14. package/dist/wcardinal/ui/shape/variant/e-shape-bar-points.js.map +1 -1
  15. package/dist/wcardinal/ui/shape/variant/e-shape-base.js +4 -0
  16. package/dist/wcardinal/ui/shape/variant/e-shape-base.js.map +1 -1
  17. package/dist/wcardinal/ui/shape/variant/e-shape-group-points.js +3 -0
  18. package/dist/wcardinal/ui/shape/variant/e-shape-group-points.js.map +1 -1
  19. package/dist/wcardinal/ui/shape/variant/e-shape-line-of-any-points-impl.js +3 -0
  20. package/dist/wcardinal/ui/shape/variant/e-shape-line-of-any-points-impl.js.map +1 -1
  21. package/dist/wcardinal/ui/shape/variant/e-shape-line-points.js +51 -107
  22. package/dist/wcardinal/ui/shape/variant/e-shape-line-points.js.map +1 -1
  23. package/dist/wcardinal-ui-theme-dark.js +1 -1
  24. package/dist/wcardinal-ui-theme-dark.min.js +1 -1
  25. package/dist/wcardinal-ui-theme-white.js +1 -1
  26. package/dist/wcardinal-ui-theme-white.min.js +1 -1
  27. package/dist/wcardinal-ui.cjs.js +79 -109
  28. package/dist/wcardinal-ui.js +79 -109
  29. package/dist/wcardinal-ui.min.js +2 -2
  30. package/dist/wcardinal-ui.min.js.map +1 -1
  31. package/package.json +1 -1
@@ -1,5 +1,5 @@
1
1
  /*
2
- Winter Cardinal UI v0.312.0
2
+ Winter Cardinal UI v0.314.0
3
3
  Copyright (C) 2019 Toshiba Corporation
4
4
  SPDX-License-Identifier: Apache-2.0
5
5
 
@@ -1997,8 +1997,15 @@ var EShapeBarPoints = /** @class */ (function () {
1997
1997
  return 0;
1998
1998
  }
1999
1999
  };
2000
+ EShapeBarPoints.prototype.onSizeChange = function () {
2001
+ this.update();
2002
+ };
2000
2003
  EShapeBarPoints.prototype.update = function () {
2001
- var parentSize = this._parent.size;
2004
+ var parent = this._parent;
2005
+ if (parent == null) {
2006
+ return;
2007
+ }
2008
+ var parentSize = parent.size;
2002
2009
  var parentSizeX = parentSize.x;
2003
2010
  var parentSizeY = parentSize.y;
2004
2011
  var position = this._position;
@@ -4660,6 +4667,10 @@ var EShapeBase = /** @class */ (function (_super) {
4660
4667
  this._boundsInternalTransformId = NaN;
4661
4668
  this._boundsLocalTransformId = NaN;
4662
4669
  this.onTransformChange_();
4670
+ var points = this._points;
4671
+ if (points != null) {
4672
+ points.onSizeChange();
4673
+ }
4663
4674
  this.updateUploaded();
4664
4675
  var connector = this._connector;
4665
4676
  if (connector != null) {
@@ -19022,6 +19033,14 @@ var EShapePointsFormatters = /** @class */ (function () {
19022
19033
  }
19023
19034
  return this.data.get(index);
19024
19035
  };
19036
+ EShapePointsFormatters.each = function (iteratee) {
19037
+ if (this.data == null) {
19038
+ this.data = this.newData();
19039
+ }
19040
+ this.data.forEach(function (datum, id) {
19041
+ iteratee(id, datum);
19042
+ });
19043
+ };
19025
19044
  EShapePointsFormatters.find = function (style) {
19026
19045
  return this.get((style & EShapePointsStyle.FORMATTER_MASK) >> EShapePointsStyle.FORMATTER_SHIFT);
19027
19046
  };
@@ -19068,90 +19087,58 @@ var EShapeLinePoints = /** @class */ (function () {
19068
19087
  this._parentSizeFitted.copyFrom(parentSize);
19069
19088
  this._parentSizeBase.copyFrom(parentSize);
19070
19089
  };
19090
+ EShapeLinePoints.prototype.onSizeChange = function () {
19091
+ this.fit();
19092
+ };
19071
19093
  EShapeLinePoints.prototype.fit = function () {
19094
+ var parent = this._parent;
19095
+ if (parent == null) {
19096
+ return;
19097
+ }
19072
19098
  var psizef = this._parentSizeFitted;
19073
- var psize = this._parent.size;
19099
+ var psize = parent.size;
19074
19100
  var psizeX = psize.x;
19075
19101
  var psizeY = psize.y;
19076
19102
  var threshold = 0.00001;
19077
- if (threshold < Math.abs(psizeX - psizef.x) || threshold < Math.abs(psizeY - psizef.y)) {
19078
- psizef.set(psizeX, psizeY);
19079
- var psizeBase = this._parentSizeBase;
19080
- var isValidX = threshold < Math.abs(psizeBase.x);
19081
- var isValidY = threshold < Math.abs(psizeBase.y);
19082
- if (isValidX || isValidY) {
19083
- var scaleX = isValidX ? psizeX / psizeBase.x : 1;
19084
- var scaleY = isValidY ? psizeY / psizeBase.y : 1;
19085
- // Values
19086
- var values = this._values;
19087
- var valuesBase = this._valuesBase;
19088
- if (valuesBase == null) {
19089
- valuesBase = [];
19090
- this._valuesBase = valuesBase;
19091
- for (var i = 0, imax = values.length; i < imax; i += 2) {
19092
- var x = values[i];
19093
- var y = values[i + 1];
19094
- values[i] = x * scaleX;
19095
- values[i + 1] = y * scaleY;
19096
- valuesBase.push(x, y);
19097
- }
19098
- }
19099
- else {
19100
- for (var i = 0, imax = values.length; i < imax; i += 2) {
19101
- values[i] = valuesBase[i] * scaleX;
19102
- values[i + 1] = valuesBase[i + 1] * scaleY;
19103
- }
19104
- }
19105
- // Formatted ID, values and boundary
19106
- if (this._id === this._formattedId) {
19107
- var formatted = this._formatted;
19108
- if (formatted != null) {
19109
- // Formatted values
19110
- var formattedValues = formatted.values;
19111
- var formattedValuesBase = this._formattedValuesBase;
19112
- if (formattedValuesBase == null) {
19113
- formattedValuesBase = [];
19114
- this._formattedValuesBase = formattedValuesBase;
19115
- for (var i = 0, imax = formattedValues.length; i < imax; i += 2) {
19116
- var x = formattedValues[i];
19117
- var y = formattedValues[i + 1];
19118
- formattedValues[i] = x * scaleX;
19119
- formattedValues[i + 1] = y * scaleY;
19120
- formattedValuesBase.push(x, y);
19121
- }
19122
- }
19123
- else {
19124
- for (var i = 0, imax = formattedValues.length; i < imax; i += 2) {
19125
- formattedValues[i] = formattedValuesBase[i] * scaleX;
19126
- formattedValues[i + 1] = formattedValuesBase[i + 1] * scaleY;
19127
- }
19128
- }
19129
- // Formatted boundary
19130
- var formattedBoundary = formatted.boundary;
19131
- var formattedBoundaryBase = this._formattedBoundaryBase;
19132
- if (formattedBoundaryBase == null) {
19133
- formattedBoundaryBase = [0, 0, 0, 0];
19134
- this._formattedBoundaryBase = formattedBoundaryBase;
19135
- for (var i = 0, imax = formattedBoundary.length; i < imax; i += 2) {
19136
- var x = formattedBoundary[i];
19137
- var y = formattedBoundary[i + 1];
19138
- formattedBoundary[i] = x * scaleX;
19139
- formattedBoundary[i + 1] = y * scaleY;
19140
- formattedBoundaryBase[i] = x;
19141
- formattedBoundaryBase[i + 1] = y;
19142
- }
19143
- }
19144
- else {
19145
- for (var i = 0, imax = formattedBoundary.length; i < imax; i += 2) {
19146
- formattedBoundary[i] = formattedBoundaryBase[i] * scaleX;
19147
- formattedBoundary[i + 1] = formattedBoundaryBase[i + 1] * scaleY;
19148
- }
19149
- }
19150
- // Formatted ID
19151
- this._formattedId += 1;
19152
- }
19153
- }
19154
- this._id += 1;
19103
+ if (Math.abs(psizeX - psizef.x) <= threshold && Math.abs(psizeY - psizef.y) <= threshold) {
19104
+ return;
19105
+ }
19106
+ psizef.set(psizeX, psizeY);
19107
+ var psizeBase = this._parentSizeBase;
19108
+ var isValidX = threshold < Math.abs(psizeBase.x);
19109
+ var isValidY = threshold < Math.abs(psizeBase.y);
19110
+ if (!isValidX && !isValidY) {
19111
+ return;
19112
+ }
19113
+ var scaleX = isValidX ? psizeX / psizeBase.x : 1;
19114
+ var scaleY = isValidY ? psizeY / psizeBase.y : 1;
19115
+ // Values
19116
+ var values = this._values;
19117
+ var valuesBase = this._valuesBase;
19118
+ if (valuesBase == null) {
19119
+ valuesBase = [];
19120
+ this._valuesBase = valuesBase;
19121
+ for (var i = 0, imax = values.length; i < imax; i += 2) {
19122
+ var x = values[i];
19123
+ var y = values[i + 1];
19124
+ values[i] = x * scaleX;
19125
+ values[i + 1] = y * scaleY;
19126
+ valuesBase.push(x, y);
19127
+ }
19128
+ }
19129
+ else {
19130
+ for (var i = 0, imax = values.length; i < imax; i += 2) {
19131
+ values[i] = valuesBase[i] * scaleX;
19132
+ values[i + 1] = valuesBase[i + 1] * scaleY;
19133
+ }
19134
+ }
19135
+ // Invalidate
19136
+ this._id += 1;
19137
+ if (this._formatter || this._style & EShapePointsStyle.FORMATTER_MASK) {
19138
+ var uploaded = parent.uploaded;
19139
+ if (uploaded && !uploaded.isCompatible(parent)) {
19140
+ parent.uploaded = undefined;
19141
+ parent.toDirty();
19155
19142
  }
19156
19143
  }
19157
19144
  };
@@ -19260,38 +19247,14 @@ var EShapeLinePoints = /** @class */ (function () {
19260
19247
  style: EShapePointsStyle.NONE
19261
19248
  };
19262
19249
  }
19263
- var valuesBase = this._valuesBase;
19250
+ var values = this._values;
19264
19251
  var segments = this._segments;
19265
- if (valuesBase != null) {
19266
- var length_1 = valuesBase.length >> 1;
19267
- formatter(length_1, valuesBase, segments, style, result);
19268
- toPointsBoundary(result.values, result.boundary);
19269
- var formattedValues = result.values;
19270
- var formattedValuesBase = formattedValues.splice(0);
19271
- this._formattedValuesBase = formattedValuesBase;
19272
- var formattedBoundary = result.boundary;
19273
- var formattedBoundaryBase = [
19274
- formattedBoundary[0],
19275
- formattedBoundary[1],
19276
- formattedBoundary[2],
19277
- formattedBoundary[3]
19278
- ];
19279
- this._formattedBoundaryBase = formattedBoundaryBase;
19280
- this.toScaled(formattedValues, formattedValuesBase, formattedBoundary, formattedBoundaryBase);
19281
- }
19282
- else {
19283
- var values = this._values;
19284
- var length_2 = values.length >> 1;
19285
- formatter(length_2, values, segments, style, result);
19286
- toPointsBoundary(result.values, result.boundary);
19287
- this._formattedValuesBase = undefined;
19288
- this._formattedBoundaryBase = undefined;
19289
- }
19252
+ var length_1 = values.length >> 1;
19253
+ formatter(length_1, values, segments, style, result);
19254
+ toPointsBoundary(result.values, result.boundary);
19290
19255
  }
19291
19256
  else {
19292
19257
  result = undefined;
19293
- this._formattedValuesBase = undefined;
19294
- this._formattedBoundaryBase = undefined;
19295
19258
  }
19296
19259
  this._formatted = result;
19297
19260
  }
@@ -38717,6 +38680,9 @@ var EShapeGroupPoints = /** @class */ (function () {
38717
38680
  enumerable: false,
38718
38681
  configurable: true
38719
38682
  });
38683
+ EShapeGroupPoints.prototype.onSizeChange = function () {
38684
+ // DO NOTHING
38685
+ };
38720
38686
  EShapeGroupPoints.prototype.copy = function (source) {
38721
38687
  var children = this._parent.children;
38722
38688
  for (var i = 0, imax = children.length; i < imax; ++i) {
@@ -40547,6 +40513,9 @@ var EShapeLineOfAnyPointsImpl = /** @class */ (function () {
40547
40513
  enumerable: false,
40548
40514
  configurable: true
40549
40515
  });
40516
+ EShapeLineOfAnyPointsImpl.prototype.onSizeChange = function () {
40517
+ // DO NOTHING
40518
+ };
40550
40519
  EShapeLineOfAnyPointsImpl.prototype.copy = function (source) {
40551
40520
  return this.set(source.values, source.segments, source.style);
40552
40521
  };
@@ -93941,6 +93910,7 @@ exports.EShapeLineOfTriangles = EShapeLineOfTriangles;
93941
93910
  exports.EShapeLinePoints = EShapeLinePoints;
93942
93911
  exports.EShapeNull = EShapeNull;
93943
93912
  exports.EShapeOnDeserializeds = EShapeOnDeserializeds;
93913
+ exports.EShapePointsFormatters = EShapePointsFormatters;
93944
93914
  exports.EShapePointsMarkerBase = EShapePointsMarkerBase;
93945
93915
  exports.EShapePointsMarkerContainerImpl = EShapePointsMarkerContainerImpl;
93946
93916
  exports.EShapePointsMarkerContainerImplNoop = EShapePointsMarkerContainerImplNoop;
@@ -1,5 +1,5 @@
1
1
  /*
2
- Winter Cardinal UI v0.312.0
2
+ Winter Cardinal UI v0.314.0
3
3
  Copyright (C) 2019 Toshiba Corporation
4
4
  SPDX-License-Identifier: Apache-2.0
5
5
 
@@ -1994,8 +1994,15 @@
1994
1994
  return 0;
1995
1995
  }
1996
1996
  };
1997
+ EShapeBarPoints.prototype.onSizeChange = function () {
1998
+ this.update();
1999
+ };
1997
2000
  EShapeBarPoints.prototype.update = function () {
1998
- var parentSize = this._parent.size;
2001
+ var parent = this._parent;
2002
+ if (parent == null) {
2003
+ return;
2004
+ }
2005
+ var parentSize = parent.size;
1999
2006
  var parentSizeX = parentSize.x;
2000
2007
  var parentSizeY = parentSize.y;
2001
2008
  var position = this._position;
@@ -4657,6 +4664,10 @@
4657
4664
  this._boundsInternalTransformId = NaN;
4658
4665
  this._boundsLocalTransformId = NaN;
4659
4666
  this.onTransformChange_();
4667
+ var points = this._points;
4668
+ if (points != null) {
4669
+ points.onSizeChange();
4670
+ }
4660
4671
  this.updateUploaded();
4661
4672
  var connector = this._connector;
4662
4673
  if (connector != null) {
@@ -19019,6 +19030,14 @@
19019
19030
  }
19020
19031
  return this.data.get(index);
19021
19032
  };
19033
+ EShapePointsFormatters.each = function (iteratee) {
19034
+ if (this.data == null) {
19035
+ this.data = this.newData();
19036
+ }
19037
+ this.data.forEach(function (datum, id) {
19038
+ iteratee(id, datum);
19039
+ });
19040
+ };
19022
19041
  EShapePointsFormatters.find = function (style) {
19023
19042
  return this.get((style & EShapePointsStyle.FORMATTER_MASK) >> EShapePointsStyle.FORMATTER_SHIFT);
19024
19043
  };
@@ -19065,90 +19084,58 @@
19065
19084
  this._parentSizeFitted.copyFrom(parentSize);
19066
19085
  this._parentSizeBase.copyFrom(parentSize);
19067
19086
  };
19087
+ EShapeLinePoints.prototype.onSizeChange = function () {
19088
+ this.fit();
19089
+ };
19068
19090
  EShapeLinePoints.prototype.fit = function () {
19091
+ var parent = this._parent;
19092
+ if (parent == null) {
19093
+ return;
19094
+ }
19069
19095
  var psizef = this._parentSizeFitted;
19070
- var psize = this._parent.size;
19096
+ var psize = parent.size;
19071
19097
  var psizeX = psize.x;
19072
19098
  var psizeY = psize.y;
19073
19099
  var threshold = 0.00001;
19074
- if (threshold < Math.abs(psizeX - psizef.x) || threshold < Math.abs(psizeY - psizef.y)) {
19075
- psizef.set(psizeX, psizeY);
19076
- var psizeBase = this._parentSizeBase;
19077
- var isValidX = threshold < Math.abs(psizeBase.x);
19078
- var isValidY = threshold < Math.abs(psizeBase.y);
19079
- if (isValidX || isValidY) {
19080
- var scaleX = isValidX ? psizeX / psizeBase.x : 1;
19081
- var scaleY = isValidY ? psizeY / psizeBase.y : 1;
19082
- // Values
19083
- var values = this._values;
19084
- var valuesBase = this._valuesBase;
19085
- if (valuesBase == null) {
19086
- valuesBase = [];
19087
- this._valuesBase = valuesBase;
19088
- for (var i = 0, imax = values.length; i < imax; i += 2) {
19089
- var x = values[i];
19090
- var y = values[i + 1];
19091
- values[i] = x * scaleX;
19092
- values[i + 1] = y * scaleY;
19093
- valuesBase.push(x, y);
19094
- }
19095
- }
19096
- else {
19097
- for (var i = 0, imax = values.length; i < imax; i += 2) {
19098
- values[i] = valuesBase[i] * scaleX;
19099
- values[i + 1] = valuesBase[i + 1] * scaleY;
19100
- }
19101
- }
19102
- // Formatted ID, values and boundary
19103
- if (this._id === this._formattedId) {
19104
- var formatted = this._formatted;
19105
- if (formatted != null) {
19106
- // Formatted values
19107
- var formattedValues = formatted.values;
19108
- var formattedValuesBase = this._formattedValuesBase;
19109
- if (formattedValuesBase == null) {
19110
- formattedValuesBase = [];
19111
- this._formattedValuesBase = formattedValuesBase;
19112
- for (var i = 0, imax = formattedValues.length; i < imax; i += 2) {
19113
- var x = formattedValues[i];
19114
- var y = formattedValues[i + 1];
19115
- formattedValues[i] = x * scaleX;
19116
- formattedValues[i + 1] = y * scaleY;
19117
- formattedValuesBase.push(x, y);
19118
- }
19119
- }
19120
- else {
19121
- for (var i = 0, imax = formattedValues.length; i < imax; i += 2) {
19122
- formattedValues[i] = formattedValuesBase[i] * scaleX;
19123
- formattedValues[i + 1] = formattedValuesBase[i + 1] * scaleY;
19124
- }
19125
- }
19126
- // Formatted boundary
19127
- var formattedBoundary = formatted.boundary;
19128
- var formattedBoundaryBase = this._formattedBoundaryBase;
19129
- if (formattedBoundaryBase == null) {
19130
- formattedBoundaryBase = [0, 0, 0, 0];
19131
- this._formattedBoundaryBase = formattedBoundaryBase;
19132
- for (var i = 0, imax = formattedBoundary.length; i < imax; i += 2) {
19133
- var x = formattedBoundary[i];
19134
- var y = formattedBoundary[i + 1];
19135
- formattedBoundary[i] = x * scaleX;
19136
- formattedBoundary[i + 1] = y * scaleY;
19137
- formattedBoundaryBase[i] = x;
19138
- formattedBoundaryBase[i + 1] = y;
19139
- }
19140
- }
19141
- else {
19142
- for (var i = 0, imax = formattedBoundary.length; i < imax; i += 2) {
19143
- formattedBoundary[i] = formattedBoundaryBase[i] * scaleX;
19144
- formattedBoundary[i + 1] = formattedBoundaryBase[i + 1] * scaleY;
19145
- }
19146
- }
19147
- // Formatted ID
19148
- this._formattedId += 1;
19149
- }
19150
- }
19151
- this._id += 1;
19100
+ if (Math.abs(psizeX - psizef.x) <= threshold && Math.abs(psizeY - psizef.y) <= threshold) {
19101
+ return;
19102
+ }
19103
+ psizef.set(psizeX, psizeY);
19104
+ var psizeBase = this._parentSizeBase;
19105
+ var isValidX = threshold < Math.abs(psizeBase.x);
19106
+ var isValidY = threshold < Math.abs(psizeBase.y);
19107
+ if (!isValidX && !isValidY) {
19108
+ return;
19109
+ }
19110
+ var scaleX = isValidX ? psizeX / psizeBase.x : 1;
19111
+ var scaleY = isValidY ? psizeY / psizeBase.y : 1;
19112
+ // Values
19113
+ var values = this._values;
19114
+ var valuesBase = this._valuesBase;
19115
+ if (valuesBase == null) {
19116
+ valuesBase = [];
19117
+ this._valuesBase = valuesBase;
19118
+ for (var i = 0, imax = values.length; i < imax; i += 2) {
19119
+ var x = values[i];
19120
+ var y = values[i + 1];
19121
+ values[i] = x * scaleX;
19122
+ values[i + 1] = y * scaleY;
19123
+ valuesBase.push(x, y);
19124
+ }
19125
+ }
19126
+ else {
19127
+ for (var i = 0, imax = values.length; i < imax; i += 2) {
19128
+ values[i] = valuesBase[i] * scaleX;
19129
+ values[i + 1] = valuesBase[i + 1] * scaleY;
19130
+ }
19131
+ }
19132
+ // Invalidate
19133
+ this._id += 1;
19134
+ if (this._formatter || this._style & EShapePointsStyle.FORMATTER_MASK) {
19135
+ var uploaded = parent.uploaded;
19136
+ if (uploaded && !uploaded.isCompatible(parent)) {
19137
+ parent.uploaded = undefined;
19138
+ parent.toDirty();
19152
19139
  }
19153
19140
  }
19154
19141
  };
@@ -19257,38 +19244,14 @@
19257
19244
  style: EShapePointsStyle.NONE
19258
19245
  };
19259
19246
  }
19260
- var valuesBase = this._valuesBase;
19247
+ var values = this._values;
19261
19248
  var segments = this._segments;
19262
- if (valuesBase != null) {
19263
- var length_1 = valuesBase.length >> 1;
19264
- formatter(length_1, valuesBase, segments, style, result);
19265
- toPointsBoundary(result.values, result.boundary);
19266
- var formattedValues = result.values;
19267
- var formattedValuesBase = formattedValues.splice(0);
19268
- this._formattedValuesBase = formattedValuesBase;
19269
- var formattedBoundary = result.boundary;
19270
- var formattedBoundaryBase = [
19271
- formattedBoundary[0],
19272
- formattedBoundary[1],
19273
- formattedBoundary[2],
19274
- formattedBoundary[3]
19275
- ];
19276
- this._formattedBoundaryBase = formattedBoundaryBase;
19277
- this.toScaled(formattedValues, formattedValuesBase, formattedBoundary, formattedBoundaryBase);
19278
- }
19279
- else {
19280
- var values = this._values;
19281
- var length_2 = values.length >> 1;
19282
- formatter(length_2, values, segments, style, result);
19283
- toPointsBoundary(result.values, result.boundary);
19284
- this._formattedValuesBase = undefined;
19285
- this._formattedBoundaryBase = undefined;
19286
- }
19249
+ var length_1 = values.length >> 1;
19250
+ formatter(length_1, values, segments, style, result);
19251
+ toPointsBoundary(result.values, result.boundary);
19287
19252
  }
19288
19253
  else {
19289
19254
  result = undefined;
19290
- this._formattedValuesBase = undefined;
19291
- this._formattedBoundaryBase = undefined;
19292
19255
  }
19293
19256
  this._formatted = result;
19294
19257
  }
@@ -38714,6 +38677,9 @@
38714
38677
  enumerable: false,
38715
38678
  configurable: true
38716
38679
  });
38680
+ EShapeGroupPoints.prototype.onSizeChange = function () {
38681
+ // DO NOTHING
38682
+ };
38717
38683
  EShapeGroupPoints.prototype.copy = function (source) {
38718
38684
  var children = this._parent.children;
38719
38685
  for (var i = 0, imax = children.length; i < imax; ++i) {
@@ -40544,6 +40510,9 @@
40544
40510
  enumerable: false,
40545
40511
  configurable: true
40546
40512
  });
40513
+ EShapeLineOfAnyPointsImpl.prototype.onSizeChange = function () {
40514
+ // DO NOTHING
40515
+ };
40547
40516
  EShapeLineOfAnyPointsImpl.prototype.copy = function (source) {
40548
40517
  return this.set(source.values, source.segments, source.style);
40549
40518
  };
@@ -75000,6 +74969,7 @@
75000
74969
  EShapeLayerState: EShapeLayerState,
75001
74970
  toPointsBoundary: toPointsBoundary,
75002
74971
  eShapePointsFormatterCurve: eShapePointsFormatterCurve,
74972
+ EShapePointsFormatters: EShapePointsFormatters,
75003
74973
  EShapePointsMarkerBase: EShapePointsMarkerBase,
75004
74974
  EShapePointsMarkerContainerImplNoop: EShapePointsMarkerContainerImplNoop,
75005
74975
  EShapePointsMarkerContainerImpl: EShapePointsMarkerContainerImpl,