github SAP/fundamental-ngx v0.38.0

latest releases: v0.50.0-rc.92, v0.50.0-rc.91, v0.43.34...
17 months ago

Bug Fixes

chore

Features

  • core: split schematics into separate steps (#9083) (36eed1e)
  • platform: introduce variant management component (#9051) (751c55c)

BREAKING CHANGES


  • Updated @angular library to v15;
  • Updated nx library to v15;
  • Updated other third-party libraries to latest version;
  • Applied necessary migrations;
  • Adjusted unit tests;
  • For projects without unit tests angular failed karma execution with error that no tests were found, so filler test (dummy) was added to such projects;
  • Build target now ES2022
  • RouterLinkWithHref is now deprecated and removed from @fundamental-ngx/core/link.
  • Value help dialog data provider generic type should be extended from object.

Before:

class ExampleVhdDataProvider<T> extends VhdDataProvider<T> {
    fetch(params: Map<string, string>): Observable<T[]> {
        return super.fetch(params).pipe(delay(300));
    }
}

Now:

class ExampleVhdDataProvider<T extends object> extends VhdDataProvider<T> {
    fetch(params: Map<string, string>): Observable<T[]> {
        return super.fetch(params).pipe(delay(300));
    }
}

Don't miss a new fundamental-ngx release

NewReleases is sending notifications on new releases.