@lukfel/ng-scaffold 20.1.2 → 21.0.2
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": "@lukfel/ng-scaffold",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "21.0.2",
|
|
4
4
|
"description": "This Angular library provides a basic UI scaffold and services for modern web and mobile apps",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"url": "https://github.com/lukfel/ng-scaffold"
|
|
13
13
|
},
|
|
14
14
|
"peerDependencies": {
|
|
15
|
-
"@angular/common": "^
|
|
16
|
-
"@angular/core": "^
|
|
17
|
-
"@angular/material": "^
|
|
18
|
-
"@angular/animations": "^
|
|
15
|
+
"@angular/common": "^21.0.0",
|
|
16
|
+
"@angular/core": "^21.0.0",
|
|
17
|
+
"@angular/material": "^21.0.0",
|
|
18
|
+
"@angular/animations": "^21.0.0"
|
|
19
19
|
},
|
|
20
20
|
"exports": {
|
|
21
21
|
"./styles": {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"default": "./package.json"
|
|
26
26
|
},
|
|
27
27
|
".": {
|
|
28
|
-
"types": "./
|
|
28
|
+
"types": "./types/lukfel-ng-scaffold.d.ts",
|
|
29
29
|
"default": "./fesm2022/lukfel-ng-scaffold.mjs"
|
|
30
30
|
}
|
|
31
31
|
},
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
},
|
|
36
36
|
"sideEffects": false,
|
|
37
37
|
"module": "fesm2022/lukfel-ng-scaffold.mjs",
|
|
38
|
-
"typings": "
|
|
38
|
+
"typings": "types/lukfel-ng-scaffold.d.ts",
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"tslib": "^2.3.0"
|
|
41
41
|
}
|
|
@@ -266,6 +266,7 @@ declare class ScaffoldComponent implements OnInit, OnDestroy {
|
|
|
266
266
|
floatingButtonClicked(id: string): void;
|
|
267
267
|
bottomBarCloseClicked(id: string): void;
|
|
268
268
|
bottomBarButtonClicked(id: string): void;
|
|
269
|
+
private convertRightMenuButtonsToMobile;
|
|
269
270
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScaffoldComponent, never>;
|
|
270
271
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScaffoldComponent, "lf-scaffold", never, {}, { "headerButtonClickEvent": "headerButtonClickEvent"; "headerInputSubmitEvent": "headerInputSubmitEvent"; "headerInputChangeEvent": "headerInputChangeEvent"; "navbarButtonClickEvent": "navbarButtonClickEvent"; "floatingButtonClickEvent": "floatingButtonClickEvent"; "bottomBarButtonClickEvent": "bottomBarButtonClickEvent"; }, never, ["[drawerContent]", "*"], false, never>;
|
|
271
272
|
}
|
|
@@ -519,7 +520,10 @@ declare class ListComponent implements OnInit, OnChanges {
|
|
|
519
520
|
|
|
520
521
|
declare class BreakpointService {
|
|
521
522
|
private breakpointObserver;
|
|
523
|
+
private retrigger$;
|
|
524
|
+
private readonly base$;
|
|
522
525
|
readonly breakpoint$: rxjs.Observable<_angular_cdk_layout.BreakpointState>;
|
|
526
|
+
retriggerBreakpoint(): void;
|
|
523
527
|
static ɵfac: i0.ɵɵFactoryDeclaration<BreakpointService, never>;
|
|
524
528
|
static ɵprov: i0.ɵɵInjectableDeclaration<BreakpointService>;
|
|
525
529
|
}
|