autoql-fe-utils 1.0.9 → 1.0.10

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.
@@ -16354,7 +16354,7 @@
16354
16354
  if (!isNaN(elementNumber)) {
16355
16355
  const p = elementNumber / 100;
16356
16356
  formattedElement = new Intl.NumberFormat(languageCode, {
16357
- style: "PERCENT" /* PERCENT */,
16357
+ style: "percent",
16358
16358
  minimumFractionDigits: 2,
16359
16359
  maximumFractionDigits: 2
16360
16360
  }).format(p);
@@ -16511,7 +16511,7 @@
16511
16511
  if (Number(d) || Number(d) === 0) {
16512
16512
  const p = Number(d) / 100;
16513
16513
  formattedLabel = new Intl.NumberFormat(languageCode, {
16514
- style: "PERCENT" /* PERCENT */,
16514
+ style: "percent",
16515
16515
  minimumFractionDigits: 1,
16516
16516
  maximumFractionDigits: 1
16517
16517
  }).format(p);