@pega/angular-sdk-overrides 0.24.7 → 0.24.9

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.
@@ -177,7 +177,7 @@ export class PercentageComponent implements OnInit, OnDestroy {
177
177
  const actionsApi = this.pConn$?.getActionsApi();
178
178
  const propName = (this.pConn$?.getStateProps() as any).value;
179
179
  let value = event?.target?.value;
180
- value = value?.replace('%', '');
180
+ value = value ? value.replace(/%/g, '') : '';
181
181
  if (this.currSep === ',') {
182
182
  value = value.replace(/,/g, '');
183
183
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pega/angular-sdk-overrides",
3
- "version": "0.24.7",
3
+ "version": "0.24.9",
4
4
  "description": "Angular SDK - Code for overriding components",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1"