v13.2.0
TLDR What's Changed
- "ci: add GitHub Actions workflow and Dependabot grouping" by @ashish-chopra in #193
- chore: remove dead code, deprecated deps, and stale config by @ashish-chopra in #198
- chore: fix all lint errors and gate lint in CI by @ashish-chopra in #199
- chore: align workspace layout with standard Angular CLI library conve… by @ashish-chopra in #200
- chore(release): prepare 13.2.0 by @ashish-chopra in #201
[13.2.0] - 2026-06-10
Added
- Public type exports for stronger consumer typing — these can now be imported
fromngx-gaugeand used to type your own variables:NgxGaugeType—'full' | 'arch' | 'semi'NgxGaugeCap—'round' | 'butt'NgxGaugeThreshold— shape of a single threshold entry (color?,backgroundColor?,bgOpacity?)NgxGaugeThresholds—Record<string, NgxGaugeThreshold>NgxGaugeMarker— shape of a single marker entry (color?,type?,size?,label?,font?)NgxGaugeMarkers—Record<string, NgxGaugeMarker>
Changed
- Repository housekeeping (invisible to npm consumers — no runtime/API impact):
- Aligned workspace layout with the standard Angular CLI library convention:
demo app moved fromapps/demo/toprojects/demo/, library barrel renamed
public_api.ts→public-api.ts, polyfills inlined inangular.jsonas
["zone.js"],environments/+fileReplacementsremoved, static assets
moved toprojects/demo/public/, manualenableProdMode()dropped (the
application builder handles this automatically). (#200) - Lint cleanup across the library and demo; lint is now gated in CI. (#199)
- Removed unused dead code and stale configuration. (#198)
- Added GitHub Actions CI workflow with Node 20/22 build & test matrix, plus
Dependabot grouping for npm + Actions updates. (#193)
- Aligned workspace layout with the standard Angular CLI library convention:
Notes
- The compiled
dist/ngx-gaugeoutput is byte-identical to13.1.0except for
one renamedsourcesentry in the.mjs.mapfile (public_api.ts→
public-api.ts). Runtime behaviour is unchanged. @Inputtypes forthresholdsandmarkersremainObjectin this
release; the corresponding type-tightening change is bundled with the
upcoming14.0.0modernization release alongside other breaking changes.
Full Changelog: v13.1.0...v13.2.0