github SAP/fundamental-ngx v0.38.0-rc.0

latest releases: v0.52.2-rc.29, v0.52.2-rc.28, v0.52.2-rc.27...
pre-release21 months ago

chore

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.