Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
[markdownlint](https://dlaa.me/markdownlint/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [8.0.0] - 2024-12-2
## [9.0.0] - 2025-05-15

The 9.0.0 release updates the version of @angular required to 19 and typescript to 5.8.x.

## [8.0.0] - 2024-12-02

The 8.0.0 release updates the version of @angular required to 18 and typescript to 4.5.x.

Expand Down
7 changes: 4 additions & 3 deletions e2e/harness/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import {
} from '@senzing/sdk-components-ng';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styles: []
selector: 'app-root',
templateUrl: './app.component.html',
styles: [],
standalone: false
})
export class AppComponent {
public currentSearchResults: SzAttributeSearchResult[];
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { Component, OnInit } from '@angular/core';

@Component({
selector: 'app-sz-search-results-card-test',
templateUrl: './sz-search-results-card-test.component.html',
styleUrls: ['./sz-search-results-card-test.component.scss']
selector: 'app-sz-search-results-card-test',
templateUrl: './sz-search-results-card-test.component.html',
styleUrls: ['./sz-search-results-card-test.component.scss'],
standalone: false
})
export class SzSearchResultsCardTestComponent implements OnInit {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ import { SzEntitySearchParams, SzSearchService, JSONScrubber } from '@senzing/sd


@Component({
selector: 'app-sz-search-results-test',
templateUrl: './sz-search-results-test.component.html',
styleUrls: ['./sz-search-results-test.component.scss']
selector: 'app-sz-search-results-test',
templateUrl: './sz-search-results-test.component.html',
styleUrls: ['./sz-search-results-test.component.scss'],
standalone: false
})
export class SzSearchResultsTestComponent implements OnInit {
public _searchResults: SzAttributeSearchResult[];
Expand Down
7 changes: 4 additions & 3 deletions e2e/harness/src/app/search/sz-search/sz-search.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@ interface SzSearchFormParams {
type?: string[];
};
@Component({
selector: 'app-sz-search',
templateUrl: './sz-search.component.html',
styleUrls: ['./sz-search.component.scss']
selector: 'app-sz-search',
templateUrl: './sz-search.component.html',
styleUrls: ['./sz-search.component.scss'],
standalone: false
})
export class SzSearchComponentTest implements OnInit {
/**
Expand Down
7 changes: 4 additions & 3 deletions examples/charts/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@ import { Overlay, OverlayRef } from '@angular/cdk/overlay';
import { Subscription} from 'rxjs';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
sub: Subscription;
Expand Down
5 changes: 3 additions & 2 deletions examples/charts/src/common/header.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,9 @@ import { Component, HostBinding, Input, ViewChild, Output, OnInit, OnDestroy, Ev
@Component({
selector: 'sz-example-header',
templateUrl: './header.component.html',
styleUrls: ['./header.component.scss']
})
styleUrls: ['./header.component.scss'],
standalone: false
})
export class SzExamplesHeader {
@Input() public title: string = '';
@Input() public description: string = '';
Expand Down
7 changes: 4 additions & 3 deletions examples/data-table/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ import { LOCAL_STORAGE, StorageService } from 'ngx-webstorage-service';
import { SzSdkPrefsModel } from 'src/lib/services/sz-prefs.service';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements AfterViewInit, OnDestroy {
/** subscription to notify subscribers to unbind */
Expand Down
7 changes: 4 additions & 3 deletions examples/graph/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ import { SzEntityIdentifier } from '@senzing/rest-api-client-ng';
import { SzRelationshipNetworkComponent } from '@senzing/sdk-components-ng';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
title = 'graph';
Expand Down
7 changes: 4 additions & 3 deletions examples/search-by-id/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ import { Subscription, fromEvent, Subject } from 'rxjs';
import { LOCAL_STORAGE, StorageService } from 'ngx-webstorage-service';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements AfterViewInit, OnDestroy {
/** current results from search */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import { takeUntil } from 'rxjs/operators';
import { Subject } from 'rxjs';

@Component({
selector: 'sz-prefs-manager',
templateUrl: './prefs-manager.component.html',
styleUrls: ['./prefs-manager.component.scss']
selector: 'sz-prefs-manager',
templateUrl: './prefs-manager.component.html',
styleUrls: ['./prefs-manager.component.scss'],
standalone: false
})
export class SzPrefsManagerComponent implements OnInit, OnDestroy {
/** subscription to notify subscribers to unbind */
Expand Down
7 changes: 4 additions & 3 deletions examples/search-in-graph/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ import { Subscription, fromEvent, Subject } from 'rxjs';
import { LOCAL_STORAGE, StorageService } from 'ngx-webstorage-service';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements AfterViewInit {
/** subscription to notify subscribers to unbind */
Expand Down
7 changes: 4 additions & 3 deletions examples/search-with-prefs/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ import { Subscription, fromEvent, Subject } from 'rxjs';
import { LOCAL_STORAGE, StorageService } from 'ngx-webstorage-service';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements AfterViewInit, OnDestroy {
/** current results from search */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import { takeUntil } from 'rxjs/operators';
import { Subject } from 'rxjs';

@Component({
selector: 'sz-prefs-manager',
templateUrl: './prefs-manager.component.html',
styleUrls: ['./prefs-manager.component.scss']
selector: 'sz-prefs-manager',
templateUrl: './prefs-manager.component.html',
styleUrls: ['./prefs-manager.component.scss'],
standalone: false
})
export class SzPrefsManagerComponent implements OnInit, OnDestroy {
/** subscription to notify subscribers to unbind */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import { TemplatePortal } from '@angular/cdk/portal';
import { Subscription, fromEvent } from 'rxjs';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent implements AfterViewInit {
public currentSearchResults: SzAttributeSearchResult[];
Expand Down
7 changes: 4 additions & 3 deletions examples/search-with-spinner/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ import {
} from '@senzing/sdk-components-ng';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
public currentSearchResults: SzAttributeSearchResult[];
Expand Down
7 changes: 4 additions & 3 deletions examples/with-how-features/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ import {
import { Overlay } from '@angular/cdk/overlay';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
//public currentlySelectedEntityId: number = 200002;
Expand Down
7 changes: 4 additions & 3 deletions examples/with-why-features/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,10 @@ import { TemplatePortal } from '@angular/cdk/portal';
import { Subscription, fromEvent } from 'rxjs';

@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss'],
standalone: false
})
export class AppComponent {
public currentSearchResults: SzAttributeSearchResult[];
Expand Down
Loading