@sdcorejs/angular 20.1.4 → 20.1.6

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.
package/README.md CHANGED
@@ -176,15 +176,15 @@ export const appConfig: ApplicationConfig = {
176
176
  | [Versions registry](https://sdcorejs.github.io/sdcorejs-angular/docs/versions.json) | Select docs matching an installed package version |
177
177
  | [Machine-readable catalog](https://sdcorejs.github.io/sdcorejs-angular/docs/catalog.json) | Discover documentation across maintained package lines |
178
178
  | [E2E attributes](https://github.com/sdcorejs/sdcorejs-angular/blob/main/versions/v19/projects/sdcorejs-angular/docs/E2E-ATTRIBUTES.md) | Stable runtime selectors and state attributes |
179
- | [1.4 migration guide](https://github.com/sdcorejs/sdcorejs-angular/blob/main/docs/migrations/1.4.md) | Dedupe, loading, persistence, connector, responsive, and signal migrations |
179
+ | [Release notes for this version](https://sdcorejs.github.io/sdcorejs-angular/docs/latest/CHANGELOG.md) | What changed in this release and how it differs from the previous one |
180
180
 
181
181
  ## Versioning
182
182
 
183
183
  - Use `@sdcorejs/angular@^19`, `@^20`, or `@^21` to match the application's Angular major.
184
184
  - Maintained package lines are released from the same feature surface with required Angular-major adaptations.
185
185
  - Consumer-breaking changes and migration notes are recorded in the [changelog](https://github.com/sdcorejs/sdcorejs-angular/blob/main/CHANGELOG.md).
186
- - Before adopting the `1.4` suffix, follow the [1.4 migration guide](https://github.com/sdcorejs/sdcorejs-angular/blob/main/docs/migrations/1.4.md).
187
186
  - Version-pinned reference docs remain available under `https://sdcorejs.github.io/sdcorejs-angular/docs/<package-version>/`.
187
+ - Every published version is self-contained: `docs/<package-version>/CHANGELOG.md` carries that release's notes and a source diff link against the previous release.
188
188
 
189
189
  ## Contributing
190
190
 
@@ -1187,7 +1187,7 @@ declare class SdTable<T = unknown> implements AfterViewInit, OnDestroy {
1187
1187
  cacheValues: Record<string, unknown[]>;
1188
1188
  treeRevision: _angular_core.WritableSignal<number>;
1189
1189
  exporting: _angular_core.WritableSignal<boolean>;
1190
- exportTitle: _angular_core.WritableSignal<string>;
1190
+ exportTitle: _angular_core.Signal<string>;
1191
1191
  tableConfiguration: ISdTableConfiguration | null;
1192
1192
  constructor();
1193
1193
  ngAfterViewInit(): void;