Skip to content

Releases: tiberiuzuld/angular-busy

23.0.0 (2026-01-15)

15 Jan 08:01
e74b2b0

Choose a tag to compare

Support Angular v21

Support zoneless apps, Demo app is now zoneless.

Breaking Changes

  • removed CgBusyModule use instead provider BUSY_OPTIONS for default options
// before
import { CgBusyModule } from 'angular-busy2';

@NgModule({
  imports: [
    CgBusyModule.forRoot({
      backdrop: true
    }) //import it with .forRoot in your root module. provide some optional Options.
  ]
})
// or
bootstrapApplication(AppComponent, {
  providers: [
    importProvidersFrom(CgBusyModule.forRoot())
    // ...
  ]
}).catch(err => console.log(err));

// after
import { BUSY_OPTIONS, CgBusyOptions } from 'angular-busy2';

export const appConfig: ApplicationConfig = {
  providers: [
    {
      provide: BUSY_OPTIONS,
      useValue: {
        minDuration: 100
      } as CgBusyOptions
    }
  ]
};
  • Migrate to signal inputs, it shouldn't break usages
  • rename components and service files to match angular styleguide, it shouldn't break usages

22.0.6 (2025-12-05)

05 Dec 16:08
627626a

Choose a tag to compare

Bug fixes

  • fix issue when parentNode is null #36

22.0.5 (2025-11-21)

21 Nov 08:53
d539521

Choose a tag to compare

Improvements

  • change signal behaviour, now it will track all changes to the signal and if the value is truthy it will show the loading mask

22.0.4 (2025-10-17)

17 Oct 03:38
f9e6453

Choose a tag to compare

  • Fix symbolic links to LICENSE and README.md to fix the npm publish to include them in the package

22.0.3 (2025-10-16)

16 Oct 15:12
f5e9ecc

Choose a tag to compare

  • Add trusted publishing

22.0.2 (2025-07-22)

22 Jul 04:36
4aac848

Choose a tag to compare

Bug fixes

  • Fix signal to ignore initial value only if it's undefined

22.0.1 (2025-07-01)

01 Jul 03:31
77cba21

Choose a tag to compare

Bug fixes

  • fix peer dependency on angular v20

22.0.0 (2025-06-28)

27 Jun 22:02
bd3cf69

Choose a tag to compare

Support for Angular 20

  • Add support for signal, it ignores initial value and shows spinner till new value arrives

21.0.0 (2024-12-05)

05 Dec 07:19
e1b6ee0

Choose a tag to compare

Support for Angular 19

20.1.1 (2024-08-05)

05 Aug 15:43
3120747

Choose a tag to compare

Bug fix