@myrmidon/cadmus-refs-asserted-ids 10.0.15 → 10.0.17
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@myrmidon/cadmus-refs-asserted-ids",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.17",
|
|
4
4
|
"description": "Cadmus - asserted IDs components.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Cadmus",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"@angular/common": "^20.0.0 || ^21.0.0",
|
|
19
19
|
"@angular/core": "^20.0.0 || ^21.0.0",
|
|
20
20
|
"@angular/material": "^20.0.0 || ^21.0.0",
|
|
21
|
-
"@myrmidon/ngx-mat-tools": "^1.0.
|
|
22
|
-
"@myrmidon/cadmus-api": "^14.0.
|
|
23
|
-
"@myrmidon/cadmus-refs-assertion": "^10.0.
|
|
24
|
-
"@myrmidon/cadmus-thesaurus-store": "^0.0
|
|
21
|
+
"@myrmidon/ngx-mat-tools": "^1.0.2",
|
|
22
|
+
"@myrmidon/cadmus-api": "^14.0.7",
|
|
23
|
+
"@myrmidon/cadmus-refs-assertion": "^10.0.6",
|
|
24
|
+
"@myrmidon/cadmus-thesaurus-store": "^0.1.0"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"tslib": "^2.3.0"
|
|
@@ -28,6 +28,7 @@ declare class PinRefLookupService implements RefLookupService {
|
|
|
28
28
|
private _itemService;
|
|
29
29
|
readonly id = "pin";
|
|
30
30
|
constructor(_itemService: ItemService);
|
|
31
|
+
getById(_id: string): Observable<any | undefined>;
|
|
31
32
|
getName(item: any | undefined): string;
|
|
32
33
|
private buildQuery;
|
|
33
34
|
lookup(filter: PinRefLookupFilter, options?: any): Observable<any[]>;
|
|
@@ -40,6 +41,7 @@ declare class ItemRefLookupService implements RefLookupService {
|
|
|
40
41
|
readonly id = "item";
|
|
41
42
|
constructor(_itemService: ItemService);
|
|
42
43
|
lookup(filter: RefLookupFilter, options?: any): Observable<Item[]>;
|
|
44
|
+
getById(id: string): Observable<Item | undefined>;
|
|
43
45
|
getName(item: Item): string;
|
|
44
46
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ItemRefLookupService, never>;
|
|
45
47
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<ItemRefLookupService>;
|