@dereekb/dbx-web 9.18.4 → 9.18.5
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/calendar/package.json +2 -2
- package/esm2020/lib/router/layout/navbar/navbar.component.mjs +8 -4
- package/fesm2015/dereekb-dbx-web.mjs +7 -3
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +7 -3
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/layout/section/_section.scss +18 -15
- package/lib/router/layout/navbar/navbar.component.d.ts +3 -1
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
|
@@ -62,21 +62,6 @@ $header-left-reserved-space-small-screen: 120px;
|
|
|
62
62
|
|
|
63
63
|
// MARK: Page
|
|
64
64
|
.dbx-section-page {
|
|
65
|
-
// Scroll Config
|
|
66
|
-
&.dbx-section-page-scroll-header {
|
|
67
|
-
overflow: hidden;
|
|
68
|
-
|
|
69
|
-
.dbx-section-page-content {
|
|
70
|
-
padding-top: $header-bottom-margin;
|
|
71
|
-
height: 100%;
|
|
72
|
-
overflow: auto;
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
&.dbx-section-page-scroll-locked {
|
|
77
|
-
overflow: hidden;
|
|
78
|
-
}
|
|
79
|
-
|
|
80
65
|
// Header
|
|
81
66
|
> .dbx-section-header {
|
|
82
67
|
height: $content-navbar-height;
|
|
@@ -109,6 +94,24 @@ $header-left-reserved-space-small-screen: 120px;
|
|
|
109
94
|
}
|
|
110
95
|
}
|
|
111
96
|
|
|
97
|
+
// Scroll Config
|
|
98
|
+
.dbx-section-page-content {
|
|
99
|
+
@include theming.nested-content-height(1); // always take up the height
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
&.dbx-section-page-scroll-header {
|
|
103
|
+
overflow: hidden;
|
|
104
|
+
|
|
105
|
+
.dbx-section-page-content {
|
|
106
|
+
padding-top: $header-bottom-margin;
|
|
107
|
+
overflow: auto;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
&.dbx-section-page-scroll-locked {
|
|
112
|
+
overflow: hidden;
|
|
113
|
+
}
|
|
114
|
+
|
|
112
115
|
.dbx-section-page {
|
|
113
116
|
&.dbx-content-page {
|
|
114
117
|
@include theming.nested-content-height(1);
|
|
@@ -19,6 +19,7 @@ export declare class DbxNavbarComponent extends AbstractTransitionDirective impl
|
|
|
19
19
|
private cdRef;
|
|
20
20
|
private readonly _dbxScreenMediaService;
|
|
21
21
|
private readonly _dbxRouterService;
|
|
22
|
+
icon: string;
|
|
22
23
|
navAlign: HorizontalConnectionPos;
|
|
23
24
|
private _inputMode;
|
|
24
25
|
private _breakpoint;
|
|
@@ -26,12 +27,13 @@ export declare class DbxNavbarComponent extends AbstractTransitionDirective impl
|
|
|
26
27
|
readonly isBreakpointActive$: Observable<boolean>;
|
|
27
28
|
readonly mode$: Observable<"button" | "bar">;
|
|
28
29
|
readonly anchors$: Observable<NavAnchorLink[]>;
|
|
30
|
+
readonly hasNoAnchors$: Observable<boolean>;
|
|
29
31
|
constructor(dbxRouterTransitionService: DbxRouterTransitionService, cdRef: ChangeDetectorRef, _dbxScreenMediaService: DbxScreenMediaService, _dbxRouterService: DbxRouterService);
|
|
30
32
|
ngOnDestroy(): void;
|
|
31
33
|
set anchors(anchors: Maybe<ClickableAnchorLinkSegueRef[]>);
|
|
32
34
|
set mode(mode: Maybe<NavbarMode>);
|
|
33
35
|
set breakpoint(breakpoint: ScreenMediaWidthType);
|
|
34
36
|
static ɵfac: i0.ɵɵFactoryDeclaration<DbxNavbarComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DbxNavbarComponent, "dbx-navbar", never, { "navAlign": "navAlign"; "anchors": "anchors"; "mode": "mode"; "breakpoint": "breakpoint"; }, {}, never, never, false>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DbxNavbarComponent, "dbx-navbar", never, { "icon": "icon"; "navAlign": "navAlign"; "anchors": "anchors"; "mode": "mode"; "breakpoint": "breakpoint"; }, {}, never, never, false>;
|
|
36
38
|
}
|
|
37
39
|
export {};
|
package/mapbox/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web/mapbox",
|
|
3
|
-
"version": "9.18.
|
|
3
|
+
"version": "9.18.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.1.0",
|
|
6
6
|
"@angular/core": "^14.1.0",
|
|
7
|
-
"@dereekb/dbx-core": "9.18.
|
|
8
|
-
"@dereekb/dbx-web": "9.18.
|
|
7
|
+
"@dereekb/dbx-core": "9.18.5",
|
|
8
|
+
"@dereekb/dbx-web": "9.18.5",
|
|
9
9
|
"ngx-mapbox-gl": "^9.1.0",
|
|
10
10
|
"mapbox-gl": "^2.9.2",
|
|
11
11
|
"@mapbox/geo-viewport": "git+https://git@github.com/dereekb/geo-viewport#165513972f87dca23a20c177f4d173edc51b5e2f"
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dereekb/dbx-web",
|
|
3
|
-
"version": "9.18.
|
|
3
|
+
"version": "9.18.5",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "^14.0.0",
|
|
6
6
|
"@angular/core": "^14.0.0",
|
|
7
7
|
"linkify-string": "4.0.0-beta.5",
|
|
8
8
|
"linkifyjs": "^4.0.0-beta.5",
|
|
9
9
|
"@angular/material": "^14.2.0",
|
|
10
|
-
"@dereekb/rxjs": "9.18.
|
|
11
|
-
"@dereekb/dbx-core": "9.18.
|
|
10
|
+
"@dereekb/rxjs": "9.18.5",
|
|
11
|
+
"@dereekb/dbx-core": "9.18.5",
|
|
12
12
|
"@angular/flex-layout": "^14.0.0-beta.41",
|
|
13
13
|
"ng-overlay-container": "^14.0.0",
|
|
14
14
|
"@angular/cdk": "^14.2.0",
|