adb-shared 6.1.8 → 6.1.9
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,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "adb-shared",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.9",
|
|
4
4
|
"author": "ADB",
|
|
5
5
|
"license": "ISC",
|
|
6
6
|
"peerDependencies": {
|
|
7
|
-
"@angular/common": ">=
|
|
8
|
-
"@angular/core": ">=
|
|
9
|
-
"@angular/router": ">=
|
|
7
|
+
"@angular/common": ">= 19.x",
|
|
8
|
+
"@angular/core": ">= 19.x ",
|
|
9
|
+
"@angular/router": ">= 19.x ",
|
|
10
10
|
"@ngx-translate/core": ">= 16.x",
|
|
11
11
|
"@ngx-translate/http-loader": ">= 16.x",
|
|
12
12
|
"date-fns": ">= 4.x.x"
|
|
@@ -15,13 +15,13 @@
|
|
|
15
15
|
"tslib": "^2.3.0"
|
|
16
16
|
},
|
|
17
17
|
"module": "fesm2022/adb-shared.mjs",
|
|
18
|
-
"typings": "
|
|
18
|
+
"typings": "types/adb-shared.d.ts",
|
|
19
19
|
"exports": {
|
|
20
20
|
"./package.json": {
|
|
21
21
|
"default": "./package.json"
|
|
22
22
|
},
|
|
23
23
|
".": {
|
|
24
|
-
"types": "./
|
|
24
|
+
"types": "./types/adb-shared.d.ts",
|
|
25
25
|
"default": "./fesm2022/adb-shared.mjs"
|
|
26
26
|
}
|
|
27
27
|
},
|
|
@@ -707,12 +707,13 @@ declare class FilterSectionComponent implements OnInit, OnDestroy {
|
|
|
707
707
|
helpResource: any;
|
|
708
708
|
count: number;
|
|
709
709
|
expanded: any;
|
|
710
|
+
lazy: boolean;
|
|
710
711
|
id: number;
|
|
711
712
|
template?: TemplateRef<unknown>;
|
|
712
713
|
ngOnInit(): void;
|
|
713
714
|
ngOnDestroy(): void;
|
|
714
715
|
static ɵfac: i0.ɵɵFactoryDeclaration<FilterSectionComponent, never>;
|
|
715
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FilterSectionComponent, "adb-filter-section", never, { "titleResource": { "alias": "titleResource"; "required": false; }; "helpResource": { "alias": "helpResource"; "required": false; }; "count": { "alias": "count"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
|
|
716
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterSectionComponent, "adb-filter-section", never, { "titleResource": { "alias": "titleResource"; "required": false; }; "helpResource": { "alias": "helpResource"; "required": false; }; "count": { "alias": "count"; "required": false; }; "expanded": { "alias": "expanded"; "required": false; }; "lazy": { "alias": "lazy"; "required": false; }; }, {}, ["template"], ["*"], false, never>;
|
|
716
717
|
}
|
|
717
718
|
|
|
718
719
|
declare class AdbFilterSectionModule {
|