@dereekb/dbx-web 9.24.39 → 9.24.41
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 +3 -2
- package/fesm2015/dereekb-dbx-web.mjs +2 -1
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +2 -1
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -2955,6 +2955,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2955
2955
|
* Component that displays a navbar.
|
|
2956
2956
|
*/
|
|
2957
2957
|
class DbxNavbarComponent extends AbstractTransitionDirective {
|
|
2958
|
+
// TODO: potentially make the caret depending on the current button display.
|
|
2958
2959
|
constructor(dbxRouterTransitionService, cdRef, _dbxScreenMediaService, _dbxRouterService) {
|
|
2959
2960
|
super(dbxRouterTransitionService);
|
|
2960
2961
|
this.cdRef = cdRef;
|
|
@@ -2963,7 +2964,7 @@ class DbxNavbarComponent extends AbstractTransitionDirective {
|
|
|
2963
2964
|
/**
|
|
2964
2965
|
* Whether or not to show the dropwdown caret for a menu
|
|
2965
2966
|
*/
|
|
2966
|
-
this.showMenuCaret =
|
|
2967
|
+
this.showMenuCaret = false;
|
|
2967
2968
|
this.navAlign = 'center';
|
|
2968
2969
|
this._icon = new BehaviorSubject(undefined);
|
|
2969
2970
|
this._defaultIcon = new BehaviorSubject('menu');
|