@m1z23r/ngx-ui 1.1.27 → 1.1.28

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.
@@ -2360,7 +2360,7 @@ class CircularProgressComponent {
2360
2360
  indeterminate = input(false, ...(ngDevMode ? [{ debugName: "indeterminate" }] : []));
2361
2361
  clampedValue = computed(() => Math.min(100, Math.max(0, this.value())), ...(ngDevMode ? [{ debugName: "clampedValue" }] : []));
2362
2362
  sizeValue = computed(() => {
2363
- const sizes = { sm: 32, md: 48, lg: 64, xl: 96 };
2363
+ const sizes = { xs: 16, sm: 32, md: 48, lg: 64, xl: 96 };
2364
2364
  return sizes[this.size()];
2365
2365
  }, ...(ngDevMode ? [{ debugName: "sizeValue" }] : []));
2366
2366
  center = computed(() => this.sizeValue() / 2, ...(ngDevMode ? [{ debugName: "center" }] : []));